Post Grid - Version 2.0.47

Version Description

  • 2020-04-29 add - No post found custom input field added
    • 2020-04-29 fix - Media height issue fixed.
    • 2020-04-29 fix - masonry issue fixed.
Download this release

Release Info

Developer pickplugins
Plugin Icon 128x128 Post Grid
Version 2.0.47
Comparing to
See all releases

Code changes from version 2.0.46 to 2.0.47

assets/settings-tabs/settings-tabs.js CHANGED
@@ -1,6 +1,5 @@
1
  jQuery(document).ready(function($){
2
 
3
- //$(".dependency-field").formFieldDependency({});
4
  $( ".settings-tabs-loading").fadeOut();
5
  $( ".settings-tabs").fadeIn();
6
 
1
  jQuery(document).ready(function($){
2
 
 
3
  $( ".settings-tabs-loading").fadeOut();
4
  $( ".settings-tabs").fadeIn();
5
 
includes/class-shortcodes.php CHANGED
@@ -6,7 +6,7 @@ class class_post_grid_shortcodes{
6
 
7
  public function __construct(){
8
 
9
- add_shortcode( 'post_grid', array( $this, 'post_grid_display' ) );
10
  add_shortcode( 'post_grid_new', array( $this, 'post_grid_new_display' ) );
11
 
12
  }
6
 
7
  public function __construct(){
8
 
9
+ add_shortcode( 'post_grid', array( $this, 'post_grid_new_display' ) );
10
  add_shortcode( 'post_grid_new', array( $this, 'post_grid_new_display' ) );
11
 
12
  }
includes/functions/functions-post-grid-meta-box.php CHANGED
@@ -252,10 +252,7 @@ function post_grid_metabox_tabs_content_query_post($tab, $post_id){
252
  $categories_relation = !empty($post_grid_meta_options['categories_relation']) ? $post_grid_meta_options['categories_relation'] : 'OR';
253
  $taxonomies = !empty($post_grid_meta_options['taxonomies']) ? $post_grid_meta_options['taxonomies'] : array();
254
 
255
- $meta_query = !empty($post_grid_meta_options['meta_query']) ? $post_grid_meta_options['meta_query'] : array();
256
- $meta_query_relation = !empty($post_grid_meta_options['meta_query_relation']) ? $post_grid_meta_options['meta_query_relation'] : 'OR';
257
 
258
- $extra_query_parameter = !empty($post_grid_meta_options['extra_query_parameter']) ? $post_grid_meta_options['extra_query_parameter'] : '';
259
 
260
  $post_status = !empty($post_grid_meta_options['post_status']) ? $post_grid_meta_options['post_status'] : array();
261
  $query_order = !empty($post_grid_meta_options['query_order']) ? $post_grid_meta_options['query_order'] : '';
@@ -267,32 +264,12 @@ function post_grid_metabox_tabs_content_query_post($tab, $post_id){
267
  $exclude_post_id = isset($post_grid_meta_options['exclude_post_id']) ? $post_grid_meta_options['exclude_post_id'] : '';
268
 
269
  $keyword = !empty($post_grid_meta_options['keyword']) ? $post_grid_meta_options['keyword'] :'';
270
- $permission_query = !empty($post_grid_meta_options['permission_query']) ? $post_grid_meta_options['permission_query'] :'';
271
- $ignore_archive = !empty($post_grid_meta_options['ignore_archive']) ? $post_grid_meta_options['ignore_archive'] :'';
272
- $sticky_post_query_type = !empty($post_grid_meta_options['sticky_post_query']['type']) ? $post_grid_meta_options['sticky_post_query']['type'] :'none';
273
- $ignore_sticky_posts = !empty($post_grid_meta_options['sticky_post_query']['ignore_sticky_posts']) ? $post_grid_meta_options['sticky_post_query']['ignore_sticky_posts'] :0;
274
- $date_query_type = !empty($post_grid_meta_options['date_query']['type']) ? $post_grid_meta_options['date_query']['type'] : 'none';
275
 
276
- $extact_date_year = !empty($post_grid_meta_options['date_query']['extact_date']['year']) ? $post_grid_meta_options['date_query']['extact_date']['year'] : '';
277
- $extact_date_month = !empty($post_grid_meta_options['date_query']['extact_date']['month']) ? $post_grid_meta_options['date_query']['extact_date']['month'] : '';
278
- $extact_date_day = !empty($post_grid_meta_options['date_query']['extact_date']['day']) ? $post_grid_meta_options['date_query']['extact_date']['day'] : '';
279
- $between_two_date_after_year = !empty($post_grid_meta_options['date_query']['between_two_date']['after']['year']) ? $post_grid_meta_options['date_query']['between_two_date']['after']['year'] : '';
280
- $between_two_date_after_month = !empty($post_grid_meta_options['date_query']['between_two_date']['after']['month']) ? $post_grid_meta_options['date_query']['between_two_date']['after']['month'] : '';
281
- $between_two_date_after_day = !empty($post_grid_meta_options['date_query']['between_two_date']['after']['day']) ? $post_grid_meta_options['date_query']['between_two_date']['after']['day'] : '';
282
- $between_two_date_before_year = !empty($post_grid_meta_options['date_query']['between_two_date']['before']['year']) ? $post_grid_meta_options['date_query']['between_two_date']['before']['year'] : '';
283
- $between_two_date_before_month = !empty($post_grid_meta_options['date_query']['between_two_date']['before']['month']) ? $post_grid_meta_options['date_query']['between_two_date']['before']['month'] : '';
284
- $between_two_date_before_day = !empty($post_grid_meta_options['date_query']['between_two_date']['before']['day']) ? $post_grid_meta_options['date_query']['between_two_date']['before']['day'] : '';
285
- $between_two_date_inclusive = !empty($post_grid_meta_options['date_query']['between_two_date']['inclusive']) ? $post_grid_meta_options['date_query']['between_two_date']['inclusive'] : 'true';
286
 
287
 
288
- $author_query_type = !empty($post_grid_meta_options['author_query']['type']) ? $post_grid_meta_options['author_query']['type'] : 'none';
289
- $author__in = !empty($post_grid_meta_options['author_query']['author__in']) ? $post_grid_meta_options['author_query']['author__in'] : '';
290
- $author__not_in = !empty($post_grid_meta_options['author_query']['author__not_in']) ? $post_grid_meta_options['author_query']['author__not_in'] : '';
291
 
292
- $password_query_type = !empty($post_grid_meta_options['password_query']['type']) ? $post_grid_meta_options['password_query']['type'] : 'none';
293
- $password_query_has_password = !empty($post_grid_meta_options['password_query']['has_password']) ? $post_grid_meta_options['password_query']['has_password'] : 'null';
294
- $password_query_post_password = !empty($post_grid_meta_options['password_query']['post_password']) ? $post_grid_meta_options['password_query']['post_password'] : '';
295
 
 
296
 
297
 
298
 
@@ -331,22 +308,14 @@ function post_grid_metabox_tabs_content_query_post($tab, $post_id){
331
  ?>
332
  <div class="setting-field">
333
  <div class="field-lable">Post Taxonomies & terms</div>
334
-
335
  <div class="field-input">
336
-
337
-
338
- <?php
339
- // echo post_grid_get_categories($post_id);
340
- ?>
341
  <div class="expandable" id="taxonomies-terms">
342
-
343
  <?php
344
  if(!empty($post_taxonomies_arr)):
345
  foreach ($post_taxonomies_arr as $taxonomyIndex => $taxonomy){
346
 
347
  $taxonomy_term_arr = array();
348
  $the_taxonomy = get_taxonomy($taxonomy);
349
-
350
  $terms_relation = isset($taxonomies[$taxonomy]['terms_relation']) ? $taxonomies[$taxonomy]['terms_relation'] : 'IN';
351
  $terms = isset($taxonomies[$taxonomy]['terms']) ? $taxonomies[$taxonomy]['terms'] : array();
352
  $checked = isset($taxonomies[$taxonomy]['checked']) ? $taxonomies[$taxonomy]['checked'] : '';
@@ -355,23 +324,12 @@ function post_grid_metabox_tabs_content_query_post($tab, $post_id){
355
  'hide_empty' => false,
356
  ) );
357
 
358
-
359
- //var_dump($taxonomy_terms);
360
-
361
  if(!empty($taxonomy_terms))
362
  foreach ($taxonomy_terms as $taxonomy_term){
363
-
364
-
365
  $taxonomy_term_arr[$taxonomy_term->term_id] =$taxonomy_term->name.'('.$taxonomy_term->count.')';
366
  }
367
-
368
  $taxonomy_term_arr = !empty($taxonomy_term_arr) ? $taxonomy_term_arr : array();
369
-
370
  ?>
371
-
372
-
373
-
374
-
375
  <div class="item">
376
  <div class="header">
377
  <span class="expand ">
@@ -381,16 +339,8 @@ function post_grid_metabox_tabs_content_query_post($tab, $post_id){
381
  <label><input type="checkbox" <?php if(!empty($checked)) echo 'checked'; ?> name="post_grid_meta_options[taxonomies][<?php echo $taxonomy; ?>][checked]" value="<?php echo $taxonomy; ?>" /> <?php echo $the_taxonomy->labels->name; ?>(<?php echo $taxonomy; ?>)</label>
382
  </div>
383
  <div class="options">
384
- <pre><?php //echo var_export($taxonomy, true); ?></pre>
385
-
386
-
387
  <?php
388
 
389
-
390
-
391
-
392
-
393
-
394
  $args = array(
395
  'id' => 'terms',
396
  'css_id' => 'terms-'.$taxonomyIndex,
@@ -406,10 +356,6 @@ function post_grid_metabox_tabs_content_query_post($tab, $post_id){
406
 
407
  $settings_tabs_field->generate_field($args, $post_id);
408
 
409
-
410
-
411
-
412
-
413
  $args = array(
414
  'id' => 'terms_relation',
415
  'parent' => 'post_grid_meta_options[taxonomies]['.$taxonomy.']',
@@ -430,38 +376,17 @@ function post_grid_metabox_tabs_content_query_post($tab, $post_id){
430
  );
431
 
432
  $settings_tabs_field->generate_field($args, $post_id);
433
-
434
  ?>
435
-
436
  </div>
437
  </div>
438
  <?php
439
-
440
-
441
-
442
-
443
  }else:
444
  echo __('Please choose at least one post types. save/update post grid','post-grid');
445
-
446
  endif;
447
-
448
-
449
  ?>
450
-
451
-
452
-
453
-
454
-
455
  </div>
456
-
457
-
458
-
459
- <p class="description">Select post categories & terms.</p>
460
  </div>
461
-
462
-
463
-
464
-
465
  </div>
466
 
467
  <?php
@@ -545,9 +470,6 @@ function post_grid_metabox_tabs_content_query_post($tab, $post_id){
545
 
546
  $settings_tabs_field->generate_field($args, $post_id);
547
 
548
-
549
-
550
-
551
  $args = array(
552
  'id' => 'posts_per_page',
553
  'parent' => 'post_grid_meta_options',
@@ -604,18 +526,19 @@ function post_grid_metabox_tabs_content_query_post($tab, $post_id){
604
  $settings_tabs_field->generate_field($args, $post_id);
605
 
606
 
 
 
 
 
 
 
 
 
 
 
607
 
 
608
  ?>
609
-
610
-
611
-
612
-
613
-
614
-
615
-
616
-
617
-
618
-
619
  </div>
620
 
621
  <?php
@@ -650,6 +573,8 @@ function post_grid_metabox_tabs_content_layouts($tab, $post_id){
650
 
651
  <?php
652
 
 
 
653
 
654
 
655
  ob_start();
@@ -657,15 +582,13 @@ function post_grid_metabox_tabs_content_layouts($tab, $post_id){
657
  ?>
658
  <p><a target="_blank" class="button" href="<?php echo admin_url().'post-new.php?post_type=post_grid_layout'; ?>"><?php echo __('Create layout','post-grid'); ?></a> </p>
659
  <p><a target="_blank" class="button" href="<?php echo admin_url().'edit.php?post_type=post_grid_layout'; ?>"><?php echo __('Manage layouts','post-grid'); ?></a> </p>
660
-
661
  <?php
662
  if($import_layouts != 'done'):
663
 
664
- $layout_convert_url = get_permalink($post_id).'?post_grid_layout_convert=true';
665
- $layout_convert_url = wp_nonce_url($layout_convert_url, 'post_grid_layout_convert');
666
 
667
  ?>
668
- <p><a target="_blank" class="button" href="<?php echo $layout_convert_url; ?>"><?php echo __('Covert old layout to new layout','post-grid'); ?></a> </p>
669
  <?php
670
  endif;
671
 
252
  $categories_relation = !empty($post_grid_meta_options['categories_relation']) ? $post_grid_meta_options['categories_relation'] : 'OR';
253
  $taxonomies = !empty($post_grid_meta_options['taxonomies']) ? $post_grid_meta_options['taxonomies'] : array();
254
 
 
 
255
 
 
256
 
257
  $post_status = !empty($post_grid_meta_options['post_status']) ? $post_grid_meta_options['post_status'] : array();
258
  $query_order = !empty($post_grid_meta_options['query_order']) ? $post_grid_meta_options['query_order'] : '';
264
  $exclude_post_id = isset($post_grid_meta_options['exclude_post_id']) ? $post_grid_meta_options['exclude_post_id'] : '';
265
 
266
  $keyword = !empty($post_grid_meta_options['keyword']) ? $post_grid_meta_options['keyword'] :'';
 
 
 
 
 
267
 
 
 
 
 
 
 
 
 
 
 
268
 
269
 
 
 
 
270
 
 
 
 
271
 
272
+ $no_post_text = !empty($post_grid_meta_options['no_post_text']) ? $post_grid_meta_options['no_post_text'] : '';
273
 
274
 
275
 
308
  ?>
309
  <div class="setting-field">
310
  <div class="field-lable">Post Taxonomies & terms</div>
 
311
  <div class="field-input">
 
 
 
 
 
312
  <div class="expandable" id="taxonomies-terms">
 
313
  <?php
314
  if(!empty($post_taxonomies_arr)):
315
  foreach ($post_taxonomies_arr as $taxonomyIndex => $taxonomy){
316
 
317
  $taxonomy_term_arr = array();
318
  $the_taxonomy = get_taxonomy($taxonomy);
 
319
  $terms_relation = isset($taxonomies[$taxonomy]['terms_relation']) ? $taxonomies[$taxonomy]['terms_relation'] : 'IN';
320
  $terms = isset($taxonomies[$taxonomy]['terms']) ? $taxonomies[$taxonomy]['terms'] : array();
321
  $checked = isset($taxonomies[$taxonomy]['checked']) ? $taxonomies[$taxonomy]['checked'] : '';
324
  'hide_empty' => false,
325
  ) );
326
 
 
 
 
327
  if(!empty($taxonomy_terms))
328
  foreach ($taxonomy_terms as $taxonomy_term){
 
 
329
  $taxonomy_term_arr[$taxonomy_term->term_id] =$taxonomy_term->name.'('.$taxonomy_term->count.')';
330
  }
 
331
  $taxonomy_term_arr = !empty($taxonomy_term_arr) ? $taxonomy_term_arr : array();
 
332
  ?>
 
 
 
 
333
  <div class="item">
334
  <div class="header">
335
  <span class="expand ">
339
  <label><input type="checkbox" <?php if(!empty($checked)) echo 'checked'; ?> name="post_grid_meta_options[taxonomies][<?php echo $taxonomy; ?>][checked]" value="<?php echo $taxonomy; ?>" /> <?php echo $the_taxonomy->labels->name; ?>(<?php echo $taxonomy; ?>)</label>
340
  </div>
341
  <div class="options">
 
 
 
342
  <?php
343
 
 
 
 
 
 
344
  $args = array(
345
  'id' => 'terms',
346
  'css_id' => 'terms-'.$taxonomyIndex,
356
 
357
  $settings_tabs_field->generate_field($args, $post_id);
358
 
 
 
 
 
359
  $args = array(
360
  'id' => 'terms_relation',
361
  'parent' => 'post_grid_meta_options[taxonomies]['.$taxonomy.']',
376
  );
377
 
378
  $settings_tabs_field->generate_field($args, $post_id);
 
379
  ?>
 
380
  </div>
381
  </div>
382
  <?php
 
 
 
 
383
  }else:
384
  echo __('Please choose at least one post types. save/update post grid','post-grid');
 
385
  endif;
 
 
386
  ?>
 
 
 
 
 
387
  </div>
388
+ <p class="description"><?php echo __('Select post categories & terms.', 'post-grid'); ?></p>
 
 
 
389
  </div>
 
 
 
 
390
  </div>
391
 
392
  <?php
470
 
471
  $settings_tabs_field->generate_field($args, $post_id);
472
 
 
 
 
473
  $args = array(
474
  'id' => 'posts_per_page',
475
  'parent' => 'post_grid_meta_options',
526
  $settings_tabs_field->generate_field($args, $post_id);
527
 
528
 
529
+ $args = array(
530
+ 'id' => 'no_post_text',
531
+ 'parent' => 'post_grid_meta_options',
532
+ 'title' => __('No post found text','post-grid'),
533
+ 'details' => __('Custom text for no post found. default: No post found','post-grid'),
534
+ 'type' => 'text',
535
+ 'value' => $no_post_text,
536
+ 'default' => '',
537
+ 'placeholder' => 'No post found',
538
+ );
539
 
540
+ $settings_tabs_field->generate_field($args, $post_id);
541
  ?>
 
 
 
 
 
 
 
 
 
 
542
  </div>
543
 
544
  <?php
573
 
574
  <?php
575
 
576
+ $layout_convert_url = get_permalink($post_id).'?post_grid_layout_convert=true';
577
+ $layout_convert_url = wp_nonce_url($layout_convert_url, 'post_grid_layout_convert');
578
 
579
 
580
  ob_start();
582
  ?>
583
  <p><a target="_blank" class="button" href="<?php echo admin_url().'post-new.php?post_type=post_grid_layout'; ?>"><?php echo __('Create layout','post-grid'); ?></a> </p>
584
  <p><a target="_blank" class="button" href="<?php echo admin_url().'edit.php?post_type=post_grid_layout'; ?>"><?php echo __('Manage layouts','post-grid'); ?></a> </p>
585
+ <p><a target="_blank" class="button" href="<?php echo $layout_convert_url; ?>"><?php echo __('Covert old layout to new layout','post-grid'); ?></a> </p>
586
  <?php
587
  if($import_layouts != 'done'):
588
 
 
 
589
 
590
  ?>
591
+ <p><div class="button import-default-layouts"><?php echo __('Import default layouts','post-grid'); ?></div> </p>
592
  <?php
593
  endif;
594
 
includes/functions/post-grid-layout-elements.php CHANGED
@@ -758,26 +758,22 @@ function post_grid_layout_element_css_media($args){
758
  $element = isset($args['element']) ? $args['element'] : array();
759
  $layout_id = isset($args['layout_id']) ? $args['layout_id'] : '';
760
 
761
- $thumb_height = isset($element['thumb_height']) ? $element['thumb_height'] : '';
762
- $thumb_height_large = isset($thumb_height['large']) ? $thumb_height['large'] : '';
763
- $thumb_height_medium = isset($thumb_height['medium']) ? $thumb_height['medium'] : '';
764
- $thumb_height_small = isset($thumb_height['small']) ? $thumb_height['small'] : '';
765
-
766
- $height_large_type = isset($element['large_type']) ? $element['large_type'] : '';
767
- $height_medium_type = isset($element['medium_type']) ? $element['medium_type'] : '';
768
- $height_small_type = isset($element['small_type']) ? $element['small_type'] : '';
769
-
770
 
 
 
 
771
 
772
  $padding = isset($element['padding']) ? $element['padding'] : '';
773
-
774
  $margin = isset($element['margin']) ? $element['margin'] : '';
775
  $css = isset($element['css']) ? $element['css'] : '';
776
  $css_hover = isset($element['css_hover']) ? $element['css_hover'] : '';
777
 
778
  ?>
779
  <style type="text/css">
780
-
781
  .layout-<?php echo $layout_id; ?> .element_<?php echo $index; ?>{
782
  overflow: hidden;
783
  <?php if(!empty($margin)): ?>
@@ -795,35 +791,52 @@ function post_grid_layout_element_css_media($args){
795
  <?php echo $css_hover; ?>
796
  <?php endif; ?>
797
  }
798
-
799
-
800
-
801
  @media only screen and (min-width: 1024px ){
802
  .layout-<?php echo $layout_id; ?> .element_<?php echo $index; ?>{
803
- <?php if(!empty($thumb_height_large)): ?>
804
- max-height: <?php echo $thumb_height_large; ?>;
805
- <?php endif; ?>
 
 
 
 
 
 
 
 
 
806
  }
807
  }
808
-
809
  @media only screen and ( min-width: 768px ) and ( max-width: 1023px ) {
810
  .layout-<?php echo $layout_id; ?> .element_<?php echo $index; ?>{
811
- <?php if(!empty($thumb_height_medium)): ?>
812
- max-height: <?php echo $thumb_height_medium; ?>;
 
 
 
 
 
 
 
 
813
  <?php endif; ?>
814
  }
815
  }
816
-
817
  @media only screen and ( min-width: 0px ) and ( max-width: 767px ){
818
  .layout-<?php echo $layout_id; ?> .element_<?php echo $index; ?>{
819
- <?php if(!empty($thumb_height_small)): ?>
820
- max-height: <?php echo $thumb_height_small; ?>;
 
 
 
 
 
 
 
 
821
  <?php endif; ?>
822
  }
823
  }
824
-
825
-
826
-
827
  </style>
828
  <?php
829
  }
758
  $element = isset($args['element']) ? $args['element'] : array();
759
  $layout_id = isset($args['layout_id']) ? $args['layout_id'] : '';
760
 
761
+ $media_height = isset($element['media_height']) ? $element['media_height'] : '';
762
+ $thumb_height_large = isset($media_height['large']) ? $media_height['large'] : '';
763
+ $thumb_height_medium = isset($media_height['medium']) ? $media_height['medium'] : '';
764
+ $thumb_height_small = isset($media_height['small']) ? $media_height['small'] : '';
 
 
 
 
 
765
 
766
+ $height_large_type = isset($media_height['large_type']) ? $media_height['large_type'] : '';
767
+ $height_medium_type = isset($media_height['medium_type']) ? $media_height['medium_type'] : '';
768
+ $height_small_type = isset($media_height['small_type']) ? $media_height['small_type'] : '';
769
 
770
  $padding = isset($element['padding']) ? $element['padding'] : '';
 
771
  $margin = isset($element['margin']) ? $element['margin'] : '';
772
  $css = isset($element['css']) ? $element['css'] : '';
773
  $css_hover = isset($element['css_hover']) ? $element['css_hover'] : '';
774
 
775
  ?>
776
  <style type="text/css">
 
777
  .layout-<?php echo $layout_id; ?> .element_<?php echo $index; ?>{
778
  overflow: hidden;
779
  <?php if(!empty($margin)): ?>
791
  <?php echo $css_hover; ?>
792
  <?php endif; ?>
793
  }
 
 
 
794
  @media only screen and (min-width: 1024px ){
795
  .layout-<?php echo $layout_id; ?> .element_<?php echo $index; ?>{
796
+
797
+ <?php if($height_large_type =='auto_height'): ?>
798
+ height: auto;
799
+ <?php elseif ($height_large_type =='fixed_height'): ?>
800
+ <?php if(!empty($thumb_height_large)): ?>
801
+ height: <?php echo $thumb_height_large; ?>;
802
+ <?php endif; ?>
803
+ <?php elseif ($height_large_type =='max_height'): ?>
804
+ <?php if(!empty($thumb_height_large)): ?>
805
+ max-height: <?php echo $thumb_height_large; ?>;
806
+ <?php endif; ?>
807
+ <?php endif; ?>
808
  }
809
  }
 
810
  @media only screen and ( min-width: 768px ) and ( max-width: 1023px ) {
811
  .layout-<?php echo $layout_id; ?> .element_<?php echo $index; ?>{
812
+ <?php if($height_medium_type =='auto_height'): ?>
813
+ height: auto;
814
+ <?php elseif ($height_medium_type =='fixed_height'): ?>
815
+ <?php if(!empty($thumb_height_medium)): ?>
816
+ height: <?php echo $thumb_height_medium; ?>;
817
+ <?php endif; ?>
818
+ <?php elseif ($height_medium_type =='max_height'): ?>
819
+ <?php if(!empty($thumb_height_medium)): ?>
820
+ max-height: <?php echo $thumb_height_medium; ?>;
821
+ <?php endif; ?>
822
  <?php endif; ?>
823
  }
824
  }
 
825
  @media only screen and ( min-width: 0px ) and ( max-width: 767px ){
826
  .layout-<?php echo $layout_id; ?> .element_<?php echo $index; ?>{
827
+ <?php if($height_small_type =='auto_height'): ?>
828
+ height: auto;
829
+ <?php elseif ($height_small_type =='fixed_height'): ?>
830
+ <?php if(!empty($thumb_height_small)): ?>
831
+ height: <?php echo $thumb_height_small; ?>;
832
+ <?php endif; ?>
833
+ <?php elseif ($height_small_type =='max_height'): ?>
834
+ <?php if(!empty($thumb_height_small)): ?>
835
+ max-height: <?php echo $thumb_height_small; ?>;
836
+ <?php endif; ?>
837
  <?php endif; ?>
838
  }
839
  }
 
 
 
840
  </style>
841
  <?php
842
  }
post-grid.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Post Grid by PickPlugins
4
  Plugin URI: https://www.pickplugins.com/item/post-grid-create-awesome-grid-from-any-post-type-for-wordpress/
5
  Description: Awesome post grid for query post from any post type and display on grid.
6
- Version: 2.0.46
7
  Author: PickPlugins
8
  Author URI: https://www.pickplugins.com/
9
  License: GPLv2 or later
@@ -21,7 +21,7 @@ if( !class_exists( 'PostGrid' )){
21
  define('post_grid_plugin_dir', plugin_dir_path(__FILE__));
22
  define('post_grid_plugin_basename', plugin_basename(__FILE__));
23
  define('post_grid_plugin_name', 'Post Grid');
24
- define('post_grid_version', '2.0.46');
25
 
26
  include('includes/classes/class-post-types.php');
27
  include('includes/functions/functions-settings-hook.php');
3
  Plugin Name: Post Grid by PickPlugins
4
  Plugin URI: https://www.pickplugins.com/item/post-grid-create-awesome-grid-from-any-post-type-for-wordpress/
5
  Description: Awesome post grid for query post from any post type and display on grid.
6
+ Version: 2.0.47
7
  Author: PickPlugins
8
  Author URI: https://www.pickplugins.com/
9
  License: GPLv2 or later
21
  define('post_grid_plugin_dir', plugin_dir_path(__FILE__));
22
  define('post_grid_plugin_basename', plugin_basename(__FILE__));
23
  define('post_grid_plugin_name', 'Post Grid');
24
+ define('post_grid_version', '2.0.47');
25
 
26
  include('includes/classes/class-post-types.php');
27
  include('includes/functions/functions-settings-hook.php');
readme.txt CHANGED
@@ -4,7 +4,7 @@
4
  Tags: post grid, grid, custom post grid, post type grid, grid display, category filter, custom post, filter, filtering, grid, layout, list, masonry, post, post filter, post layout, taxonomy, taxonomy filter,
5
  Requires at least: 3.8
6
  Tested up to: 5.4
7
- Stable tag: 2.0.46
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -139,6 +139,12 @@ then paste this shortcode anywhere in your page to display grid<br />
139
 
140
  == Changelog ==
141
 
 
 
 
 
 
 
142
  = 2.0.46 =
143
  * 2020-04-21 update - Layout builder re-designed.
144
  * 2020-04-21 update - Remove unnecessary CSS and JS files.
4
  Tags: post grid, grid, custom post grid, post type grid, grid display, category filter, custom post, filter, filtering, grid, layout, list, masonry, post, post filter, post layout, taxonomy, taxonomy filter,
5
  Requires at least: 3.8
6
  Tested up to: 5.4
7
+ Stable tag: 2.0.47
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
139
 
140
  == Changelog ==
141
 
142
+ = 2.0.47 =
143
+ * 2020-04-29 add - No post found custom input field added
144
+ * 2020-04-29 fix - Media height issue fixed.
145
+ * 2020-04-29 fix - masonry issue fixed.
146
+
147
+
148
  = 2.0.46 =
149
  * 2020-04-21 update - Layout builder re-designed.
150
  * 2020-04-21 update - Remove unnecessary CSS and JS files.
sample/default-layouts.xml ADDED
@@ -0,0 +1,1911 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8" ?>
2
+ <!-- This is a WordPress eXtended RSS file generated by WordPress as an export of your site. -->
3
+ <!-- It contains information about your site's posts, pages, comments, categories, and other content. -->
4
+ <!-- You may use this file to transfer that content from one site to another. -->
5
+ <!-- This file is not intended to serve as a complete backup of your site. -->
6
+
7
+ <!-- To import this information into a WordPress site follow these steps: -->
8
+ <!-- 1. Log in to that site as an administrator. -->
9
+ <!-- 2. Go to Tools: Import in the WordPress admin panel. -->
10
+ <!-- 3. Install the "WordPress" importer from the list. -->
11
+ <!-- 4. Activate & Run Importer. -->
12
+ <!-- 5. Upload this file using the form provided on that page. -->
13
+ <!-- 6. You will first be asked to map the authors in this export file to users -->
14
+ <!-- on the site. For each author, you may choose to map to an -->
15
+ <!-- existing user on the site or to create a new user. -->
16
+ <!-- 7. WordPress will then import each of the posts, pages, comments, categories, etc. -->
17
+ <!-- contained in this file into your site. -->
18
+
19
+ <!-- generator="WordPress/5.4" created="2020-04-29 11:12" -->
20
+ <rss version="2.0"
21
+ xmlns:excerpt="http://wordpress.org/export/1.2/excerpt/"
22
+ xmlns:content="http://purl.org/rss/1.0/modules/content/"
23
+ xmlns:wfw="http://wellformedweb.org/CommentAPI/"
24
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
25
+ xmlns:wp="http://wordpress.org/export/1.2/"
26
+ >
27
+
28
+ <channel>
29
+ <title>WordPress</title>
30
+ <link>http://localhost/wp</link>
31
+ <description>Get latest reviews about WordPress</description>
32
+ <pubDate>Wed, 29 Apr 2020 11:12:27 +0000</pubDate>
33
+ <language>en-US</language>
34
+ <wp:wxr_version>1.2</wp:wxr_version>
35
+ <wp:base_site_url>http://localhost/wp</wp:base_site_url>
36
+ <wp:base_blog_url>http://localhost/wp</wp:base_blog_url>
37
+
38
+ <wp:author><wp:author_id>1</wp:author_id><wp:author_login><![CDATA[admin]]></wp:author_login><wp:author_email><![CDATA[public.nurhasan@gmail.com]]></wp:author_email><wp:author_display_name><![CDATA[Nur Hasan]]></wp:author_display_name><wp:author_first_name><![CDATA[Nur]]></wp:author_first_name><wp:author_last_name><![CDATA[Hasan]]></wp:author_last_name></wp:author>
39
+
40
+
41
+ <generator>https://wordpress.org/?v=5.4</generator>
42
+
43
+ <item>
44
+ <title>Layout - Flat</title>
45
+ <link>http://localhost/wp/post_grid_layout/layout-flat/</link>
46
+ <pubDate>Sat, 18 Apr 2020 05:27:40 +0000</pubDate>
47
+ <dc:creator><![CDATA[admin]]></dc:creator>
48
+ <guid isPermaLink="false">http://localhost/wp/?post_type=post_grid_layout&#038;p=51600</guid>
49
+ <description></description>
50
+ <content:encoded><![CDATA[]]></content:encoded>
51
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
52
+ <wp:post_id>51600</wp:post_id>
53
+ <wp:post_date><![CDATA[2020-04-18 05:27:40]]></wp:post_date>
54
+ <wp:post_date_gmt><![CDATA[2020-04-18 05:27:40]]></wp:post_date_gmt>
55
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
56
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
57
+ <wp:post_name><![CDATA[layout-flat]]></wp:post_name>
58
+ <wp:status><![CDATA[publish]]></wp:status>
59
+ <wp:post_parent>0</wp:post_parent>
60
+ <wp:menu_order>0</wp:menu_order>
61
+ <wp:post_type><![CDATA[post_grid_layout]]></wp:post_type>
62
+ <wp:post_password><![CDATA[]]></wp:post_password>
63
+ <wp:is_sticky>0</wp:is_sticky>
64
+ <wp:postmeta>
65
+ <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
66
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
67
+ </wp:postmeta>
68
+ <wp:postmeta>
69
+ <wp:meta_key><![CDATA[layout_options]]></wp:meta_key>
70
+ <wp:meta_value><![CDATA[a:2:{s:17:"preview_post_type";s:4:"post";s:18:"layout_preview_img";s:0:"";}]]></wp:meta_value>
71
+ </wp:postmeta>
72
+ <wp:postmeta>
73
+ <wp:meta_key><![CDATA[layout_elements_data]]></wp:meta_key>
74
+ <wp:meta_value><![CDATA[a:7:{s:13:"1587187627902";a:1:{s:13:"wrapper_start";a:5:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:11:"layer-media";s:6:"margin";s:0:"";s:3:"css";s:0:"";s:9:"css_hover";s:0:"";}}s:13:"1587190790308";a:1:{s:5:"media";a:6:{s:12:"media_source";a:3:{s:14:"featured_image";a:3:{s:6:"enable";s:2:"no";s:10:"image_size";s:5:"large";s:7:"link_to";s:9:"post_link";}s:11:"first_image";a:2:{s:6:"enable";s:2:"no";s:7:"link_to";s:9:"post_link";}s:11:"empty_thumb";a:3:{s:6:"enable";s:2:"no";s:7:"link_to";s:9:"post_link";s:17:"default_thumb_src";s:0:"";}}s:12:"media_height";a:6:{s:10:"large_type";s:11:"auto_height";s:5:"large";s:4:"80px";s:11:"medium_type";s:12:"fixed_height";s:6:"medium";s:4:"90px";s:10:"small_type";s:12:"fixed_height";s:5:"small";s:5:"100px";}s:6:"margin";s:0:"";s:7:"padding";s:0:"";s:3:"css";s:0:"";s:9:"css_hover";s:0:"";}}s:13:"1587187640582";a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}s:13:"1587187714568";a:1:{s:13:"wrapper_start";a:5:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:13:"layer-content";s:6:"margin";s:0:"";s:3:"css";s:0:"";s:9:"css_hover";s:0:"";}}s:13:"1587187895341";a:1:{s:5:"title";a:10:{s:7:"link_to";s:9:"post_link";s:11:"link_target";s:6:"_blank";s:10:"char_limit";s:2:"20";s:5:"color";s:0:"";s:9:"font_size";s:4:"18px";s:11:"font_family";s:0:"";s:6:"margin";s:5:"5px 0";s:10:"text_align";s:4:"left";s:3:"css";s:0:"";s:9:"css_hover";s:0:"";}}s:13:"1587187729822";a:1:{s:7:"excerpt";a:9:{s:10:"char_limit";s:2:"25";s:14:"read_more_text";s:9:"Read more";s:11:"link_target";s:6:"_blank";s:6:"margin";s:6:"10px 0";s:5:"color";s:0:"";s:10:"text_align";s:4:"left";s:9:"font_size";s:4:"14px";s:3:"css";s:0:"";s:9:"css_hover";s:0:"";}}s:13:"1587187731727";a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}}]]></wp:meta_value>
75
+ </wp:postmeta>
76
+ <wp:postmeta>
77
+ <wp:meta_key><![CDATA[custom_scripts]]></wp:meta_key>
78
+ <wp:meta_value><![CDATA[a:2:{s:10:"custom_css";s:140:".__ID__ a{text-decoration:none}
79
+ .__ID__ {
80
+ vertical-align: top;
81
+ }
82
+ .__ID__ .layer-media{}
83
+ .__ID__ .layer-content {
84
+ padding: 10px;
85
+ }";s:9:"custom_js";s:0:"";}]]></wp:meta_value>
86
+ </wp:postmeta>
87
+ </item>
88
+ <item>
89
+ <title>Layout - Flip-x</title>
90
+ <link>http://localhost/wp/post_grid_layout/layout-flip-x-2/</link>
91
+ <pubDate>Sat, 18 Apr 2020 14:03:17 +0000</pubDate>
92
+ <dc:creator><![CDATA[admin]]></dc:creator>
93
+ <guid isPermaLink="false">http://localhost/wp/?post_type=post_grid_layout&#038;p=51612</guid>
94
+ <description></description>
95
+ <content:encoded><![CDATA[]]></content:encoded>
96
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
97
+ <wp:post_id>51612</wp:post_id>
98
+ <wp:post_date><![CDATA[2020-04-18 14:03:17]]></wp:post_date>
99
+ <wp:post_date_gmt><![CDATA[2020-04-18 14:03:17]]></wp:post_date_gmt>
100
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
101
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
102
+ <wp:post_name><![CDATA[layout-flip-x-2]]></wp:post_name>
103
+ <wp:status><![CDATA[publish]]></wp:status>
104
+ <wp:post_parent>0</wp:post_parent>
105
+ <wp:menu_order>0</wp:menu_order>
106
+ <wp:post_type><![CDATA[post_grid_layout]]></wp:post_type>
107
+ <wp:post_password><![CDATA[]]></wp:post_password>
108
+ <wp:is_sticky>0</wp:is_sticky>
109
+ <wp:postmeta>
110
+ <wp:meta_key><![CDATA[layout_options]]></wp:meta_key>
111
+ <wp:meta_value><![CDATA[a:2:{s:17:"preview_post_type";s:4:"post";s:18:"layout_preview_img";s:0:"";}]]></wp:meta_value>
112
+ </wp:postmeta>
113
+ <wp:postmeta>
114
+ <wp:meta_key><![CDATA[layout_elements_data]]></wp:meta_key>
115
+ <wp:meta_value><![CDATA[a:8:{s:13:"1587187627902";a:1:{s:13:"wrapper_start";a:4:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:11:"layer-media";s:8:"css_idle";s:0:"";s:6:"margin";s:0:"";}}s:13:"1587190790308";a:1:{s:5:"media";a:6:{s:10:"thumb_size";s:5:"large";s:7:"link_to";s:9:"post_link";s:11:"link_target";s:6:"_blank";s:12:"thumb_height";a:3:{s:5:"large";s:0:"";s:6:"medium";s:0:"";s:5:"small";s:0:"";}s:17:"default_thumb_src";s:0:"";s:6:"margin";s:0:"";}}s:13:"1587187640582";a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}s:13:"1587187714568";a:1:{s:13:"wrapper_start";a:4:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:13:"layer-content";s:8:"css_idle";s:0:"";s:6:"margin";s:4:"10px";}}s:13:"1587187895341";a:1:{s:5:"title";a:8:{s:7:"link_to";s:9:"post_link";s:11:"link_target";s:6:"_blank";s:10:"char_limit";s:2:"20";s:5:"color";s:0:"";s:9:"font_size";s:4:"18px";s:11:"font_family";s:0:"";s:6:"margin";s:5:"5px 0";s:10:"text_align";s:4:"left";}}s:13:"1587187729822";a:1:{s:7:"excerpt";a:7:{s:10:"char_limit";s:2:"25";s:14:"read_more_text";s:9:"Read more";s:11:"link_target";s:6:"_blank";s:6:"margin";s:6:"10px 0";s:5:"color";s:0:"";s:10:"text_align";s:4:"left";s:9:"font_size";s:4:"14px";}}s:13:"1587191470955";a:1:{s:6:"author";a:6:{s:7:"link_to";s:9:"post_link";s:12:"wrapper_html";s:0:"";s:5:"color";s:0:"";s:9:"font_size";s:0:"";s:6:"margin";s:0:"";s:10:"text_align";s:4:"left";}}s:13:"1587187731727";a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}}]]></wp:meta_value>
116
+ </wp:postmeta>
117
+ <wp:postmeta>
118
+ <wp:meta_key><![CDATA[custom_scripts]]></wp:meta_key>
119
+ <wp:meta_value><![CDATA[a:2:{s:10:"custom_css";s:1670:".__ID__ a{text-decoration:none}
120
+ .__ID__ {
121
+ overflow: hidden;
122
+ padding: 0;
123
+ -webkit-perspective: 600px;
124
+ perspective: 600px;
125
+ position: relative;
126
+ vertical-align: top;
127
+ width: 100%;
128
+ }
129
+
130
+ .__ID__:hover .layer-media {
131
+ background: rgb(255, 255, 255) none repeat scroll 0 0;
132
+ -webkit-transform: rotateX(180deg);
133
+ transform: rotateX(180deg);
134
+ z-index: 900;
135
+ }
136
+
137
+
138
+ .__ID__ .layer-media {
139
+ -webkit-backface-visibility: hidden;
140
+ backface-visibility: hidden;
141
+ background: rgb(255, 255, 255) none repeat scroll 0 0;
142
+ float: none;
143
+ height: inherit;
144
+ left: 0;
145
+ text-align: center;
146
+ top: 0;
147
+ -webkit-transform: rotateX(0deg) rotateY(0deg);
148
+ transform: rotateX(0deg) rotateY(0deg);
149
+ -webkit-transform-style: preserve-3d;
150
+ transform-style: preserve-3d;
151
+ -webkit-transition: all 0.4s ease-in-out 0s;
152
+ transition: all 0.4s ease-in-out 0s;
153
+ width: inherit;
154
+ z-index: 900;
155
+ }
156
+
157
+ .__ID__:hover .layer-content {
158
+ background: rgb(255, 255, 255) none repeat scroll 0 0;
159
+ -webkit-transform: rotateX(0deg) rotateY(0deg);
160
+ transform: rotateX(0deg) rotateY(0deg);
161
+ z-index: 1000;
162
+
163
+ }
164
+
165
+ .__ID__ .layer-content {
166
+ -webkit-backface-visibility: hidden;
167
+ backface-visibility: hidden;
168
+ background: rgb(255, 255, 255) none repeat scroll 0 0;
169
+ float: none;
170
+ height: inherit;
171
+ left: 0;
172
+ padding: 0;
173
+ position: absolute;
174
+ top: 0;
175
+ -webkit-transform: rotateX(-179deg);
176
+ transform: rotateX(-179deg);
177
+ -webkit-transform-style: preserve-3d;
178
+ transform-style: preserve-3d;
179
+ -webkit-transition: all 0.4s ease-in-out 0s;
180
+ transition: all 0.4s ease-in-out 0s;
181
+ width: inherit;
182
+ z-index: 800;
183
+ padding:10px;
184
+ }
185
+ ";s:9:"custom_js";s:0:"";}]]></wp:meta_value>
186
+ </wp:postmeta>
187
+ <wp:postmeta>
188
+ <wp:meta_key><![CDATA[_dp_original]]></wp:meta_key>
189
+ <wp:meta_value><![CDATA[51600]]></wp:meta_value>
190
+ </wp:postmeta>
191
+ <wp:postmeta>
192
+ <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
193
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
194
+ </wp:postmeta>
195
+ </item>
196
+ <item>
197
+ <title>Layout - Thumb go Left</title>
198
+ <link>http://localhost/wp/post_grid_layout/layout-thumbgoleft/</link>
199
+ <pubDate>Sat, 18 Apr 2020 14:03:45 +0000</pubDate>
200
+ <dc:creator><![CDATA[admin]]></dc:creator>
201
+ <guid isPermaLink="false">http://localhost/wp/?post_type=post_grid_layout&#038;p=51613</guid>
202
+ <description></description>
203
+ <content:encoded><![CDATA[]]></content:encoded>
204
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
205
+ <wp:post_id>51613</wp:post_id>
206
+ <wp:post_date><![CDATA[2020-04-18 14:03:45]]></wp:post_date>
207
+ <wp:post_date_gmt><![CDATA[2020-04-18 14:03:45]]></wp:post_date_gmt>
208
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
209
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
210
+ <wp:post_name><![CDATA[layout-thumbgoleft]]></wp:post_name>
211
+ <wp:status><![CDATA[publish]]></wp:status>
212
+ <wp:post_parent>0</wp:post_parent>
213
+ <wp:menu_order>0</wp:menu_order>
214
+ <wp:post_type><![CDATA[post_grid_layout]]></wp:post_type>
215
+ <wp:post_password><![CDATA[]]></wp:post_password>
216
+ <wp:is_sticky>0</wp:is_sticky>
217
+ <wp:postmeta>
218
+ <wp:meta_key><![CDATA[layout_options]]></wp:meta_key>
219
+ <wp:meta_value><![CDATA[a:2:{s:17:"preview_post_type";s:4:"post";s:18:"layout_preview_img";s:0:"";}]]></wp:meta_value>
220
+ </wp:postmeta>
221
+ <wp:postmeta>
222
+ <wp:meta_key><![CDATA[layout_elements_data]]></wp:meta_key>
223
+ <wp:meta_value><![CDATA[a:8:{s:13:"1587187627902";a:1:{s:13:"wrapper_start";a:4:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:11:"layer-media";s:8:"css_idle";s:0:"";s:6:"margin";s:0:"";}}s:13:"1587190790308";a:1:{s:5:"media";a:4:{s:12:"media_source";a:3:{s:14:"featured_image";a:3:{s:6:"enable";s:2:"no";s:10:"image_size";s:5:"large";s:7:"link_to";s:9:"post_link";}s:11:"first_image";a:2:{s:6:"enable";s:2:"no";s:7:"link_to";s:9:"post_link";}s:11:"empty_thumb";a:3:{s:6:"enable";s:2:"no";s:7:"link_to";s:9:"post_link";s:17:"default_thumb_src";s:0:"";}}s:12:"media_height";a:6:{s:10:"large_type";s:11:"auto_height";s:5:"large";s:0:"";s:11:"medium_type";s:11:"auto_height";s:6:"medium";s:0:"";s:10:"small_type";s:11:"auto_height";s:5:"small";s:0:"";}s:6:"margin";s:0:"";s:7:"padding";s:0:"";}}s:13:"1587187640582";a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}s:13:"1587187714568";a:1:{s:13:"wrapper_start";a:4:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:13:"layer-content";s:8:"css_idle";s:0:"";s:6:"margin";s:4:"10px";}}s:13:"1587187895341";a:1:{s:5:"title";a:10:{s:7:"link_to";s:9:"post_link";s:11:"link_target";s:6:"_blank";s:10:"char_limit";s:2:"20";s:5:"color";s:0:"";s:9:"font_size";s:4:"18px";s:11:"font_family";s:0:"";s:6:"margin";s:5:"5px 0";s:10:"text_align";s:4:"left";s:3:"css";s:0:"";s:9:"css_hover";s:0:"";}}s:13:"1587187729822";a:1:{s:7:"excerpt";a:7:{s:10:"char_limit";s:2:"20";s:14:"read_more_text";s:9:"Read more";s:11:"link_target";s:6:"_blank";s:6:"margin";s:6:"10px 0";s:5:"color";s:0:"";s:10:"text_align";s:4:"left";s:9:"font_size";s:4:"14px";}}s:13:"1587558049970";a:1:{s:9:"post_date";a:7:{s:11:"date_format";s:0:"";s:7:"link_to";s:4:"none";s:5:"color";s:0:"";s:9:"font_size";s:0:"";s:11:"font_family";s:0:"";s:6:"margin";s:0:"";s:10:"text_align";s:4:"left";}}s:13:"1587187731727";a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}}]]></wp:meta_value>
224
+ </wp:postmeta>
225
+ <wp:postmeta>
226
+ <wp:meta_key><![CDATA[custom_scripts]]></wp:meta_key>
227
+ <wp:meta_value><![CDATA[a:2:{s:10:"custom_css";s:716:".__ID__ a{text-decoration:none}
228
+ .__ID__ {
229
+ overflow: hidden;
230
+ position: relative;
231
+ vertical-align: top;
232
+ }
233
+ .__ID__:hover .layer-media {
234
+ opacity: 0;
235
+ filter: alpha(opacity=0);
236
+ -webkit-transform: scale(0.5) translateX(-100%);
237
+ -ms-transform: scale(0.5) translateX(-100%);
238
+ transform: scale(0.5) translateX(-100%);
239
+ }
240
+ .__ID__ .layer-media {
241
+ -webkit-transition: all 1s ease 0s;
242
+ transition: all 1s ease 0s;
243
+ width: 100%;
244
+ }
245
+ .__ID__:hover .layer-content{
246
+ opacity: 1;
247
+ filter: alpha(opacity=100);
248
+ }
249
+ .__ID__ .layer-content {
250
+ left: 0;
251
+ opacity: 0;
252
+ filter: alpha(opacity=0);
253
+ position: absolute;
254
+ top: 0;
255
+ -webkit-transition: all 1s ease 0s;
256
+ transition: all 1s ease 0s;
257
+ }";s:9:"custom_js";s:0:"";}]]></wp:meta_value>
258
+ </wp:postmeta>
259
+ <wp:postmeta>
260
+ <wp:meta_key><![CDATA[_dp_original]]></wp:meta_key>
261
+ <wp:meta_value><![CDATA[51600]]></wp:meta_value>
262
+ </wp:postmeta>
263
+ <wp:postmeta>
264
+ <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
265
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
266
+ </wp:postmeta>
267
+ </item>
268
+ <item>
269
+ <title>Layout - Thumb-rounded</title>
270
+ <link>http://localhost/wp/post_grid_layout/layout-thumbrounded-2/</link>
271
+ <pubDate>Sat, 18 Apr 2020 14:04:05 +0000</pubDate>
272
+ <dc:creator><![CDATA[admin]]></dc:creator>
273
+ <guid isPermaLink="false">http://localhost/wp/?post_type=post_grid_layout&#038;p=51614</guid>
274
+ <description></description>
275
+ <content:encoded><![CDATA[]]></content:encoded>
276
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
277
+ <wp:post_id>51614</wp:post_id>
278
+ <wp:post_date><![CDATA[2020-04-18 14:04:05]]></wp:post_date>
279
+ <wp:post_date_gmt><![CDATA[2020-04-18 14:04:05]]></wp:post_date_gmt>
280
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
281
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
282
+ <wp:post_name><![CDATA[layout-thumbrounded-2]]></wp:post_name>
283
+ <wp:status><![CDATA[publish]]></wp:status>
284
+ <wp:post_parent>0</wp:post_parent>
285
+ <wp:menu_order>0</wp:menu_order>
286
+ <wp:post_type><![CDATA[post_grid_layout]]></wp:post_type>
287
+ <wp:post_password><![CDATA[]]></wp:post_password>
288
+ <wp:is_sticky>0</wp:is_sticky>
289
+ <wp:postmeta>
290
+ <wp:meta_key><![CDATA[layout_options]]></wp:meta_key>
291
+ <wp:meta_value><![CDATA[a:2:{s:17:"preview_post_type";s:4:"post";s:18:"layout_preview_img";s:0:"";}]]></wp:meta_value>
292
+ </wp:postmeta>
293
+ <wp:postmeta>
294
+ <wp:meta_key><![CDATA[layout_elements_data]]></wp:meta_key>
295
+ <wp:meta_value><![CDATA[a:8:{s:13:"1587187627902";a:1:{s:13:"wrapper_start";a:4:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:11:"layer-media";s:8:"css_idle";s:0:"";s:6:"margin";s:0:"";}}s:13:"1587190790308";a:1:{s:5:"media";a:6:{s:10:"thumb_size";s:5:"large";s:7:"link_to";s:9:"post_link";s:11:"link_target";s:6:"_blank";s:12:"thumb_height";a:3:{s:5:"large";s:0:"";s:6:"medium";s:0:"";s:5:"small";s:0:"";}s:17:"default_thumb_src";s:0:"";s:6:"margin";s:0:"";}}s:13:"1587187640582";a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}s:13:"1587187714568";a:1:{s:13:"wrapper_start";a:4:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:13:"layer-content";s:8:"css_idle";s:0:"";s:6:"margin";s:4:"10px";}}s:13:"1587187895341";a:1:{s:5:"title";a:8:{s:7:"link_to";s:9:"post_link";s:11:"link_target";s:6:"_blank";s:10:"char_limit";s:2:"20";s:5:"color";s:0:"";s:9:"font_size";s:4:"18px";s:11:"font_family";s:0:"";s:6:"margin";s:5:"5px 0";s:10:"text_align";s:4:"left";}}s:13:"1587187729822";a:1:{s:7:"excerpt";a:7:{s:10:"char_limit";s:2:"25";s:14:"read_more_text";s:9:"Read more";s:11:"link_target";s:6:"_blank";s:6:"margin";s:6:"10px 0";s:5:"color";s:0:"";s:10:"text_align";s:4:"left";s:9:"font_size";s:4:"14px";}}s:13:"1587191470955";a:1:{s:6:"author";a:6:{s:7:"link_to";s:9:"post_link";s:12:"wrapper_html";s:0:"";s:5:"color";s:0:"";s:9:"font_size";s:0:"";s:6:"margin";s:0:"";s:10:"text_align";s:4:"left";}}s:13:"1587187731727";a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}}]]></wp:meta_value>
296
+ </wp:postmeta>
297
+ <wp:postmeta>
298
+ <wp:meta_key><![CDATA[custom_scripts]]></wp:meta_key>
299
+ <wp:meta_value><![CDATA[a:2:{s:10:"custom_css";s:198:".__ID__ a{text-decoration:none}
300
+ .__ID__ .layer-media {
301
+ background: rgb(255, 255, 255) none repeat scroll 0 0;
302
+ border-radius: 50%;
303
+ overflow: hidden;
304
+ }
305
+
306
+ .__ID__ .layer-media .thumb {
307
+
308
+ }";s:9:"custom_js";s:0:"";}]]></wp:meta_value>
309
+ </wp:postmeta>
310
+ <wp:postmeta>
311
+ <wp:meta_key><![CDATA[_dp_original]]></wp:meta_key>
312
+ <wp:meta_value><![CDATA[51600]]></wp:meta_value>
313
+ </wp:postmeta>
314
+ <wp:postmeta>
315
+ <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
316
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
317
+ </wp:postmeta>
318
+ </item>
319
+ <item>
320
+ <title>Layout - Contentbottom</title>
321
+ <link>http://localhost/wp/post_grid_layout/layout-flat-2/</link>
322
+ <pubDate>Sat, 18 Apr 2020 14:04:45 +0000</pubDate>
323
+ <dc:creator><![CDATA[admin]]></dc:creator>
324
+ <guid isPermaLink="false">http://localhost/wp/?post_type=post_grid_layout&#038;p=51615</guid>
325
+ <description></description>
326
+ <content:encoded><![CDATA[]]></content:encoded>
327
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
328
+ <wp:post_id>51615</wp:post_id>
329
+ <wp:post_date><![CDATA[2020-04-18 14:04:45]]></wp:post_date>
330
+ <wp:post_date_gmt><![CDATA[2020-04-18 14:04:45]]></wp:post_date_gmt>
331
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
332
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
333
+ <wp:post_name><![CDATA[layout-flat-2]]></wp:post_name>
334
+ <wp:status><![CDATA[publish]]></wp:status>
335
+ <wp:post_parent>0</wp:post_parent>
336
+ <wp:menu_order>0</wp:menu_order>
337
+ <wp:post_type><![CDATA[post_grid_layout]]></wp:post_type>
338
+ <wp:post_password><![CDATA[]]></wp:post_password>
339
+ <wp:is_sticky>0</wp:is_sticky>
340
+ <wp:postmeta>
341
+ <wp:meta_key><![CDATA[layout_options]]></wp:meta_key>
342
+ <wp:meta_value><![CDATA[a:2:{s:17:"preview_post_type";s:4:"post";s:18:"layout_preview_img";s:0:"";}]]></wp:meta_value>
343
+ </wp:postmeta>
344
+ <wp:postmeta>
345
+ <wp:meta_key><![CDATA[layout_elements_data]]></wp:meta_key>
346
+ <wp:meta_value><![CDATA[a:8:{s:13:"1587187627902";a:1:{s:13:"wrapper_start";a:4:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:11:"layer-media";s:8:"css_idle";s:0:"";s:6:"margin";s:0:"";}}s:13:"1587190790308";a:1:{s:5:"media";a:6:{s:10:"thumb_size";s:5:"large";s:7:"link_to";s:9:"post_link";s:11:"link_target";s:6:"_blank";s:12:"thumb_height";a:3:{s:5:"large";s:0:"";s:6:"medium";s:0:"";s:5:"small";s:0:"";}s:17:"default_thumb_src";s:0:"";s:6:"margin";s:0:"";}}s:13:"1587187640582";a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}s:13:"1587187714568";a:1:{s:13:"wrapper_start";a:4:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:13:"layer-content";s:8:"css_idle";s:0:"";s:6:"margin";s:0:"";}}s:13:"1587187895341";a:1:{s:5:"title";a:8:{s:7:"link_to";s:9:"post_link";s:11:"link_target";s:6:"_blank";s:10:"char_limit";s:2:"20";s:5:"color";s:7:"#ffffff";s:9:"font_size";s:4:"18px";s:11:"font_family";s:0:"";s:6:"margin";s:5:"5px 0";s:10:"text_align";s:4:"left";}}s:13:"1587187729822";a:1:{s:7:"excerpt";a:7:{s:10:"char_limit";s:2:"20";s:14:"read_more_text";s:9:"Read more";s:11:"link_target";s:6:"_blank";s:6:"margin";s:6:"10px 0";s:5:"color";s:7:"#ffffff";s:10:"text_align";s:4:"left";s:9:"font_size";s:4:"14px";}}s:13:"1587191470955";a:1:{s:6:"author";a:6:{s:7:"link_to";s:9:"post_link";s:12:"wrapper_html";s:0:"";s:5:"color";s:7:"#ffffff";s:9:"font_size";s:0:"";s:6:"margin";s:0:"";s:10:"text_align";s:4:"left";}}s:13:"1587187731727";a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}}]]></wp:meta_value>
347
+ </wp:postmeta>
348
+ <wp:postmeta>
349
+ <wp:meta_key><![CDATA[custom_scripts]]></wp:meta_key>
350
+ <wp:meta_value><![CDATA[a:2:{s:10:"custom_css";s:613:".__ID__ a{text-decoration:none}
351
+ .__ID__ {
352
+ overflow: hidden;
353
+ position: relative;
354
+ vertical-align: top;
355
+ }
356
+
357
+ .__ID__:hover .layer-media {
358
+
359
+ z-index:9;
360
+ }
361
+
362
+ .__ID__ .layer-media {
363
+ -webkit-transition: all 0.4s ease 0s;
364
+ transition: all 0.4s ease 0s;
365
+ left: 0;
366
+ top: 0;
367
+ width: 100%;
368
+ }
369
+ .__ID__:hover .layer-content{
370
+
371
+ }
372
+ .__ID__ .layer-content {
373
+ background: rgba(0, 0, 0, 0.3) none repeat scroll 0 0;
374
+ bottom: 0;
375
+ color: rgb(255, 255, 255);
376
+ left: 0;
377
+ position: absolute;
378
+ -webkit-transition: all 1s ease 0s;
379
+ transition: all 1s ease 0s;
380
+ width: 100%;
381
+ padding: 10px;
382
+ }
383
+ ";s:9:"custom_js";s:0:"";}]]></wp:meta_value>
384
+ </wp:postmeta>
385
+ <wp:postmeta>
386
+ <wp:meta_key><![CDATA[_dp_original]]></wp:meta_key>
387
+ <wp:meta_value><![CDATA[51600]]></wp:meta_value>
388
+ </wp:postmeta>
389
+ <wp:postmeta>
390
+ <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
391
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
392
+ </wp:postmeta>
393
+ </item>
394
+ <item>
395
+ <title>Layout - Thumb Spin right</title>
396
+ <link>http://localhost/wp/post_grid_layout/layout-flat-3/</link>
397
+ <pubDate>Sat, 18 Apr 2020 14:05:16 +0000</pubDate>
398
+ <dc:creator><![CDATA[admin]]></dc:creator>
399
+ <guid isPermaLink="false">http://localhost/wp/?post_type=post_grid_layout&#038;p=51616</guid>
400
+ <description></description>
401
+ <content:encoded><![CDATA[]]></content:encoded>
402
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
403
+ <wp:post_id>51616</wp:post_id>
404
+ <wp:post_date><![CDATA[2020-04-18 14:05:16]]></wp:post_date>
405
+ <wp:post_date_gmt><![CDATA[2020-04-18 14:05:16]]></wp:post_date_gmt>
406
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
407
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
408
+ <wp:post_name><![CDATA[layout-flat-3]]></wp:post_name>
409
+ <wp:status><![CDATA[publish]]></wp:status>
410
+ <wp:post_parent>0</wp:post_parent>
411
+ <wp:menu_order>0</wp:menu_order>
412
+ <wp:post_type><![CDATA[post_grid_layout]]></wp:post_type>
413
+ <wp:post_password><![CDATA[]]></wp:post_password>
414
+ <wp:is_sticky>0</wp:is_sticky>
415
+ <wp:postmeta>
416
+ <wp:meta_key><![CDATA[layout_options]]></wp:meta_key>
417
+ <wp:meta_value><![CDATA[a:2:{s:17:"preview_post_type";s:4:"post";s:18:"layout_preview_img";s:0:"";}]]></wp:meta_value>
418
+ </wp:postmeta>
419
+ <wp:postmeta>
420
+ <wp:meta_key><![CDATA[layout_elements_data]]></wp:meta_key>
421
+ <wp:meta_value><![CDATA[a:8:{s:13:"1587187627902";a:1:{s:13:"wrapper_start";a:5:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:11:"layer-media";s:6:"margin";s:0:"";s:3:"css";s:0:"";s:9:"css_hover";s:0:"";}}s:13:"1587190790308";a:1:{s:5:"media";a:6:{s:12:"media_source";a:3:{s:11:"first_image";a:2:{s:6:"enable";s:3:"yes";s:7:"link_to";s:9:"post_link";}s:14:"featured_image";a:3:{s:6:"enable";s:2:"no";s:10:"image_size";s:5:"large";s:7:"link_to";s:9:"post_link";}s:11:"empty_thumb";a:3:{s:6:"enable";s:2:"no";s:7:"link_to";s:9:"post_link";s:17:"default_thumb_src";s:68:"http://localhost/wp/wp-content/uploads/2020/02/long-sleeve-tee-2.jpg";}}s:12:"media_height";a:6:{s:10:"large_type";s:11:"auto_height";s:5:"large";s:5:"120px";s:11:"medium_type";s:12:"fixed_height";s:6:"medium";s:5:"130px";s:10:"small_type";s:10:"max_height";s:5:"small";s:5:"140px";}s:6:"margin";s:0:"";s:7:"padding";s:0:"";s:3:"css";s:0:"";s:9:"css_hover";s:0:"";}}s:13:"1587187640582";a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}s:13:"1587187714568";a:1:{s:13:"wrapper_start";a:5:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:13:"layer-content";s:6:"margin";s:4:"10px";s:3:"css";s:0:"";s:9:"css_hover";s:0:"";}}s:13:"1587187895341";a:1:{s:5:"title";a:10:{s:7:"link_to";s:9:"post_link";s:11:"link_target";s:6:"_blank";s:10:"char_limit";s:2:"20";s:5:"color";s:0:"";s:9:"font_size";s:4:"18px";s:11:"font_family";s:0:"";s:6:"margin";s:5:"5px 0";s:10:"text_align";s:4:"left";s:3:"css";s:0:"";s:9:"css_hover";s:0:"";}}s:13:"1587187729822";a:1:{s:7:"excerpt";a:9:{s:10:"char_limit";s:2:"25";s:14:"read_more_text";s:9:"Read more";s:11:"link_target";s:6:"_blank";s:6:"margin";s:6:"10px 0";s:5:"color";s:0:"";s:10:"text_align";s:4:"left";s:9:"font_size";s:4:"14px";s:3:"css";s:0:"";s:9:"css_hover";s:0:"";}}s:13:"1587191470955";a:1:{s:6:"author";a:8:{s:7:"link_to";s:9:"post_link";s:12:"wrapper_html";s:0:"";s:5:"color";s:0:"";s:9:"font_size";s:0:"";s:6:"margin";s:0:"";s:10:"text_align";s:4:"left";s:3:"css";s:0:"";s:9:"css_hover";s:0:"";}}s:13:"1587187731727";a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}}]]></wp:meta_value>
422
+ </wp:postmeta>
423
+ <wp:postmeta>
424
+ <wp:meta_key><![CDATA[custom_scripts]]></wp:meta_key>
425
+ <wp:meta_value><![CDATA[a:2:{s:10:"custom_css";s:759:".__ID__ a{text-decoration:none}
426
+ .__ID__ {
427
+ overflow: hidden;
428
+ position: relative;
429
+ vertical-align: top;
430
+ }
431
+
432
+ .__ID__:hover .layer-media {
433
+ -webkit-transform: rotate(30deg);
434
+ -ms-transform: rotate(30deg);
435
+ transform: rotate(30deg);
436
+ opacity: 0;
437
+ filter: alpha(opacity=0);
438
+ }
439
+
440
+ .__ID__ .layer-media {
441
+ -webkit-transition: all 1s ease 0s;
442
+ transition: all 1s ease 0s;
443
+ left: 0;
444
+ top: 0;
445
+ width: 100%;
446
+ }
447
+ .__ID__:hover .layer-content{
448
+ opacity: 1;
449
+ filter: alpha(opacity=100);
450
+ }
451
+ .__ID__ .layer-content {
452
+ left: 0;
453
+ opacity: 0;
454
+ filter: alpha(opacity=0);
455
+ position: absolute;
456
+ top: 0;
457
+ width: 100%;
458
+ -webkit-transition: all 1s ease 0s;
459
+ transition: all 1s ease 0s;
460
+ }
461
+ .__ID__ .layer-hover {
462
+ display: none;
463
+ }";s:9:"custom_js";s:0:"";}]]></wp:meta_value>
464
+ </wp:postmeta>
465
+ <wp:postmeta>
466
+ <wp:meta_key><![CDATA[_dp_original]]></wp:meta_key>
467
+ <wp:meta_value><![CDATA[51600]]></wp:meta_value>
468
+ </wp:postmeta>
469
+ <wp:postmeta>
470
+ <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
471
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
472
+ </wp:postmeta>
473
+ </item>
474
+ <item>
475
+ <title>My Post Grid - flat - flat-right</title>
476
+ <link>http://localhost/wp/post_grid_layout/my-post-grid-flat-flat-right__trashed/</link>
477
+ <pubDate>Tue, 21 Apr 2020 07:05:38 +0000</pubDate>
478
+ <dc:creator><![CDATA[admin]]></dc:creator>
479
+ <guid isPermaLink="false">http://localhost/wp/post_grid_layout/my-post-grid-flat-flat-right/</guid>
480
+ <description></description>
481
+ <content:encoded><![CDATA[]]></content:encoded>
482
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
483
+ <wp:post_id>51664</wp:post_id>
484
+ <wp:post_date><![CDATA[2020-04-21 07:05:38]]></wp:post_date>
485
+ <wp:post_date_gmt><![CDATA[2020-04-21 07:05:38]]></wp:post_date_gmt>
486
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
487
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
488
+ <wp:post_name><![CDATA[my-post-grid-flat-flat-right__trashed]]></wp:post_name>
489
+ <wp:status><![CDATA[trash]]></wp:status>
490
+ <wp:post_parent>0</wp:post_parent>
491
+ <wp:menu_order>0</wp:menu_order>
492
+ <wp:post_type><![CDATA[post_grid_layout]]></wp:post_type>
493
+ <wp:post_password><![CDATA[]]></wp:post_password>
494
+ <wp:is_sticky>0</wp:is_sticky>
495
+ <wp:postmeta>
496
+ <wp:meta_key><![CDATA[layout_elements_data]]></wp:meta_key>
497
+ <wp:meta_value><![CDATA[a:8:{i:0;a:1:{s:13:"wrapper_start";a:3:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:11:"layer-media";s:8:"css_idle";s:0:"";}}i:1;a:1:{s:5:"media";a:4:{s:12:"media_height";a:6:{s:10:"large_type";s:11:"auto_height";s:5:"large";s:5:"250px";s:11:"medium_type";s:11:"auto_height";s:6:"medium";s:5:"250px";s:10:"small_type";s:11:"auto_height";s:5:"small";s:5:"250px";}s:12:"media_source";a:1:{s:14:"featured_image";a:2:{s:6:"enable";s:3:"yes";s:7:"link_to";s:4:"full";}}s:6:"margin";s:0:"";s:7:"padding";s:0:"";}}i:2;a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}i:3;a:1:{s:13:"wrapper_start";a:2:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:13:"layer-content";}}i:4;a:1:{s:5:"title";a:4:{s:12:"custom_class";s:0:"";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:"";s:10:"char_limit";s:2:"20";}}i:5;a:1:{s:7:"excerpt";a:4:{s:12:"custom_class";s:0:"";s:3:"css";s:67:"display: block;font-size: 12px;padding: 5px 10px;text-align: right;";s:9:"css_hover";s:0:"";s:10:"char_limit";s:2:"20";}}i:6;a:1:{s:9:"read_more";a:5:{s:12:"custom_class";s:0:"";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:14:"read_more_text";s:0:"";s:11:"link_target";s:0:"";}}i:7;a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}}]]></wp:meta_value>
498
+ </wp:postmeta>
499
+ <wp:postmeta>
500
+ <wp:meta_key><![CDATA[custom_scripts]]></wp:meta_key>
501
+ <wp:meta_value><![CDATA[a:2:{s:10:"custom_css";s:122:".__ID__ a{text-decoration:none}
502
+ .__ID__ {
503
+ vertical-align: top;
504
+ }
505
+ .__ID__ .layer-media{}
506
+ .__ID__ .layer-content {
507
+ }";s:9:"custom_js";s:0:"";}]]></wp:meta_value>
508
+ </wp:postmeta>
509
+ <wp:postmeta>
510
+ <wp:meta_key><![CDATA[layout_options]]></wp:meta_key>
511
+ <wp:meta_value><![CDATA[a:1:{s:18:"layout_preview_img";s:0:"";}]]></wp:meta_value>
512
+ </wp:postmeta>
513
+ <wp:postmeta>
514
+ <wp:meta_key><![CDATA[_wp_trash_meta_status]]></wp:meta_key>
515
+ <wp:meta_value><![CDATA[publish]]></wp:meta_value>
516
+ </wp:postmeta>
517
+ <wp:postmeta>
518
+ <wp:meta_key><![CDATA[_wp_trash_meta_time]]></wp:meta_key>
519
+ <wp:meta_value><![CDATA[1587466218]]></wp:meta_value>
520
+ </wp:postmeta>
521
+ <wp:postmeta>
522
+ <wp:meta_key><![CDATA[_wp_desired_post_slug]]></wp:meta_key>
523
+ <wp:meta_value><![CDATA[my-post-grid-flat-flat-right]]></wp:meta_value>
524
+ </wp:postmeta>
525
+ </item>
526
+ <item>
527
+ <title>My Post Grid - flat - flat-right</title>
528
+ <link>http://localhost/wp/post_grid_layout/my-post-grid-flat-flat-right-2__trashed/</link>
529
+ <pubDate>Tue, 21 Apr 2020 07:06:13 +0000</pubDate>
530
+ <dc:creator><![CDATA[admin]]></dc:creator>
531
+ <guid isPermaLink="false">http://localhost/wp/post_grid_layout/my-post-grid-flat-flat-right-2/</guid>
532
+ <description></description>
533
+ <content:encoded><![CDATA[]]></content:encoded>
534
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
535
+ <wp:post_id>51665</wp:post_id>
536
+ <wp:post_date><![CDATA[2020-04-21 07:06:13]]></wp:post_date>
537
+ <wp:post_date_gmt><![CDATA[2020-04-21 07:06:13]]></wp:post_date_gmt>
538
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
539
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
540
+ <wp:post_name><![CDATA[my-post-grid-flat-flat-right-2__trashed]]></wp:post_name>
541
+ <wp:status><![CDATA[trash]]></wp:status>
542
+ <wp:post_parent>0</wp:post_parent>
543
+ <wp:menu_order>0</wp:menu_order>
544
+ <wp:post_type><![CDATA[post_grid_layout]]></wp:post_type>
545
+ <wp:post_password><![CDATA[]]></wp:post_password>
546
+ <wp:is_sticky>0</wp:is_sticky>
547
+ <wp:postmeta>
548
+ <wp:meta_key><![CDATA[layout_elements_data]]></wp:meta_key>
549
+ <wp:meta_value><![CDATA[a:8:{i:0;a:1:{s:13:"wrapper_start";a:3:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:11:"layer-media";s:8:"css_idle";s:0:"";}}i:1;a:1:{s:5:"media";a:4:{s:12:"media_height";a:6:{s:10:"large_type";s:11:"auto_height";s:5:"large";s:5:"250px";s:11:"medium_type";s:11:"auto_height";s:6:"medium";s:5:"250px";s:10:"small_type";s:11:"auto_height";s:5:"small";s:5:"250px";}s:12:"media_source";a:1:{s:14:"featured_image";a:2:{s:6:"enable";s:3:"yes";s:7:"link_to";s:4:"full";}}s:6:"margin";s:0:"";s:7:"padding";s:0:"";}}i:2;a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}i:3;a:1:{s:13:"wrapper_start";a:2:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:13:"layer-content";}}i:4;a:1:{s:5:"title";a:4:{s:12:"custom_class";s:0:"";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:"";s:10:"char_limit";s:2:"20";}}i:5;a:1:{s:7:"excerpt";a:4:{s:12:"custom_class";s:0:"";s:3:"css";s:67:"display: block;font-size: 12px;padding: 5px 10px;text-align: right;";s:9:"css_hover";s:0:"";s:10:"char_limit";s:2:"20";}}i:6;a:1:{s:9:"read_more";a:5:{s:12:"custom_class";s:0:"";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:14:"read_more_text";s:0:"";s:11:"link_target";s:0:"";}}i:7;a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}}]]></wp:meta_value>
550
+ </wp:postmeta>
551
+ <wp:postmeta>
552
+ <wp:meta_key><![CDATA[custom_scripts]]></wp:meta_key>
553
+ <wp:meta_value><![CDATA[a:2:{s:10:"custom_css";s:122:".__ID__ a{text-decoration:none}
554
+ .__ID__ {
555
+ vertical-align: top;
556
+ }
557
+ .__ID__ .layer-media{}
558
+ .__ID__ .layer-content {
559
+ }";s:9:"custom_js";s:0:"";}]]></wp:meta_value>
560
+ </wp:postmeta>
561
+ <wp:postmeta>
562
+ <wp:meta_key><![CDATA[layout_options]]></wp:meta_key>
563
+ <wp:meta_value><![CDATA[a:1:{s:18:"layout_preview_img";s:0:"";}]]></wp:meta_value>
564
+ </wp:postmeta>
565
+ <wp:postmeta>
566
+ <wp:meta_key><![CDATA[_wp_trash_meta_status]]></wp:meta_key>
567
+ <wp:meta_value><![CDATA[publish]]></wp:meta_value>
568
+ </wp:postmeta>
569
+ <wp:postmeta>
570
+ <wp:meta_key><![CDATA[_wp_trash_meta_time]]></wp:meta_key>
571
+ <wp:meta_value><![CDATA[1587466217]]></wp:meta_value>
572
+ </wp:postmeta>
573
+ <wp:postmeta>
574
+ <wp:meta_key><![CDATA[_wp_desired_post_slug]]></wp:meta_key>
575
+ <wp:meta_value><![CDATA[my-post-grid-flat-flat-right-2]]></wp:meta_value>
576
+ </wp:postmeta>
577
+ </item>
578
+ <item>
579
+ <title>My Post Grid - flat - flat-right</title>
580
+ <link>http://localhost/wp/post_grid_layout/my-post-grid-flat-flat-right-3__trashed/</link>
581
+ <pubDate>Tue, 21 Apr 2020 07:07:03 +0000</pubDate>
582
+ <dc:creator><![CDATA[admin]]></dc:creator>
583
+ <guid isPermaLink="false">http://localhost/wp/post_grid_layout/my-post-grid-flat-flat-right-3/</guid>
584
+ <description></description>
585
+ <content:encoded><![CDATA[]]></content:encoded>
586
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
587
+ <wp:post_id>51666</wp:post_id>
588
+ <wp:post_date><![CDATA[2020-04-21 07:07:03]]></wp:post_date>
589
+ <wp:post_date_gmt><![CDATA[2020-04-21 07:07:03]]></wp:post_date_gmt>
590
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
591
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
592
+ <wp:post_name><![CDATA[my-post-grid-flat-flat-right-3__trashed]]></wp:post_name>
593
+ <wp:status><![CDATA[trash]]></wp:status>
594
+ <wp:post_parent>0</wp:post_parent>
595
+ <wp:menu_order>0</wp:menu_order>
596
+ <wp:post_type><![CDATA[post_grid_layout]]></wp:post_type>
597
+ <wp:post_password><![CDATA[]]></wp:post_password>
598
+ <wp:is_sticky>0</wp:is_sticky>
599
+ <wp:postmeta>
600
+ <wp:meta_key><![CDATA[layout_elements_data]]></wp:meta_key>
601
+ <wp:meta_value><![CDATA[a:8:{i:0;a:1:{s:13:"wrapper_start";a:3:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:11:"layer-media";s:8:"css_idle";s:0:"";}}i:1;a:1:{s:5:"media";a:4:{s:12:"media_height";a:6:{s:10:"large_type";s:11:"auto_height";s:5:"large";s:5:"250px";s:11:"medium_type";s:11:"auto_height";s:6:"medium";s:5:"250px";s:10:"small_type";s:11:"auto_height";s:5:"small";s:5:"250px";}s:12:"media_source";a:1:{s:14:"featured_image";a:2:{s:6:"enable";s:3:"yes";s:7:"link_to";s:4:"full";}}s:6:"margin";s:0:"";s:7:"padding";s:0:"";}}i:2;a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}i:3;a:1:{s:13:"wrapper_start";a:2:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:13:"layer-content";}}i:4;a:1:{s:5:"title";a:4:{s:12:"custom_class";s:0:"";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:"";s:10:"char_limit";s:2:"20";}}i:5;a:1:{s:7:"excerpt";a:4:{s:12:"custom_class";s:0:"";s:3:"css";s:67:"display: block;font-size: 12px;padding: 5px 10px;text-align: right;";s:9:"css_hover";s:0:"";s:10:"char_limit";s:2:"20";}}i:6;a:1:{s:9:"read_more";a:5:{s:12:"custom_class";s:0:"";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:14:"read_more_text";s:0:"";s:11:"link_target";s:0:"";}}i:7;a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}}]]></wp:meta_value>
602
+ </wp:postmeta>
603
+ <wp:postmeta>
604
+ <wp:meta_key><![CDATA[custom_scripts]]></wp:meta_key>
605
+ <wp:meta_value><![CDATA[a:2:{s:10:"custom_css";s:122:".__ID__ a{text-decoration:none}
606
+ .__ID__ {
607
+ vertical-align: top;
608
+ }
609
+ .__ID__ .layer-media{}
610
+ .__ID__ .layer-content {
611
+ }";s:9:"custom_js";s:0:"";}]]></wp:meta_value>
612
+ </wp:postmeta>
613
+ <wp:postmeta>
614
+ <wp:meta_key><![CDATA[layout_options]]></wp:meta_key>
615
+ <wp:meta_value><![CDATA[a:1:{s:18:"layout_preview_img";s:0:"";}]]></wp:meta_value>
616
+ </wp:postmeta>
617
+ <wp:postmeta>
618
+ <wp:meta_key><![CDATA[_wp_trash_meta_status]]></wp:meta_key>
619
+ <wp:meta_value><![CDATA[publish]]></wp:meta_value>
620
+ </wp:postmeta>
621
+ <wp:postmeta>
622
+ <wp:meta_key><![CDATA[_wp_trash_meta_time]]></wp:meta_key>
623
+ <wp:meta_value><![CDATA[1587466216]]></wp:meta_value>
624
+ </wp:postmeta>
625
+ <wp:postmeta>
626
+ <wp:meta_key><![CDATA[_wp_desired_post_slug]]></wp:meta_key>
627
+ <wp:meta_value><![CDATA[my-post-grid-flat-flat-right-3]]></wp:meta_value>
628
+ </wp:postmeta>
629
+ </item>
630
+ <item>
631
+ <title>My Post Grid - flat - flat-right</title>
632
+ <link>http://localhost/wp/post_grid_layout/my-post-grid-flat-flat-right-4__trashed/</link>
633
+ <pubDate>Tue, 21 Apr 2020 07:50:56 +0000</pubDate>
634
+ <dc:creator><![CDATA[admin]]></dc:creator>
635
+ <guid isPermaLink="false">http://localhost/wp/post_grid_layout/my-post-grid-flat-flat-right-4/</guid>
636
+ <description></description>
637
+ <content:encoded><![CDATA[]]></content:encoded>
638
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
639
+ <wp:post_id>51667</wp:post_id>
640
+ <wp:post_date><![CDATA[2020-04-21 07:50:56]]></wp:post_date>
641
+ <wp:post_date_gmt><![CDATA[2020-04-21 07:50:56]]></wp:post_date_gmt>
642
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
643
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
644
+ <wp:post_name><![CDATA[my-post-grid-flat-flat-right-4__trashed]]></wp:post_name>
645
+ <wp:status><![CDATA[trash]]></wp:status>
646
+ <wp:post_parent>0</wp:post_parent>
647
+ <wp:menu_order>0</wp:menu_order>
648
+ <wp:post_type><![CDATA[post_grid_layout]]></wp:post_type>
649
+ <wp:post_password><![CDATA[]]></wp:post_password>
650
+ <wp:is_sticky>0</wp:is_sticky>
651
+ <wp:postmeta>
652
+ <wp:meta_key><![CDATA[layout_elements_data]]></wp:meta_key>
653
+ <wp:meta_value><![CDATA[a:8:{i:0;a:1:{s:13:"wrapper_start";a:3:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:11:"layer-media";s:8:"css_idle";s:0:"";}}i:1;a:1:{s:5:"media";a:4:{s:12:"media_height";a:6:{s:10:"large_type";s:11:"auto_height";s:5:"large";s:5:"250px";s:11:"medium_type";s:11:"auto_height";s:6:"medium";s:5:"250px";s:10:"small_type";s:11:"auto_height";s:5:"small";s:5:"250px";}s:12:"media_source";a:1:{s:14:"featured_image";a:2:{s:6:"enable";s:3:"yes";s:7:"link_to";s:4:"full";}}s:6:"margin";s:0:"";s:7:"padding";s:0:"";}}i:2;a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}i:3;a:1:{s:13:"wrapper_start";a:2:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:13:"layer-content";}}i:4;a:1:{s:5:"title";a:4:{s:12:"custom_class";s:0:"";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:"";s:10:"char_limit";s:2:"20";}}i:5;a:1:{s:7:"excerpt";a:4:{s:12:"custom_class";s:0:"";s:3:"css";s:67:"display: block;font-size: 12px;padding: 5px 10px;text-align: right;";s:9:"css_hover";s:0:"";s:10:"char_limit";s:2:"20";}}i:6;a:1:{s:9:"read_more";a:5:{s:12:"custom_class";s:0:"";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:14:"read_more_text";s:0:"";s:11:"link_target";s:0:"";}}i:7;a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}}]]></wp:meta_value>
654
+ </wp:postmeta>
655
+ <wp:postmeta>
656
+ <wp:meta_key><![CDATA[custom_scripts]]></wp:meta_key>
657
+ <wp:meta_value><![CDATA[a:2:{s:10:"custom_css";s:122:".__ID__ a{text-decoration:none}
658
+ .__ID__ {
659
+ vertical-align: top;
660
+ }
661
+ .__ID__ .layer-media{}
662
+ .__ID__ .layer-content {
663
+ }";s:9:"custom_js";s:0:"";}]]></wp:meta_value>
664
+ </wp:postmeta>
665
+ <wp:postmeta>
666
+ <wp:meta_key><![CDATA[layout_options]]></wp:meta_key>
667
+ <wp:meta_value><![CDATA[a:1:{s:18:"layout_preview_img";s:0:"";}]]></wp:meta_value>
668
+ </wp:postmeta>
669
+ <wp:postmeta>
670
+ <wp:meta_key><![CDATA[_wp_trash_meta_status]]></wp:meta_key>
671
+ <wp:meta_value><![CDATA[publish]]></wp:meta_value>
672
+ </wp:postmeta>
673
+ <wp:postmeta>
674
+ <wp:meta_key><![CDATA[_wp_trash_meta_time]]></wp:meta_key>
675
+ <wp:meta_value><![CDATA[1587466216]]></wp:meta_value>
676
+ </wp:postmeta>
677
+ <wp:postmeta>
678
+ <wp:meta_key><![CDATA[_wp_desired_post_slug]]></wp:meta_key>
679
+ <wp:meta_value><![CDATA[my-post-grid-flat-flat-right-4]]></wp:meta_value>
680
+ </wp:postmeta>
681
+ </item>
682
+ <item>
683
+ <title>My Post Grid - flat - flat-right</title>
684
+ <link>http://localhost/wp/post_grid_layout/my-post-grid-flat-flat-right-5__trashed/</link>
685
+ <pubDate>Tue, 21 Apr 2020 10:48:10 +0000</pubDate>
686
+ <dc:creator><![CDATA[admin]]></dc:creator>
687
+ <guid isPermaLink="false">http://localhost/wp/post_grid_layout/my-post-grid-flat-flat-right-5/</guid>
688
+ <description></description>
689
+ <content:encoded><![CDATA[]]></content:encoded>
690
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
691
+ <wp:post_id>51668</wp:post_id>
692
+ <wp:post_date><![CDATA[2020-04-21 10:48:10]]></wp:post_date>
693
+ <wp:post_date_gmt><![CDATA[2020-04-21 10:48:10]]></wp:post_date_gmt>
694
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
695
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
696
+ <wp:post_name><![CDATA[my-post-grid-flat-flat-right-5__trashed]]></wp:post_name>
697
+ <wp:status><![CDATA[trash]]></wp:status>
698
+ <wp:post_parent>0</wp:post_parent>
699
+ <wp:menu_order>0</wp:menu_order>
700
+ <wp:post_type><![CDATA[post_grid_layout]]></wp:post_type>
701
+ <wp:post_password><![CDATA[]]></wp:post_password>
702
+ <wp:is_sticky>0</wp:is_sticky>
703
+ <wp:postmeta>
704
+ <wp:meta_key><![CDATA[layout_elements_data]]></wp:meta_key>
705
+ <wp:meta_value><![CDATA[a:8:{i:0;a:1:{s:13:"wrapper_start";a:3:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:11:"layer-media";s:8:"css_idle";s:0:"";}}i:1;a:1:{s:5:"media";a:4:{s:12:"media_height";a:6:{s:10:"large_type";s:11:"auto_height";s:5:"large";s:5:"250px";s:11:"medium_type";s:11:"auto_height";s:6:"medium";s:5:"250px";s:10:"small_type";s:11:"auto_height";s:5:"small";s:5:"250px";}s:12:"media_source";a:1:{s:14:"featured_image";a:2:{s:6:"enable";s:3:"yes";s:7:"link_to";s:4:"full";}}s:6:"margin";s:0:"";s:7:"padding";s:0:"";}}i:2;a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}i:3;a:1:{s:13:"wrapper_start";a:2:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:13:"layer-content";}}i:4;a:1:{s:5:"title";a:4:{s:12:"custom_class";s:0:"";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:"";s:10:"char_limit";s:2:"20";}}i:5;a:1:{s:7:"excerpt";a:4:{s:12:"custom_class";s:0:"";s:3:"css";s:67:"display: block;font-size: 12px;padding: 5px 10px;text-align: right;";s:9:"css_hover";s:0:"";s:10:"char_limit";s:2:"20";}}i:6;a:1:{s:9:"read_more";a:5:{s:12:"custom_class";s:0:"";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:14:"read_more_text";s:0:"";s:11:"link_target";s:0:"";}}i:7;a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}}]]></wp:meta_value>
706
+ </wp:postmeta>
707
+ <wp:postmeta>
708
+ <wp:meta_key><![CDATA[custom_scripts]]></wp:meta_key>
709
+ <wp:meta_value><![CDATA[a:2:{s:10:"custom_css";s:122:".__ID__ a{text-decoration:none}
710
+ .__ID__ {
711
+ vertical-align: top;
712
+ }
713
+ .__ID__ .layer-media{}
714
+ .__ID__ .layer-content {
715
+ }";s:9:"custom_js";s:0:"";}]]></wp:meta_value>
716
+ </wp:postmeta>
717
+ <wp:postmeta>
718
+ <wp:meta_key><![CDATA[layout_options]]></wp:meta_key>
719
+ <wp:meta_value><![CDATA[a:1:{s:18:"layout_preview_img";s:0:"";}]]></wp:meta_value>
720
+ </wp:postmeta>
721
+ <wp:postmeta>
722
+ <wp:meta_key><![CDATA[_wp_trash_meta_status]]></wp:meta_key>
723
+ <wp:meta_value><![CDATA[publish]]></wp:meta_value>
724
+ </wp:postmeta>
725
+ <wp:postmeta>
726
+ <wp:meta_key><![CDATA[_wp_trash_meta_time]]></wp:meta_key>
727
+ <wp:meta_value><![CDATA[1587466215]]></wp:meta_value>
728
+ </wp:postmeta>
729
+ <wp:postmeta>
730
+ <wp:meta_key><![CDATA[_wp_desired_post_slug]]></wp:meta_key>
731
+ <wp:meta_value><![CDATA[my-post-grid-flat-flat-right-5]]></wp:meta_value>
732
+ </wp:postmeta>
733
+ </item>
734
+ <item>
735
+ <title>My Post Grid - flat - flat-right</title>
736
+ <link>http://localhost/wp/post_grid_layout/my-post-grid-flat-flat-right-6__trashed/</link>
737
+ <pubDate>Tue, 21 Apr 2020 10:49:01 +0000</pubDate>
738
+ <dc:creator><![CDATA[admin]]></dc:creator>
739
+ <guid isPermaLink="false">http://localhost/wp/post_grid_layout/my-post-grid-flat-flat-right-6/</guid>
740
+ <description></description>
741
+ <content:encoded><![CDATA[]]></content:encoded>
742
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
743
+ <wp:post_id>51669</wp:post_id>
744
+ <wp:post_date><![CDATA[2020-04-21 10:49:01]]></wp:post_date>
745
+ <wp:post_date_gmt><![CDATA[2020-04-21 10:49:01]]></wp:post_date_gmt>
746
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
747
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
748
+ <wp:post_name><![CDATA[my-post-grid-flat-flat-right-6__trashed]]></wp:post_name>
749
+ <wp:status><![CDATA[trash]]></wp:status>
750
+ <wp:post_parent>0</wp:post_parent>
751
+ <wp:menu_order>0</wp:menu_order>
752
+ <wp:post_type><![CDATA[post_grid_layout]]></wp:post_type>
753
+ <wp:post_password><![CDATA[]]></wp:post_password>
754
+ <wp:is_sticky>0</wp:is_sticky>
755
+ <wp:postmeta>
756
+ <wp:meta_key><![CDATA[layout_elements_data]]></wp:meta_key>
757
+ <wp:meta_value><![CDATA[a:8:{i:0;a:1:{s:13:"wrapper_start";a:3:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:11:"layer-media";s:8:"css_idle";s:0:"";}}i:1;a:1:{s:5:"media";a:4:{s:12:"media_height";a:6:{s:10:"large_type";s:11:"auto_height";s:5:"large";s:5:"250px";s:11:"medium_type";s:11:"auto_height";s:6:"medium";s:5:"250px";s:10:"small_type";s:11:"auto_height";s:5:"small";s:5:"250px";}s:12:"media_source";a:1:{s:14:"featured_image";a:2:{s:6:"enable";s:3:"yes";s:7:"link_to";s:4:"full";}}s:6:"margin";s:0:"";s:7:"padding";s:0:"";}}i:2;a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}i:3;a:1:{s:13:"wrapper_start";a:2:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:13:"layer-content";}}i:4;a:1:{s:5:"title";a:4:{s:12:"custom_class";s:0:"";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:"";s:10:"char_limit";s:2:"20";}}i:5;a:1:{s:7:"excerpt";a:4:{s:12:"custom_class";s:0:"";s:3:"css";s:67:"display: block;font-size: 12px;padding: 5px 10px;text-align: right;";s:9:"css_hover";s:0:"";s:10:"char_limit";s:2:"20";}}i:6;a:1:{s:9:"read_more";a:5:{s:12:"custom_class";s:0:"";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:14:"read_more_text";s:0:"";s:11:"link_target";s:0:"";}}i:7;a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}}]]></wp:meta_value>
758
+ </wp:postmeta>
759
+ <wp:postmeta>
760
+ <wp:meta_key><![CDATA[custom_scripts]]></wp:meta_key>
761
+ <wp:meta_value><![CDATA[a:2:{s:10:"custom_css";s:122:".__ID__ a{text-decoration:none}
762
+ .__ID__ {
763
+ vertical-align: top;
764
+ }
765
+ .__ID__ .layer-media{}
766
+ .__ID__ .layer-content {
767
+ }";s:9:"custom_js";s:0:"";}]]></wp:meta_value>
768
+ </wp:postmeta>
769
+ <wp:postmeta>
770
+ <wp:meta_key><![CDATA[layout_options]]></wp:meta_key>
771
+ <wp:meta_value><![CDATA[a:1:{s:18:"layout_preview_img";s:0:"";}]]></wp:meta_value>
772
+ </wp:postmeta>
773
+ <wp:postmeta>
774
+ <wp:meta_key><![CDATA[_wp_trash_meta_status]]></wp:meta_key>
775
+ <wp:meta_value><![CDATA[publish]]></wp:meta_value>
776
+ </wp:postmeta>
777
+ <wp:postmeta>
778
+ <wp:meta_key><![CDATA[_wp_trash_meta_time]]></wp:meta_key>
779
+ <wp:meta_value><![CDATA[1587466214]]></wp:meta_value>
780
+ </wp:postmeta>
781
+ <wp:postmeta>
782
+ <wp:meta_key><![CDATA[_wp_desired_post_slug]]></wp:meta_key>
783
+ <wp:meta_value><![CDATA[my-post-grid-flat-flat-right-6]]></wp:meta_value>
784
+ </wp:postmeta>
785
+ </item>
786
+ <item>
787
+ <title>My Post Grid - flat - flat</title>
788
+ <link>http://localhost/wp/post_grid_layout/my-post-grid-flat-flat__trashed/</link>
789
+ <pubDate>Tue, 21 Apr 2020 11:00:24 +0000</pubDate>
790
+ <dc:creator><![CDATA[admin]]></dc:creator>
791
+ <guid isPermaLink="false">http://localhost/wp/post_grid_layout/my-post-grid-flat-flat/</guid>
792
+ <description></description>
793
+ <content:encoded><![CDATA[]]></content:encoded>
794
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
795
+ <wp:post_id>51670</wp:post_id>
796
+ <wp:post_date><![CDATA[2020-04-21 11:00:24]]></wp:post_date>
797
+ <wp:post_date_gmt><![CDATA[2020-04-21 11:00:24]]></wp:post_date_gmt>
798
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
799
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
800
+ <wp:post_name><![CDATA[my-post-grid-flat-flat__trashed]]></wp:post_name>
801
+ <wp:status><![CDATA[trash]]></wp:status>
802
+ <wp:post_parent>0</wp:post_parent>
803
+ <wp:menu_order>0</wp:menu_order>
804
+ <wp:post_type><![CDATA[post_grid_layout]]></wp:post_type>
805
+ <wp:post_password><![CDATA[]]></wp:post_password>
806
+ <wp:is_sticky>0</wp:is_sticky>
807
+ <wp:postmeta>
808
+ <wp:meta_key><![CDATA[layout_elements_data]]></wp:meta_key>
809
+ <wp:meta_value><![CDATA[a:8:{i:0;a:1:{s:13:"wrapper_start";a:3:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:11:"layer-media";s:8:"css_idle";s:0:"";}}i:1;a:1:{s:5:"media";a:4:{s:12:"media_height";a:6:{s:10:"large_type";s:11:"auto_height";s:5:"large";s:5:"250px";s:11:"medium_type";s:11:"auto_height";s:6:"medium";s:5:"250px";s:10:"small_type";s:11:"auto_height";s:5:"small";s:5:"250px";}s:12:"media_source";a:1:{s:14:"featured_image";a:2:{s:6:"enable";s:3:"yes";s:7:"link_to";s:4:"full";}}s:6:"margin";s:0:"";s:7:"padding";s:0:"";}}i:2;a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}i:3;a:1:{s:13:"wrapper_start";a:2:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:13:"layer-content";}}i:4;a:1:{s:5:"title";a:4:{s:12:"custom_class";s:0:"";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:"";s:10:"char_limit";s:2:"20";}}i:5;a:1:{s:7:"excerpt";a:4:{s:12:"custom_class";s:0:"";s:3:"css";s:86:"display: block;font-size: 13px;line-height: normal;padding: 5px 10px;text-align: left;";s:9:"css_hover";s:0:"";s:10:"char_limit";s:2:"20";}}i:6;a:1:{s:9:"read_more";a:5:{s:12:"custom_class";s:0:"";s:3:"css";s:86:"display: block;font-size: 13px;line-height: normal;padding: 5px 10px;text-align: left;";s:9:"css_hover";s:0:"";s:14:"read_more_text";s:0:"";s:11:"link_target";s:6:"_blank";}}i:7;a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}}]]></wp:meta_value>
810
+ </wp:postmeta>
811
+ <wp:postmeta>
812
+ <wp:meta_key><![CDATA[custom_scripts]]></wp:meta_key>
813
+ <wp:meta_value><![CDATA[a:2:{s:10:"custom_css";s:122:".__ID__ a{text-decoration:none}
814
+ .__ID__ {
815
+ vertical-align: top;
816
+ }
817
+ .__ID__ .layer-media{}
818
+ .__ID__ .layer-content {
819
+ }";s:9:"custom_js";s:0:"";}]]></wp:meta_value>
820
+ </wp:postmeta>
821
+ <wp:postmeta>
822
+ <wp:meta_key><![CDATA[layout_options]]></wp:meta_key>
823
+ <wp:meta_value><![CDATA[a:1:{s:18:"layout_preview_img";s:0:"";}]]></wp:meta_value>
824
+ </wp:postmeta>
825
+ <wp:postmeta>
826
+ <wp:meta_key><![CDATA[_wp_trash_meta_status]]></wp:meta_key>
827
+ <wp:meta_value><![CDATA[publish]]></wp:meta_value>
828
+ </wp:postmeta>
829
+ <wp:postmeta>
830
+ <wp:meta_key><![CDATA[_wp_trash_meta_time]]></wp:meta_key>
831
+ <wp:meta_value><![CDATA[1587468189]]></wp:meta_value>
832
+ </wp:postmeta>
833
+ <wp:postmeta>
834
+ <wp:meta_key><![CDATA[_wp_desired_post_slug]]></wp:meta_key>
835
+ <wp:meta_value><![CDATA[my-post-grid-flat-flat]]></wp:meta_value>
836
+ </wp:postmeta>
837
+ </item>
838
+ <item>
839
+ <title>My Post Grid - flip-x - flat</title>
840
+ <link>http://localhost/wp/post_grid_layout/my-post-grid-flip-x-flat__trashed/</link>
841
+ <pubDate>Tue, 21 Apr 2020 11:00:40 +0000</pubDate>
842
+ <dc:creator><![CDATA[admin]]></dc:creator>
843
+ <guid isPermaLink="false">http://localhost/wp/post_grid_layout/my-post-grid-flip-x-flat/</guid>
844
+ <description></description>
845
+ <content:encoded><![CDATA[]]></content:encoded>
846
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
847
+ <wp:post_id>51671</wp:post_id>
848
+ <wp:post_date><![CDATA[2020-04-21 11:00:40]]></wp:post_date>
849
+ <wp:post_date_gmt><![CDATA[2020-04-21 11:00:40]]></wp:post_date_gmt>
850
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
851
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
852
+ <wp:post_name><![CDATA[my-post-grid-flip-x-flat__trashed]]></wp:post_name>
853
+ <wp:status><![CDATA[trash]]></wp:status>
854
+ <wp:post_parent>0</wp:post_parent>
855
+ <wp:menu_order>0</wp:menu_order>
856
+ <wp:post_type><![CDATA[post_grid_layout]]></wp:post_type>
857
+ <wp:post_password><![CDATA[]]></wp:post_password>
858
+ <wp:is_sticky>0</wp:is_sticky>
859
+ <wp:postmeta>
860
+ <wp:meta_key><![CDATA[layout_elements_data]]></wp:meta_key>
861
+ <wp:meta_value><![CDATA[a:8:{i:0;a:1:{s:13:"wrapper_start";a:3:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:11:"layer-media";s:8:"css_idle";s:0:"";}}i:1;a:1:{s:5:"media";a:4:{s:12:"media_height";a:6:{s:10:"large_type";s:11:"auto_height";s:5:"large";s:5:"250px";s:11:"medium_type";s:11:"auto_height";s:6:"medium";s:5:"250px";s:10:"small_type";s:11:"auto_height";s:5:"small";s:5:"250px";}s:12:"media_source";a:1:{s:14:"featured_image";a:2:{s:6:"enable";s:3:"yes";s:7:"link_to";s:4:"full";}}s:6:"margin";s:0:"";s:7:"padding";s:0:"";}}i:2;a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}i:3;a:1:{s:13:"wrapper_start";a:2:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:13:"layer-content";}}i:4;a:1:{s:5:"title";a:4:{s:12:"custom_class";s:0:"";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:"";s:10:"char_limit";s:2:"20";}}i:5;a:1:{s:7:"excerpt";a:4:{s:12:"custom_class";s:0:"";s:3:"css";s:86:"display: block;font-size: 13px;line-height: normal;padding: 5px 10px;text-align: left;";s:9:"css_hover";s:0:"";s:10:"char_limit";s:2:"20";}}i:6;a:1:{s:9:"read_more";a:5:{s:12:"custom_class";s:0:"";s:3:"css";s:86:"display: block;font-size: 13px;line-height: normal;padding: 5px 10px;text-align: left;";s:9:"css_hover";s:0:"";s:14:"read_more_text";s:0:"";s:11:"link_target";s:6:"_blank";}}i:7;a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}}]]></wp:meta_value>
862
+ </wp:postmeta>
863
+ <wp:postmeta>
864
+ <wp:meta_key><![CDATA[custom_scripts]]></wp:meta_key>
865
+ <wp:meta_value><![CDATA[a:2:{s:10:"custom_css";s:1658:".__ID__ a{text-decoration:none}
866
+ .__ID__ {
867
+ overflow: hidden;
868
+ padding: 0;
869
+ -webkit-perspective: 600px;
870
+ perspective: 600px;
871
+ position: relative;
872
+ vertical-align: top;
873
+ width: 100%;
874
+ }
875
+ .__ID__:hover .layer-media {
876
+ background: rgb(255, 255, 255) none repeat scroll 0 0;
877
+ -webkit-transform: rotateX(180deg);
878
+ transform: rotateX(180deg);
879
+ z-index: 900;
880
+ }
881
+ .__ID__ .layer-media {
882
+ -webkit-backface-visibility: hidden;
883
+ backface-visibility: hidden;
884
+ background: rgb(255, 255, 255) none repeat scroll 0 0;
885
+ float: none;
886
+ height: inherit;
887
+ left: 0;
888
+ text-align: center;
889
+ top: 0;
890
+ -webkit-transform: rotateX(0deg) rotateY(0deg);
891
+ transform: rotateX(0deg) rotateY(0deg);
892
+ -webkit-transform-style: preserve-3d;
893
+ transform-style: preserve-3d;
894
+ -webkit-transition: all 0.4s ease-in-out 0s;
895
+ transition: all 0.4s ease-in-out 0s;
896
+ width: inherit;
897
+ z-index: 900;
898
+ }
899
+ .__ID__:hover .layer-content {
900
+ background: rgb(255, 255, 255) none repeat scroll 0 0;
901
+ -webkit-transform: rotateX(0deg) rotateY(0deg);
902
+ transform: rotateX(0deg) rotateY(0deg);
903
+ z-index: 1000;
904
+ }
905
+ .__ID__ .layer-content {
906
+ -webkit-backface-visibility: hidden;
907
+ backface-visibility: hidden;
908
+ background: rgb(255, 255, 255) none repeat scroll 0 0;
909
+ float: none;
910
+ height: inherit;
911
+ left: 0;
912
+ padding: 0;
913
+ position: absolute;
914
+ top: 0;
915
+ -webkit-transform: rotateX(-179deg);
916
+ transform: rotateX(-179deg);
917
+ -webkit-transform-style: preserve-3d;
918
+ transform-style: preserve-3d;
919
+ -webkit-transition: all 0.4s ease-in-out 0s;
920
+ transition: all 0.4s ease-in-out 0s;
921
+ width: inherit;
922
+ z-index: 800;
923
+ padding:10px;
924
+ }
925
+ ";s:9:"custom_js";s:0:"";}]]></wp:meta_value>
926
+ </wp:postmeta>
927
+ <wp:postmeta>
928
+ <wp:meta_key><![CDATA[layout_options]]></wp:meta_key>
929
+ <wp:meta_value><![CDATA[a:1:{s:18:"layout_preview_img";s:0:"";}]]></wp:meta_value>
930
+ </wp:postmeta>
931
+ <wp:postmeta>
932
+ <wp:meta_key><![CDATA[_wp_trash_meta_status]]></wp:meta_key>
933
+ <wp:meta_value><![CDATA[publish]]></wp:meta_value>
934
+ </wp:postmeta>
935
+ <wp:postmeta>
936
+ <wp:meta_key><![CDATA[_wp_trash_meta_time]]></wp:meta_key>
937
+ <wp:meta_value><![CDATA[1587468188]]></wp:meta_value>
938
+ </wp:postmeta>
939
+ <wp:postmeta>
940
+ <wp:meta_key><![CDATA[_wp_desired_post_slug]]></wp:meta_key>
941
+ <wp:meta_value><![CDATA[my-post-grid-flip-x-flat]]></wp:meta_value>
942
+ </wp:postmeta>
943
+ </item>
944
+ <item>
945
+ <title>My Post Grid - spinright - flat</title>
946
+ <link>http://localhost/wp/post_grid_layout/my-post-grid-spinright-flat__trashed/</link>
947
+ <pubDate>Tue, 21 Apr 2020 11:00:54 +0000</pubDate>
948
+ <dc:creator><![CDATA[admin]]></dc:creator>
949
+ <guid isPermaLink="false">http://localhost/wp/post_grid_layout/my-post-grid-spinright-flat/</guid>
950
+ <description></description>
951
+ <content:encoded><![CDATA[]]></content:encoded>
952
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
953
+ <wp:post_id>51672</wp:post_id>
954
+ <wp:post_date><![CDATA[2020-04-21 11:00:54]]></wp:post_date>
955
+ <wp:post_date_gmt><![CDATA[2020-04-21 11:00:54]]></wp:post_date_gmt>
956
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
957
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
958
+ <wp:post_name><![CDATA[my-post-grid-spinright-flat__trashed]]></wp:post_name>
959
+ <wp:status><![CDATA[trash]]></wp:status>
960
+ <wp:post_parent>0</wp:post_parent>
961
+ <wp:menu_order>0</wp:menu_order>
962
+ <wp:post_type><![CDATA[post_grid_layout]]></wp:post_type>
963
+ <wp:post_password><![CDATA[]]></wp:post_password>
964
+ <wp:is_sticky>0</wp:is_sticky>
965
+ <wp:postmeta>
966
+ <wp:meta_key><![CDATA[layout_elements_data]]></wp:meta_key>
967
+ <wp:meta_value><![CDATA[a:8:{i:0;a:1:{s:13:"wrapper_start";a:3:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:11:"layer-media";s:8:"css_idle";s:0:"";}}i:1;a:1:{s:5:"media";a:4:{s:12:"media_height";a:6:{s:10:"large_type";s:11:"auto_height";s:5:"large";s:5:"250px";s:11:"medium_type";s:11:"auto_height";s:6:"medium";s:5:"250px";s:10:"small_type";s:11:"auto_height";s:5:"small";s:5:"250px";}s:12:"media_source";a:1:{s:14:"featured_image";a:2:{s:6:"enable";s:3:"yes";s:7:"link_to";s:4:"full";}}s:6:"margin";s:0:"";s:7:"padding";s:0:"";}}i:2;a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}i:3;a:1:{s:13:"wrapper_start";a:2:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:13:"layer-content";}}i:4;a:1:{s:5:"title";a:4:{s:12:"custom_class";s:0:"";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:"";s:10:"char_limit";s:2:"20";}}i:5;a:1:{s:7:"excerpt";a:4:{s:12:"custom_class";s:0:"";s:3:"css";s:86:"display: block;font-size: 13px;line-height: normal;padding: 5px 10px;text-align: left;";s:9:"css_hover";s:0:"";s:10:"char_limit";s:2:"20";}}i:6;a:1:{s:9:"read_more";a:5:{s:12:"custom_class";s:0:"";s:3:"css";s:86:"display: block;font-size: 13px;line-height: normal;padding: 5px 10px;text-align: left;";s:9:"css_hover";s:0:"";s:14:"read_more_text";s:0:"";s:11:"link_target";s:6:"_blank";}}i:7;a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}}]]></wp:meta_value>
968
+ </wp:postmeta>
969
+ <wp:postmeta>
970
+ <wp:meta_key><![CDATA[custom_scripts]]></wp:meta_key>
971
+ <wp:meta_value><![CDATA[a:2:{s:10:"custom_css";s:710:".__ID__ a{text-decoration:none}
972
+ .__ID__ {
973
+ overflow: hidden;
974
+ position: relative;
975
+ vertical-align: top;
976
+ }
977
+ .__ID__:hover .layer-media {
978
+ -webkit-transform: rotate(30deg);
979
+ -ms-transform: rotate(30deg);
980
+ transform: rotate(30deg);
981
+ opacity: 0;
982
+ filter: alpha(opacity=0);
983
+ }
984
+ .__ID__ .layer-media {
985
+ -webkit-transition: all 1s ease 0s;
986
+ transition: all 1s ease 0s;
987
+ left: 0;
988
+ top: 0;
989
+ width: 100%;
990
+ }
991
+ .__ID__:hover .layer-content{
992
+ opacity: 1;
993
+ filter: alpha(opacity=100);
994
+ }
995
+ .__ID__ .layer-content {
996
+ left: 0;
997
+ opacity: 0;
998
+ filter: alpha(opacity=0);
999
+ position: absolute;
1000
+ top: 0;
1001
+ width: 100%;
1002
+ -webkit-transition: all 1s ease 0s;
1003
+ transition: all 1s ease 0s;
1004
+ }";s:9:"custom_js";s:0:"";}]]></wp:meta_value>
1005
+ </wp:postmeta>
1006
+ <wp:postmeta>
1007
+ <wp:meta_key><![CDATA[layout_options]]></wp:meta_key>
1008
+ <wp:meta_value><![CDATA[a:1:{s:18:"layout_preview_img";s:0:"";}]]></wp:meta_value>
1009
+ </wp:postmeta>
1010
+ <wp:postmeta>
1011
+ <wp:meta_key><![CDATA[_wp_trash_meta_status]]></wp:meta_key>
1012
+ <wp:meta_value><![CDATA[publish]]></wp:meta_value>
1013
+ </wp:postmeta>
1014
+ <wp:postmeta>
1015
+ <wp:meta_key><![CDATA[_wp_trash_meta_time]]></wp:meta_key>
1016
+ <wp:meta_value><![CDATA[1587468188]]></wp:meta_value>
1017
+ </wp:postmeta>
1018
+ <wp:postmeta>
1019
+ <wp:meta_key><![CDATA[_wp_desired_post_slug]]></wp:meta_key>
1020
+ <wp:meta_value><![CDATA[my-post-grid-spinright-flat]]></wp:meta_value>
1021
+ </wp:postmeta>
1022
+ </item>
1023
+ <item>
1024
+ <title>My Post Grid - thumbgoleft - flat</title>
1025
+ <link>http://localhost/wp/post_grid_layout/my-post-grid-thumbgoleft-flat__trashed/</link>
1026
+ <pubDate>Tue, 21 Apr 2020 11:11:03 +0000</pubDate>
1027
+ <dc:creator><![CDATA[admin]]></dc:creator>
1028
+ <guid isPermaLink="false">http://localhost/wp/post_grid_layout/my-post-grid-thumbgoleft-flat/</guid>
1029
+ <description></description>
1030
+ <content:encoded><![CDATA[]]></content:encoded>
1031
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1032
+ <wp:post_id>51673</wp:post_id>
1033
+ <wp:post_date><![CDATA[2020-04-21 11:11:03]]></wp:post_date>
1034
+ <wp:post_date_gmt><![CDATA[2020-04-21 11:11:03]]></wp:post_date_gmt>
1035
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
1036
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1037
+ <wp:post_name><![CDATA[my-post-grid-thumbgoleft-flat__trashed]]></wp:post_name>
1038
+ <wp:status><![CDATA[trash]]></wp:status>
1039
+ <wp:post_parent>0</wp:post_parent>
1040
+ <wp:menu_order>0</wp:menu_order>
1041
+ <wp:post_type><![CDATA[post_grid_layout]]></wp:post_type>
1042
+ <wp:post_password><![CDATA[]]></wp:post_password>
1043
+ <wp:is_sticky>0</wp:is_sticky>
1044
+ <wp:postmeta>
1045
+ <wp:meta_key><![CDATA[layout_elements_data]]></wp:meta_key>
1046
+ <wp:meta_value><![CDATA[a:8:{i:0;a:1:{s:13:"wrapper_start";a:3:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:11:"layer-media";s:8:"css_idle";s:0:"";}}i:1;a:1:{s:5:"media";a:4:{s:12:"media_height";a:6:{s:10:"large_type";s:11:"auto_height";s:5:"large";s:5:"250px";s:11:"medium_type";s:11:"auto_height";s:6:"medium";s:5:"250px";s:10:"small_type";s:11:"auto_height";s:5:"small";s:5:"250px";}s:12:"media_source";a:1:{s:14:"featured_image";a:2:{s:6:"enable";s:3:"yes";s:7:"link_to";s:4:"full";}}s:6:"margin";s:0:"";s:7:"padding";s:0:"";}}i:2;a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}i:3;a:1:{s:13:"wrapper_start";a:2:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:13:"layer-content";}}i:4;a:1:{s:5:"title";a:4:{s:12:"custom_class";s:0:"";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:"";s:10:"char_limit";s:2:"20";}}i:5;a:1:{s:7:"excerpt";a:4:{s:12:"custom_class";s:0:"";s:3:"css";s:86:"display: block;font-size: 13px;line-height: normal;padding: 5px 10px;text-align: left;";s:9:"css_hover";s:0:"";s:10:"char_limit";s:2:"20";}}i:6;a:1:{s:9:"read_more";a:5:{s:12:"custom_class";s:0:"";s:3:"css";s:86:"display: block;font-size: 13px;line-height: normal;padding: 5px 10px;text-align: left;";s:9:"css_hover";s:0:"";s:14:"read_more_text";s:0:"";s:11:"link_target";s:6:"_blank";}}i:7;a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}}]]></wp:meta_value>
1047
+ </wp:postmeta>
1048
+ <wp:postmeta>
1049
+ <wp:meta_key><![CDATA[custom_scripts]]></wp:meta_key>
1050
+ <wp:meta_value><![CDATA[a:2:{s:10:"custom_css";s:761:".__ID__ a{text-decoration:none}
1051
+ .__ID__ {
1052
+ overflow: hidden;
1053
+ position: relative;
1054
+ vertical-align: top;
1055
+ }
1056
+ .__ID__:hover .layer-media {
1057
+ opacity: 0;
1058
+ filter: alpha(opacity=0);
1059
+ -webkit-transform: scale(0.5) translateX(-100%);
1060
+ -ms-transform: scale(0.5) translateX(-100%);
1061
+ transform: scale(0.5) translateX(-100%);
1062
+ }
1063
+ .__ID__ .layer-media {
1064
+ -webkit-transition: all 1s ease 0s;
1065
+ transition: all 1s ease 0s;
1066
+ width: 100%;
1067
+ }
1068
+ .__ID__:hover .layer-content{
1069
+ opacity: 1;
1070
+ filter: alpha(opacity=100);
1071
+ }
1072
+ .__ID__ .layer-content {
1073
+ left: 0;
1074
+ opacity: 0;
1075
+ filter: alpha(opacity=0);
1076
+ position: absolute;
1077
+ top: 0;
1078
+ -webkit-transition: all 1s ease 0s;
1079
+ transition: all 1s ease 0s;
1080
+ }
1081
+ .__ID__ .layer-hover {
1082
+ display: none;
1083
+ }";s:9:"custom_js";s:0:"";}]]></wp:meta_value>
1084
+ </wp:postmeta>
1085
+ <wp:postmeta>
1086
+ <wp:meta_key><![CDATA[layout_options]]></wp:meta_key>
1087
+ <wp:meta_value><![CDATA[a:1:{s:18:"layout_preview_img";s:0:"";}]]></wp:meta_value>
1088
+ </wp:postmeta>
1089
+ <wp:postmeta>
1090
+ <wp:meta_key><![CDATA[_wp_trash_meta_status]]></wp:meta_key>
1091
+ <wp:meta_value><![CDATA[publish]]></wp:meta_value>
1092
+ </wp:postmeta>
1093
+ <wp:postmeta>
1094
+ <wp:meta_key><![CDATA[_wp_trash_meta_time]]></wp:meta_key>
1095
+ <wp:meta_value><![CDATA[1587468188]]></wp:meta_value>
1096
+ </wp:postmeta>
1097
+ <wp:postmeta>
1098
+ <wp:meta_key><![CDATA[_wp_desired_post_slug]]></wp:meta_key>
1099
+ <wp:meta_value><![CDATA[my-post-grid-thumbgoleft-flat]]></wp:meta_value>
1100
+ </wp:postmeta>
1101
+ </item>
1102
+ <item>
1103
+ <title>My Post Grid - thumbgoleft - flat</title>
1104
+ <link>http://localhost/wp/post_grid_layout/my-post-grid-thumbgoleft-flat__trashed-2/</link>
1105
+ <pubDate>Tue, 21 Apr 2020 11:24:02 +0000</pubDate>
1106
+ <dc:creator><![CDATA[admin]]></dc:creator>
1107
+ <guid isPermaLink="false">http://localhost/wp/post_grid_layout/my-post-grid-thumbgoleft-flat/</guid>
1108
+ <description></description>
1109
+ <content:encoded><![CDATA[]]></content:encoded>
1110
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1111
+ <wp:post_id>51674</wp:post_id>
1112
+ <wp:post_date><![CDATA[2020-04-21 11:24:02]]></wp:post_date>
1113
+ <wp:post_date_gmt><![CDATA[2020-04-21 11:24:02]]></wp:post_date_gmt>
1114
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
1115
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1116
+ <wp:post_name><![CDATA[my-post-grid-thumbgoleft-flat__trashed-2]]></wp:post_name>
1117
+ <wp:status><![CDATA[trash]]></wp:status>
1118
+ <wp:post_parent>0</wp:post_parent>
1119
+ <wp:menu_order>0</wp:menu_order>
1120
+ <wp:post_type><![CDATA[post_grid_layout]]></wp:post_type>
1121
+ <wp:post_password><![CDATA[]]></wp:post_password>
1122
+ <wp:is_sticky>0</wp:is_sticky>
1123
+ <wp:postmeta>
1124
+ <wp:meta_key><![CDATA[layout_elements_data]]></wp:meta_key>
1125
+ <wp:meta_value><![CDATA[a:8:{i:0;a:1:{s:13:"wrapper_start";a:3:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:11:"layer-media";s:8:"css_idle";s:0:"";}}i:1;a:1:{s:5:"media";a:4:{s:12:"media_height";a:6:{s:10:"large_type";s:11:"auto_height";s:5:"large";s:5:"250px";s:11:"medium_type";s:11:"auto_height";s:6:"medium";s:5:"250px";s:10:"small_type";s:11:"auto_height";s:5:"small";s:5:"250px";}s:12:"media_source";a:1:{s:14:"featured_image";a:2:{s:6:"enable";s:3:"yes";s:7:"link_to";s:4:"full";}}s:6:"margin";s:0:"";s:7:"padding";s:0:"";}}i:2;a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}i:3;a:1:{s:13:"wrapper_start";a:2:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:13:"layer-content";}}i:4;a:1:{s:5:"title";a:4:{s:12:"custom_class";s:0:"";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:"";s:10:"char_limit";s:2:"20";}}i:5;a:1:{s:7:"excerpt";a:4:{s:12:"custom_class";s:0:"";s:3:"css";s:86:"display: block;font-size: 13px;line-height: normal;padding: 5px 10px;text-align: left;";s:9:"css_hover";s:0:"";s:10:"char_limit";s:2:"20";}}i:6;a:1:{s:9:"read_more";a:5:{s:12:"custom_class";s:0:"";s:3:"css";s:86:"display: block;font-size: 13px;line-height: normal;padding: 5px 10px;text-align: left;";s:9:"css_hover";s:0:"";s:14:"read_more_text";s:0:"";s:11:"link_target";s:6:"_blank";}}i:7;a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}}]]></wp:meta_value>
1126
+ </wp:postmeta>
1127
+ <wp:postmeta>
1128
+ <wp:meta_key><![CDATA[custom_scripts]]></wp:meta_key>
1129
+ <wp:meta_value><![CDATA[a:2:{s:10:"custom_css";s:761:".__ID__ a{text-decoration:none}
1130
+ .__ID__ {
1131
+ overflow: hidden;
1132
+ position: relative;
1133
+ vertical-align: top;
1134
+ }
1135
+ .__ID__:hover .layer-media {
1136
+ opacity: 0;
1137
+ filter: alpha(opacity=0);
1138
+ -webkit-transform: scale(0.5) translateX(-100%);
1139
+ -ms-transform: scale(0.5) translateX(-100%);
1140
+ transform: scale(0.5) translateX(-100%);
1141
+ }
1142
+ .__ID__ .layer-media {
1143
+ -webkit-transition: all 1s ease 0s;
1144
+ transition: all 1s ease 0s;
1145
+ width: 100%;
1146
+ }
1147
+ .__ID__:hover .layer-content{
1148
+ opacity: 1;
1149
+ filter: alpha(opacity=100);
1150
+ }
1151
+ .__ID__ .layer-content {
1152
+ left: 0;
1153
+ opacity: 0;
1154
+ filter: alpha(opacity=0);
1155
+ position: absolute;
1156
+ top: 0;
1157
+ -webkit-transition: all 1s ease 0s;
1158
+ transition: all 1s ease 0s;
1159
+ }
1160
+ .__ID__ .layer-hover {
1161
+ display: none;
1162
+ }";s:9:"custom_js";s:0:"";}]]></wp:meta_value>
1163
+ </wp:postmeta>
1164
+ <wp:postmeta>
1165
+ <wp:meta_key><![CDATA[layout_options]]></wp:meta_key>
1166
+ <wp:meta_value><![CDATA[a:1:{s:18:"layout_preview_img";s:0:"";}]]></wp:meta_value>
1167
+ </wp:postmeta>
1168
+ <wp:postmeta>
1169
+ <wp:meta_key><![CDATA[_wp_trash_meta_status]]></wp:meta_key>
1170
+ <wp:meta_value><![CDATA[publish]]></wp:meta_value>
1171
+ </wp:postmeta>
1172
+ <wp:postmeta>
1173
+ <wp:meta_key><![CDATA[_wp_trash_meta_time]]></wp:meta_key>
1174
+ <wp:meta_value><![CDATA[1587468734]]></wp:meta_value>
1175
+ </wp:postmeta>
1176
+ <wp:postmeta>
1177
+ <wp:meta_key><![CDATA[_wp_desired_post_slug]]></wp:meta_key>
1178
+ <wp:meta_value><![CDATA[my-post-grid-thumbgoleft-flat]]></wp:meta_value>
1179
+ </wp:postmeta>
1180
+ </item>
1181
+ <item>
1182
+ <title>My Post Grid - thumbgoleft - flat</title>
1183
+ <link>http://localhost/wp/post_grid_layout/my-post-grid-thumbgoleft-flat__trashed-3/</link>
1184
+ <pubDate>Tue, 28 Apr 2020 08:57:15 +0000</pubDate>
1185
+ <dc:creator><![CDATA[admin]]></dc:creator>
1186
+ <guid isPermaLink="false">http://localhost/wp/post_grid_layout/my-post-grid-thumbgoleft-flat/</guid>
1187
+ <description></description>
1188
+ <content:encoded><![CDATA[]]></content:encoded>
1189
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1190
+ <wp:post_id>51724</wp:post_id>
1191
+ <wp:post_date><![CDATA[2020-04-28 08:57:15]]></wp:post_date>
1192
+ <wp:post_date_gmt><![CDATA[2020-04-28 08:57:15]]></wp:post_date_gmt>
1193
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
1194
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1195
+ <wp:post_name><![CDATA[my-post-grid-thumbgoleft-flat__trashed-3]]></wp:post_name>
1196
+ <wp:status><![CDATA[trash]]></wp:status>
1197
+ <wp:post_parent>0</wp:post_parent>
1198
+ <wp:menu_order>0</wp:menu_order>
1199
+ <wp:post_type><![CDATA[post_grid_layout]]></wp:post_type>
1200
+ <wp:post_password><![CDATA[]]></wp:post_password>
1201
+ <wp:is_sticky>0</wp:is_sticky>
1202
+ <wp:postmeta>
1203
+ <wp:meta_key><![CDATA[layout_elements_data]]></wp:meta_key>
1204
+ <wp:meta_value><![CDATA[a:8:{i:0;a:1:{s:13:"wrapper_start";a:3:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:11:"layer-media";s:8:"css_idle";s:0:"";}}i:1;a:1:{s:5:"media";a:4:{s:12:"media_height";a:6:{s:10:"large_type";s:11:"auto_height";s:5:"large";s:5:"250px";s:11:"medium_type";s:11:"auto_height";s:6:"medium";s:5:"250px";s:10:"small_type";s:11:"auto_height";s:5:"small";s:5:"250px";}s:12:"media_source";a:1:{s:14:"featured_image";a:2:{s:6:"enable";s:3:"yes";s:7:"link_to";s:4:"full";}}s:6:"margin";s:0:"";s:7:"padding";s:0:"";}}i:2;a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}i:3;a:1:{s:13:"wrapper_start";a:2:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:13:"layer-content";}}i:4;a:1:{s:5:"title";a:4:{s:12:"custom_class";s:0:"";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:"";s:10:"char_limit";s:2:"20";}}i:5;a:1:{s:7:"excerpt";a:4:{s:12:"custom_class";s:0:"";s:3:"css";s:86:"display: block;font-size: 13px;line-height: normal;padding: 5px 10px;text-align: left;";s:9:"css_hover";s:0:"";s:10:"char_limit";s:2:"20";}}i:6;a:1:{s:9:"read_more";a:5:{s:12:"custom_class";s:0:"";s:3:"css";s:86:"display: block;font-size: 13px;line-height: normal;padding: 5px 10px;text-align: left;";s:9:"css_hover";s:0:"";s:14:"read_more_text";s:0:"";s:11:"link_target";s:6:"_blank";}}i:7;a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}}]]></wp:meta_value>
1205
+ </wp:postmeta>
1206
+ <wp:postmeta>
1207
+ <wp:meta_key><![CDATA[custom_scripts]]></wp:meta_key>
1208
+ <wp:meta_value><![CDATA[a:2:{s:10:"custom_css";s:761:".__ID__ a{text-decoration:none}
1209
+ .__ID__ {
1210
+ overflow: hidden;
1211
+ position: relative;
1212
+ vertical-align: top;
1213
+ }
1214
+ .__ID__:hover .layer-media {
1215
+ opacity: 0;
1216
+ filter: alpha(opacity=0);
1217
+ -webkit-transform: scale(0.5) translateX(-100%);
1218
+ -ms-transform: scale(0.5) translateX(-100%);
1219
+ transform: scale(0.5) translateX(-100%);
1220
+ }
1221
+ .__ID__ .layer-media {
1222
+ -webkit-transition: all 1s ease 0s;
1223
+ transition: all 1s ease 0s;
1224
+ width: 100%;
1225
+ }
1226
+ .__ID__:hover .layer-content{
1227
+ opacity: 1;
1228
+ filter: alpha(opacity=100);
1229
+ }
1230
+ .__ID__ .layer-content {
1231
+ left: 0;
1232
+ opacity: 0;
1233
+ filter: alpha(opacity=0);
1234
+ position: absolute;
1235
+ top: 0;
1236
+ -webkit-transition: all 1s ease 0s;
1237
+ transition: all 1s ease 0s;
1238
+ }
1239
+ .__ID__ .layer-hover {
1240
+ display: none;
1241
+ }";s:9:"custom_js";s:0:"";}]]></wp:meta_value>
1242
+ </wp:postmeta>
1243
+ <wp:postmeta>
1244
+ <wp:meta_key><![CDATA[layout_options]]></wp:meta_key>
1245
+ <wp:meta_value><![CDATA[a:1:{s:18:"layout_preview_img";s:0:"";}]]></wp:meta_value>
1246
+ </wp:postmeta>
1247
+ <wp:postmeta>
1248
+ <wp:meta_key><![CDATA[_wp_trash_meta_status]]></wp:meta_key>
1249
+ <wp:meta_value><![CDATA[publish]]></wp:meta_value>
1250
+ </wp:postmeta>
1251
+ <wp:postmeta>
1252
+ <wp:meta_key><![CDATA[_wp_trash_meta_time]]></wp:meta_key>
1253
+ <wp:meta_value><![CDATA[1588095094]]></wp:meta_value>
1254
+ </wp:postmeta>
1255
+ <wp:postmeta>
1256
+ <wp:meta_key><![CDATA[_wp_desired_post_slug]]></wp:meta_key>
1257
+ <wp:meta_value><![CDATA[my-post-grid-thumbgoleft-flat]]></wp:meta_value>
1258
+ </wp:postmeta>
1259
+ </item>
1260
+ <item>
1261
+ <title>My Post Grid - flat - flat</title>
1262
+ <link>http://localhost/wp/post_grid_layout/my-post-grid-flat-flat__trashed-2/</link>
1263
+ <pubDate>Tue, 28 Apr 2020 08:59:24 +0000</pubDate>
1264
+ <dc:creator><![CDATA[admin]]></dc:creator>
1265
+ <guid isPermaLink="false">http://localhost/wp/post_grid_layout/my-post-grid-flat-flat/</guid>
1266
+ <description></description>
1267
+ <content:encoded><![CDATA[]]></content:encoded>
1268
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1269
+ <wp:post_id>51725</wp:post_id>
1270
+ <wp:post_date><![CDATA[2020-04-28 08:59:24]]></wp:post_date>
1271
+ <wp:post_date_gmt><![CDATA[2020-04-28 08:59:24]]></wp:post_date_gmt>
1272
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
1273
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1274
+ <wp:post_name><![CDATA[my-post-grid-flat-flat__trashed-2]]></wp:post_name>
1275
+ <wp:status><![CDATA[trash]]></wp:status>
1276
+ <wp:post_parent>0</wp:post_parent>
1277
+ <wp:menu_order>0</wp:menu_order>
1278
+ <wp:post_type><![CDATA[post_grid_layout]]></wp:post_type>
1279
+ <wp:post_password><![CDATA[]]></wp:post_password>
1280
+ <wp:is_sticky>0</wp:is_sticky>
1281
+ <wp:postmeta>
1282
+ <wp:meta_key><![CDATA[layout_elements_data]]></wp:meta_key>
1283
+ <wp:meta_value><![CDATA[a:8:{i:0;a:1:{s:13:"wrapper_start";a:3:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:11:"layer-media";s:8:"css_idle";s:0:"";}}i:1;a:1:{s:5:"media";a:4:{s:12:"media_height";a:6:{s:10:"large_type";s:11:"auto_height";s:5:"large";s:5:"250px";s:11:"medium_type";s:11:"auto_height";s:6:"medium";s:5:"250px";s:10:"small_type";s:11:"auto_height";s:5:"small";s:5:"250px";}s:12:"media_source";a:1:{s:14:"featured_image";a:2:{s:6:"enable";s:3:"yes";s:7:"link_to";s:4:"full";}}s:6:"margin";s:0:"";s:7:"padding";s:0:"";}}i:2;a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}i:3;a:1:{s:13:"wrapper_start";a:2:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:13:"layer-content";}}i:4;a:1:{s:5:"title";a:4:{s:12:"custom_class";s:0:"";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:"";s:10:"char_limit";s:2:"20";}}i:5;a:1:{s:7:"excerpt";a:4:{s:12:"custom_class";s:0:"";s:3:"css";s:86:"display: block;font-size: 13px;line-height: normal;padding: 5px 10px;text-align: left;";s:9:"css_hover";s:0:"";s:10:"char_limit";s:2:"20";}}i:6;a:1:{s:9:"read_more";a:5:{s:12:"custom_class";s:0:"";s:3:"css";s:86:"display: block;font-size: 13px;line-height: normal;padding: 5px 10px;text-align: left;";s:9:"css_hover";s:0:"";s:14:"read_more_text";s:0:"";s:11:"link_target";s:6:"_blank";}}i:7;a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}}]]></wp:meta_value>
1284
+ </wp:postmeta>
1285
+ <wp:postmeta>
1286
+ <wp:meta_key><![CDATA[custom_scripts]]></wp:meta_key>
1287
+ <wp:meta_value><![CDATA[a:2:{s:10:"custom_css";s:122:".__ID__ a{text-decoration:none}
1288
+ .__ID__ {
1289
+ vertical-align: top;
1290
+ }
1291
+ .__ID__ .layer-media{}
1292
+ .__ID__ .layer-content {
1293
+ }";s:9:"custom_js";s:0:"";}]]></wp:meta_value>
1294
+ </wp:postmeta>
1295
+ <wp:postmeta>
1296
+ <wp:meta_key><![CDATA[layout_options]]></wp:meta_key>
1297
+ <wp:meta_value><![CDATA[a:1:{s:18:"layout_preview_img";s:0:"";}]]></wp:meta_value>
1298
+ </wp:postmeta>
1299
+ <wp:postmeta>
1300
+ <wp:meta_key><![CDATA[_wp_trash_meta_status]]></wp:meta_key>
1301
+ <wp:meta_value><![CDATA[publish]]></wp:meta_value>
1302
+ </wp:postmeta>
1303
+ <wp:postmeta>
1304
+ <wp:meta_key><![CDATA[_wp_trash_meta_time]]></wp:meta_key>
1305
+ <wp:meta_value><![CDATA[1588095094]]></wp:meta_value>
1306
+ </wp:postmeta>
1307
+ <wp:postmeta>
1308
+ <wp:meta_key><![CDATA[_wp_desired_post_slug]]></wp:meta_key>
1309
+ <wp:meta_value><![CDATA[my-post-grid-flat-flat]]></wp:meta_value>
1310
+ </wp:postmeta>
1311
+ </item>
1312
+ <item>
1313
+ <title>My Post Grid - flat - flat</title>
1314
+ <link>http://localhost/wp/post_grid_layout/my-post-grid-flat-flat-2__trashed/</link>
1315
+ <pubDate>Tue, 28 Apr 2020 09:01:07 +0000</pubDate>
1316
+ <dc:creator><![CDATA[admin]]></dc:creator>
1317
+ <guid isPermaLink="false">http://localhost/wp/post_grid_layout/my-post-grid-flat-flat-2/</guid>
1318
+ <description></description>
1319
+ <content:encoded><![CDATA[]]></content:encoded>
1320
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1321
+ <wp:post_id>51726</wp:post_id>
1322
+ <wp:post_date><![CDATA[2020-04-28 09:01:07]]></wp:post_date>
1323
+ <wp:post_date_gmt><![CDATA[2020-04-28 09:01:07]]></wp:post_date_gmt>
1324
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
1325
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1326
+ <wp:post_name><![CDATA[my-post-grid-flat-flat-2__trashed]]></wp:post_name>
1327
+ <wp:status><![CDATA[trash]]></wp:status>
1328
+ <wp:post_parent>0</wp:post_parent>
1329
+ <wp:menu_order>0</wp:menu_order>
1330
+ <wp:post_type><![CDATA[post_grid_layout]]></wp:post_type>
1331
+ <wp:post_password><![CDATA[]]></wp:post_password>
1332
+ <wp:is_sticky>0</wp:is_sticky>
1333
+ <wp:postmeta>
1334
+ <wp:meta_key><![CDATA[layout_elements_data]]></wp:meta_key>
1335
+ <wp:meta_value><![CDATA[a:8:{i:0;a:1:{s:13:"wrapper_start";a:3:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:11:"layer-media";s:8:"css_idle";s:0:"";}}i:1;a:1:{s:5:"media";a:4:{s:12:"media_height";a:6:{s:10:"large_type";s:11:"auto_height";s:5:"large";s:5:"250px";s:11:"medium_type";s:11:"auto_height";s:6:"medium";s:5:"250px";s:10:"small_type";s:11:"auto_height";s:5:"small";s:5:"250px";}s:12:"media_source";a:1:{s:14:"featured_image";a:2:{s:6:"enable";s:3:"yes";s:7:"link_to";s:4:"full";}}s:6:"margin";s:0:"";s:7:"padding";s:0:"";}}i:2;a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}i:3;a:1:{s:13:"wrapper_start";a:2:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:13:"layer-content";}}i:4;a:1:{s:5:"title";a:4:{s:12:"custom_class";s:0:"";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:"";s:10:"char_limit";s:2:"20";}}i:5;a:1:{s:7:"excerpt";a:4:{s:12:"custom_class";s:0:"";s:3:"css";s:86:"display: block;font-size: 13px;line-height: normal;padding: 5px 10px;text-align: left;";s:9:"css_hover";s:0:"";s:10:"char_limit";s:2:"20";}}i:6;a:1:{s:9:"read_more";a:5:{s:12:"custom_class";s:0:"";s:3:"css";s:86:"display: block;font-size: 13px;line-height: normal;padding: 5px 10px;text-align: left;";s:9:"css_hover";s:0:"";s:14:"read_more_text";s:0:"";s:11:"link_target";s:6:"_blank";}}i:7;a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}}]]></wp:meta_value>
1336
+ </wp:postmeta>
1337
+ <wp:postmeta>
1338
+ <wp:meta_key><![CDATA[custom_scripts]]></wp:meta_key>
1339
+ <wp:meta_value><![CDATA[a:2:{s:10:"custom_css";s:122:".__ID__ a{text-decoration:none}
1340
+ .__ID__ {
1341
+ vertical-align: top;
1342
+ }
1343
+ .__ID__ .layer-media{}
1344
+ .__ID__ .layer-content {
1345
+ }";s:9:"custom_js";s:0:"";}]]></wp:meta_value>
1346
+ </wp:postmeta>
1347
+ <wp:postmeta>
1348
+ <wp:meta_key><![CDATA[layout_options]]></wp:meta_key>
1349
+ <wp:meta_value><![CDATA[a:1:{s:18:"layout_preview_img";s:0:"";}]]></wp:meta_value>
1350
+ </wp:postmeta>
1351
+ <wp:postmeta>
1352
+ <wp:meta_key><![CDATA[_wp_trash_meta_status]]></wp:meta_key>
1353
+ <wp:meta_value><![CDATA[publish]]></wp:meta_value>
1354
+ </wp:postmeta>
1355
+ <wp:postmeta>
1356
+ <wp:meta_key><![CDATA[_wp_trash_meta_time]]></wp:meta_key>
1357
+ <wp:meta_value><![CDATA[1588095094]]></wp:meta_value>
1358
+ </wp:postmeta>
1359
+ <wp:postmeta>
1360
+ <wp:meta_key><![CDATA[_wp_desired_post_slug]]></wp:meta_key>
1361
+ <wp:meta_value><![CDATA[my-post-grid-flat-flat-2]]></wp:meta_value>
1362
+ </wp:postmeta>
1363
+ </item>
1364
+ <item>
1365
+ <title>My Post Grid - flat - flat</title>
1366
+ <link>http://localhost/wp/post_grid_layout/my-post-grid-flat-flat-3__trashed/</link>
1367
+ <pubDate>Tue, 28 Apr 2020 09:38:32 +0000</pubDate>
1368
+ <dc:creator><![CDATA[admin]]></dc:creator>
1369
+ <guid isPermaLink="false">http://localhost/wp/post_grid_layout/my-post-grid-flat-flat-3/</guid>
1370
+ <description></description>
1371
+ <content:encoded><![CDATA[]]></content:encoded>
1372
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1373
+ <wp:post_id>51727</wp:post_id>
1374
+ <wp:post_date><![CDATA[2020-04-28 09:38:32]]></wp:post_date>
1375
+ <wp:post_date_gmt><![CDATA[2020-04-28 09:38:32]]></wp:post_date_gmt>
1376
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
1377
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1378
+ <wp:post_name><![CDATA[my-post-grid-flat-flat-3__trashed]]></wp:post_name>
1379
+ <wp:status><![CDATA[trash]]></wp:status>
1380
+ <wp:post_parent>0</wp:post_parent>
1381
+ <wp:menu_order>0</wp:menu_order>
1382
+ <wp:post_type><![CDATA[post_grid_layout]]></wp:post_type>
1383
+ <wp:post_password><![CDATA[]]></wp:post_password>
1384
+ <wp:is_sticky>0</wp:is_sticky>
1385
+ <wp:postmeta>
1386
+ <wp:meta_key><![CDATA[layout_elements_data]]></wp:meta_key>
1387
+ <wp:meta_value><![CDATA[a:8:{i:0;a:1:{s:13:"wrapper_start";a:3:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:11:"layer-media";s:8:"css_idle";s:0:"";}}i:1;a:1:{s:5:"media";a:4:{s:12:"media_height";a:6:{s:10:"large_type";s:11:"auto_height";s:5:"large";s:5:"250px";s:11:"medium_type";s:11:"auto_height";s:6:"medium";s:5:"250px";s:10:"small_type";s:11:"auto_height";s:5:"small";s:5:"250px";}s:12:"media_source";a:1:{s:14:"featured_image";a:2:{s:6:"enable";s:3:"yes";s:7:"link_to";s:4:"full";}}s:6:"margin";s:0:"";s:7:"padding";s:0:"";}}i:2;a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}i:3;a:1:{s:13:"wrapper_start";a:2:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:13:"layer-content";}}i:4;a:1:{s:5:"title";a:4:{s:12:"custom_class";s:0:"";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:"";s:10:"char_limit";s:2:"20";}}i:5;a:1:{s:7:"excerpt";a:4:{s:12:"custom_class";s:0:"";s:3:"css";s:86:"display: block;font-size: 13px;line-height: normal;padding: 5px 10px;text-align: left;";s:9:"css_hover";s:0:"";s:10:"char_limit";s:2:"20";}}i:6;a:1:{s:9:"read_more";a:5:{s:12:"custom_class";s:0:"";s:3:"css";s:86:"display: block;font-size: 13px;line-height: normal;padding: 5px 10px;text-align: left;";s:9:"css_hover";s:0:"";s:14:"read_more_text";s:0:"";s:11:"link_target";s:6:"_blank";}}i:7;a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}}]]></wp:meta_value>
1388
+ </wp:postmeta>
1389
+ <wp:postmeta>
1390
+ <wp:meta_key><![CDATA[custom_scripts]]></wp:meta_key>
1391
+ <wp:meta_value><![CDATA[a:2:{s:10:"custom_css";s:122:".__ID__ a{text-decoration:none}
1392
+ .__ID__ {
1393
+ vertical-align: top;
1394
+ }
1395
+ .__ID__ .layer-media{}
1396
+ .__ID__ .layer-content {
1397
+ }";s:9:"custom_js";s:0:"";}]]></wp:meta_value>
1398
+ </wp:postmeta>
1399
+ <wp:postmeta>
1400
+ <wp:meta_key><![CDATA[layout_options]]></wp:meta_key>
1401
+ <wp:meta_value><![CDATA[a:1:{s:18:"layout_preview_img";s:0:"";}]]></wp:meta_value>
1402
+ </wp:postmeta>
1403
+ <wp:postmeta>
1404
+ <wp:meta_key><![CDATA[_wp_trash_meta_status]]></wp:meta_key>
1405
+ <wp:meta_value><![CDATA[publish]]></wp:meta_value>
1406
+ </wp:postmeta>
1407
+ <wp:postmeta>
1408
+ <wp:meta_key><![CDATA[_wp_trash_meta_time]]></wp:meta_key>
1409
+ <wp:meta_value><![CDATA[1588095094]]></wp:meta_value>
1410
+ </wp:postmeta>
1411
+ <wp:postmeta>
1412
+ <wp:meta_key><![CDATA[_wp_desired_post_slug]]></wp:meta_key>
1413
+ <wp:meta_value><![CDATA[my-post-grid-flat-flat-3]]></wp:meta_value>
1414
+ </wp:postmeta>
1415
+ </item>
1416
+ <item>
1417
+ <title>My Post Grid - flat - flat</title>
1418
+ <link>http://localhost/wp/post_grid_layout/my-post-grid-flat-flat-4__trashed/</link>
1419
+ <pubDate>Tue, 28 Apr 2020 16:25:22 +0000</pubDate>
1420
+ <dc:creator><![CDATA[admin]]></dc:creator>
1421
+ <guid isPermaLink="false">http://localhost/wp/post_grid_layout/my-post-grid-flat-flat-4/</guid>
1422
+ <description></description>
1423
+ <content:encoded><![CDATA[]]></content:encoded>
1424
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1425
+ <wp:post_id>51754</wp:post_id>
1426
+ <wp:post_date><![CDATA[2020-04-28 16:25:22]]></wp:post_date>
1427
+ <wp:post_date_gmt><![CDATA[2020-04-28 16:25:22]]></wp:post_date_gmt>
1428
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
1429
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1430
+ <wp:post_name><![CDATA[my-post-grid-flat-flat-4__trashed]]></wp:post_name>
1431
+ <wp:status><![CDATA[trash]]></wp:status>
1432
+ <wp:post_parent>0</wp:post_parent>
1433
+ <wp:menu_order>0</wp:menu_order>
1434
+ <wp:post_type><![CDATA[post_grid_layout]]></wp:post_type>
1435
+ <wp:post_password><![CDATA[]]></wp:post_password>
1436
+ <wp:is_sticky>0</wp:is_sticky>
1437
+ <wp:postmeta>
1438
+ <wp:meta_key><![CDATA[layout_elements_data]]></wp:meta_key>
1439
+ <wp:meta_value><![CDATA[a:8:{i:0;a:1:{s:13:"wrapper_start";a:5:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:11:"layer-media";s:6:"margin";s:0:"";s:3:"css";s:0:"";s:9:"css_hover";s:0:"";}}i:1;a:1:{s:5:"media";a:6:{s:12:"media_source";a:3:{s:11:"empty_thumb";a:3:{s:6:"enable";s:3:"yes";s:7:"link_to";s:9:"post_link";s:17:"default_thumb_src";s:0:"";}s:14:"featured_image";a:3:{s:6:"enable";s:2:"no";s:10:"image_size";s:5:"large";s:7:"link_to";s:9:"post_link";}s:11:"first_image";a:2:{s:6:"enable";s:2:"no";s:7:"link_to";s:9:"post_link";}}s:12:"media_height";a:6:{s:10:"large_type";s:12:"fixed_height";s:5:"large";s:4:"80px";s:11:"medium_type";s:11:"auto_height";s:6:"medium";s:5:"250px";s:10:"small_type";s:11:"auto_height";s:5:"small";s:5:"250px";}s:6:"margin";s:0:"";s:7:"padding";s:0:"";s:3:"css";s:0:"";s:9:"css_hover";s:0:"";}}i:2;a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}i:3;a:1:{s:13:"wrapper_start";a:5:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:13:"layer-content";s:6:"margin";s:0:"";s:3:"css";s:0:"";s:9:"css_hover";s:0:"";}}i:4;a:1:{s:5:"title";a:10:{s:7:"link_to";s:9:"post_link";s:11:"link_target";s:6:"_blank";s:10:"char_limit";s:2:"20";s:5:"color";s:0:"";s:9:"font_size";s:4:"20px";s:11:"font_family";s:0:"";s:6:"margin";s:6:"10px 0";s:10:"text_align";s:4:"left";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:5;a:1:{s:7:"excerpt";a:9:{s:10:"char_limit";s:2:"20";s:14:"read_more_text";s:0:"";s:11:"link_target";s:6:"_blank";s:6:"margin";s:6:"10px 0";s:5:"color";s:0:"";s:10:"text_align";s:4:"left";s:9:"font_size";s:4:"15px";s:3:"css";s:86:"display: block;font-size: 13px;line-height: normal;padding: 5px 10px;text-align: left;";s:9:"css_hover";s:0:"";}}i:6;a:1:{s:9:"read_more";a:9:{s:14:"read_more_text";s:0:"";s:7:"link_to";s:4:"none";s:11:"link_target";s:6:"_blank";s:5:"color";s:0:"";s:6:"margin";s:0:"";s:9:"font_size";s:0:"";s:10:"text_align";s:4:"left";s:3:"css";s:86:"display: block;font-size: 13px;line-height: normal;padding: 5px 10px;text-align: left;";s:9:"css_hover";s:0:"";}}i:7;a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}}]]></wp:meta_value>
1440
+ </wp:postmeta>
1441
+ <wp:postmeta>
1442
+ <wp:meta_key><![CDATA[custom_scripts]]></wp:meta_key>
1443
+ <wp:meta_value><![CDATA[a:2:{s:10:"custom_css";s:122:".__ID__ a{text-decoration:none}
1444
+ .__ID__ {
1445
+ vertical-align: top;
1446
+ }
1447
+ .__ID__ .layer-media{}
1448
+ .__ID__ .layer-content {
1449
+ }";s:9:"custom_js";s:0:"";}]]></wp:meta_value>
1450
+ </wp:postmeta>
1451
+ <wp:postmeta>
1452
+ <wp:meta_key><![CDATA[layout_options]]></wp:meta_key>
1453
+ <wp:meta_value><![CDATA[a:2:{s:17:"preview_post_type";s:4:"post";s:18:"layout_preview_img";s:0:"";}]]></wp:meta_value>
1454
+ </wp:postmeta>
1455
+ <wp:postmeta>
1456
+ <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
1457
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
1458
+ </wp:postmeta>
1459
+ <wp:postmeta>
1460
+ <wp:meta_key><![CDATA[_wp_trash_meta_status]]></wp:meta_key>
1461
+ <wp:meta_value><![CDATA[publish]]></wp:meta_value>
1462
+ </wp:postmeta>
1463
+ <wp:postmeta>
1464
+ <wp:meta_key><![CDATA[_wp_trash_meta_time]]></wp:meta_key>
1465
+ <wp:meta_value><![CDATA[1588095093]]></wp:meta_value>
1466
+ </wp:postmeta>
1467
+ <wp:postmeta>
1468
+ <wp:meta_key><![CDATA[_wp_desired_post_slug]]></wp:meta_key>
1469
+ <wp:meta_value><![CDATA[my-post-grid-flat-flat-4]]></wp:meta_value>
1470
+ </wp:postmeta>
1471
+ </item>
1472
+ <item>
1473
+ <title>My Post Grid - flat - flat</title>
1474
+ <link>http://localhost/wp/post_grid_layout/my-post-grid-flat-flat-5__trashed/</link>
1475
+ <pubDate>Tue, 28 Apr 2020 17:11:42 +0000</pubDate>
1476
+ <dc:creator><![CDATA[admin]]></dc:creator>
1477
+ <guid isPermaLink="false">http://localhost/wp/post_grid_layout/my-post-grid-flat-flat-5/</guid>
1478
+ <description></description>
1479
+ <content:encoded><![CDATA[]]></content:encoded>
1480
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1481
+ <wp:post_id>51755</wp:post_id>
1482
+ <wp:post_date><![CDATA[2020-04-28 17:11:42]]></wp:post_date>
1483
+ <wp:post_date_gmt><![CDATA[2020-04-28 17:11:42]]></wp:post_date_gmt>
1484
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
1485
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1486
+ <wp:post_name><![CDATA[my-post-grid-flat-flat-5__trashed]]></wp:post_name>
1487
+ <wp:status><![CDATA[trash]]></wp:status>
1488
+ <wp:post_parent>0</wp:post_parent>
1489
+ <wp:menu_order>0</wp:menu_order>
1490
+ <wp:post_type><![CDATA[post_grid_layout]]></wp:post_type>
1491
+ <wp:post_password><![CDATA[]]></wp:post_password>
1492
+ <wp:is_sticky>0</wp:is_sticky>
1493
+ <wp:postmeta>
1494
+ <wp:meta_key><![CDATA[layout_elements_data]]></wp:meta_key>
1495
+ <wp:meta_value><![CDATA[a:8:{i:0;a:1:{s:13:"wrapper_start";a:3:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:11:"layer-media";s:8:"css_idle";s:0:"";}}i:1;a:1:{s:5:"media";a:4:{s:12:"media_height";a:6:{s:10:"large_type";s:11:"auto_height";s:5:"large";s:5:"250px";s:11:"medium_type";s:11:"auto_height";s:6:"medium";s:5:"250px";s:10:"small_type";s:11:"auto_height";s:5:"small";s:5:"250px";}s:12:"media_source";a:1:{s:14:"featured_image";a:2:{s:6:"enable";s:3:"yes";s:7:"link_to";s:4:"full";}}s:6:"margin";s:0:"";s:7:"padding";s:0:"";}}i:2;a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}i:3;a:1:{s:13:"wrapper_start";a:2:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:13:"layer-content";}}i:4;a:1:{s:5:"title";a:4:{s:12:"custom_class";s:0:"";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:"";s:10:"char_limit";s:2:"20";}}i:5;a:1:{s:7:"excerpt";a:4:{s:12:"custom_class";s:0:"";s:3:"css";s:86:"display: block;font-size: 13px;line-height: normal;padding: 5px 10px;text-align: left;";s:9:"css_hover";s:0:"";s:10:"char_limit";s:2:"20";}}i:6;a:1:{s:9:"read_more";a:5:{s:12:"custom_class";s:0:"";s:3:"css";s:86:"display: block;font-size: 13px;line-height: normal;padding: 5px 10px;text-align: left;";s:9:"css_hover";s:0:"";s:14:"read_more_text";s:0:"";s:11:"link_target";s:6:"_blank";}}i:7;a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}}]]></wp:meta_value>
1496
+ </wp:postmeta>
1497
+ <wp:postmeta>
1498
+ <wp:meta_key><![CDATA[custom_scripts]]></wp:meta_key>
1499
+ <wp:meta_value><![CDATA[a:2:{s:10:"custom_css";s:122:".__ID__ a{text-decoration:none}
1500
+ .__ID__ {
1501
+ vertical-align: top;
1502
+ }
1503
+ .__ID__ .layer-media{}
1504
+ .__ID__ .layer-content {
1505
+ }";s:9:"custom_js";s:0:"";}]]></wp:meta_value>
1506
+ </wp:postmeta>
1507
+ <wp:postmeta>
1508
+ <wp:meta_key><![CDATA[layout_options]]></wp:meta_key>
1509
+ <wp:meta_value><![CDATA[a:1:{s:18:"layout_preview_img";s:0:"";}]]></wp:meta_value>
1510
+ </wp:postmeta>
1511
+ <wp:postmeta>
1512
+ <wp:meta_key><![CDATA[_wp_trash_meta_status]]></wp:meta_key>
1513
+ <wp:meta_value><![CDATA[publish]]></wp:meta_value>
1514
+ </wp:postmeta>
1515
+ <wp:postmeta>
1516
+ <wp:meta_key><![CDATA[_wp_trash_meta_time]]></wp:meta_key>
1517
+ <wp:meta_value><![CDATA[1588095093]]></wp:meta_value>
1518
+ </wp:postmeta>
1519
+ <wp:postmeta>
1520
+ <wp:meta_key><![CDATA[_wp_desired_post_slug]]></wp:meta_key>
1521
+ <wp:meta_value><![CDATA[my-post-grid-flat-flat-5]]></wp:meta_value>
1522
+ </wp:postmeta>
1523
+ </item>
1524
+ <item>
1525
+ <title>My Post Grid - flat - flat</title>
1526
+ <link>http://localhost/wp/post_grid_layout/my-post-grid-flat-flat-6__trashed/</link>
1527
+ <pubDate>Tue, 28 Apr 2020 17:28:29 +0000</pubDate>
1528
+ <dc:creator><![CDATA[admin]]></dc:creator>
1529
+ <guid isPermaLink="false">http://localhost/wp/post_grid_layout/my-post-grid-flat-flat-6/</guid>
1530
+ <description></description>
1531
+ <content:encoded><![CDATA[]]></content:encoded>
1532
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1533
+ <wp:post_id>51756</wp:post_id>
1534
+ <wp:post_date><![CDATA[2020-04-28 17:28:29]]></wp:post_date>
1535
+ <wp:post_date_gmt><![CDATA[2020-04-28 17:28:29]]></wp:post_date_gmt>
1536
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
1537
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1538
+ <wp:post_name><![CDATA[my-post-grid-flat-flat-6__trashed]]></wp:post_name>
1539
+ <wp:status><![CDATA[trash]]></wp:status>
1540
+ <wp:post_parent>0</wp:post_parent>
1541
+ <wp:menu_order>0</wp:menu_order>
1542
+ <wp:post_type><![CDATA[post_grid_layout]]></wp:post_type>
1543
+ <wp:post_password><![CDATA[]]></wp:post_password>
1544
+ <wp:is_sticky>0</wp:is_sticky>
1545
+ <wp:postmeta>
1546
+ <wp:meta_key><![CDATA[layout_elements_data]]></wp:meta_key>
1547
+ <wp:meta_value><![CDATA[a:8:{i:0;a:1:{s:13:"wrapper_start";a:3:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:11:"layer-media";s:8:"css_idle";s:0:"";}}i:1;a:1:{s:5:"media";a:4:{s:12:"media_height";a:6:{s:10:"large_type";s:11:"auto_height";s:5:"large";s:5:"250px";s:11:"medium_type";s:11:"auto_height";s:6:"medium";s:5:"250px";s:10:"small_type";s:11:"auto_height";s:5:"small";s:5:"250px";}s:12:"media_source";a:1:{s:14:"featured_image";a:2:{s:6:"enable";s:3:"yes";s:7:"link_to";s:4:"full";}}s:6:"margin";s:0:"";s:7:"padding";s:0:"";}}i:2;a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}i:3;a:1:{s:13:"wrapper_start";a:2:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:13:"layer-content";}}i:4;a:1:{s:5:"title";a:4:{s:12:"custom_class";s:0:"";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:"";s:10:"char_limit";s:2:"20";}}i:5;a:1:{s:7:"excerpt";a:4:{s:12:"custom_class";s:0:"";s:3:"css";s:86:"display: block;font-size: 13px;line-height: normal;padding: 5px 10px;text-align: left;";s:9:"css_hover";s:0:"";s:10:"char_limit";s:2:"20";}}i:6;a:1:{s:9:"read_more";a:5:{s:12:"custom_class";s:0:"";s:3:"css";s:86:"display: block;font-size: 13px;line-height: normal;padding: 5px 10px;text-align: left;";s:9:"css_hover";s:0:"";s:14:"read_more_text";s:0:"";s:11:"link_target";s:6:"_blank";}}i:7;a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}}]]></wp:meta_value>
1548
+ </wp:postmeta>
1549
+ <wp:postmeta>
1550
+ <wp:meta_key><![CDATA[custom_scripts]]></wp:meta_key>
1551
+ <wp:meta_value><![CDATA[a:2:{s:10:"custom_css";s:122:".__ID__ a{text-decoration:none}
1552
+ .__ID__ {
1553
+ vertical-align: top;
1554
+ }
1555
+ .__ID__ .layer-media{}
1556
+ .__ID__ .layer-content {
1557
+ }";s:9:"custom_js";s:0:"";}]]></wp:meta_value>
1558
+ </wp:postmeta>
1559
+ <wp:postmeta>
1560
+ <wp:meta_key><![CDATA[layout_options]]></wp:meta_key>
1561
+ <wp:meta_value><![CDATA[a:1:{s:18:"layout_preview_img";s:0:"";}]]></wp:meta_value>
1562
+ </wp:postmeta>
1563
+ <wp:postmeta>
1564
+ <wp:meta_key><![CDATA[_wp_trash_meta_status]]></wp:meta_key>
1565
+ <wp:meta_value><![CDATA[publish]]></wp:meta_value>
1566
+ </wp:postmeta>
1567
+ <wp:postmeta>
1568
+ <wp:meta_key><![CDATA[_wp_trash_meta_time]]></wp:meta_key>
1569
+ <wp:meta_value><![CDATA[1588095093]]></wp:meta_value>
1570
+ </wp:postmeta>
1571
+ <wp:postmeta>
1572
+ <wp:meta_key><![CDATA[_wp_desired_post_slug]]></wp:meta_key>
1573
+ <wp:meta_value><![CDATA[my-post-grid-flat-flat-6]]></wp:meta_value>
1574
+ </wp:postmeta>
1575
+ </item>
1576
+ <item>
1577
+ <title>My Post Grid - contentbottom - flat-right</title>
1578
+ <link>http://localhost/wp/post_grid_layout/my-post-grid-contentbottom-flat-right__trashed/</link>
1579
+ <pubDate>Tue, 28 Apr 2020 18:11:26 +0000</pubDate>
1580
+ <dc:creator><![CDATA[admin]]></dc:creator>
1581
+ <guid isPermaLink="false">http://localhost/wp/post_grid_layout/my-post-grid-contentbottom-flat-right/</guid>
1582
+ <description></description>
1583
+ <content:encoded><![CDATA[]]></content:encoded>
1584
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1585
+ <wp:post_id>51758</wp:post_id>
1586
+ <wp:post_date><![CDATA[2020-04-28 18:11:26]]></wp:post_date>
1587
+ <wp:post_date_gmt><![CDATA[2020-04-28 18:11:26]]></wp:post_date_gmt>
1588
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
1589
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1590
+ <wp:post_name><![CDATA[my-post-grid-contentbottom-flat-right__trashed]]></wp:post_name>
1591
+ <wp:status><![CDATA[trash]]></wp:status>
1592
+ <wp:post_parent>0</wp:post_parent>
1593
+ <wp:menu_order>0</wp:menu_order>
1594
+ <wp:post_type><![CDATA[post_grid_layout]]></wp:post_type>
1595
+ <wp:post_password><![CDATA[]]></wp:post_password>
1596
+ <wp:is_sticky>0</wp:is_sticky>
1597
+ <wp:postmeta>
1598
+ <wp:meta_key><![CDATA[layout_elements_data]]></wp:meta_key>
1599
+ <wp:meta_value><![CDATA[a:8:{i:0;a:1:{s:13:"wrapper_start";a:3:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:11:"layer-media";s:8:"css_idle";s:0:"";}}i:1;a:1:{s:5:"media";a:4:{s:12:"media_height";a:6:{s:10:"large_type";s:11:"auto_height";s:5:"large";s:5:"250px";s:11:"medium_type";s:11:"auto_height";s:6:"medium";s:5:"250px";s:10:"small_type";s:11:"auto_height";s:5:"small";s:5:"250px";}s:12:"media_source";a:1:{s:14:"featured_image";a:2:{s:6:"enable";s:3:"yes";s:7:"link_to";s:4:"full";}}s:6:"margin";s:0:"";s:7:"padding";s:0:"";}}i:2;a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}i:3;a:1:{s:13:"wrapper_start";a:2:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:13:"layer-content";}}i:4;a:1:{s:5:"title";a:4:{s:12:"custom_class";s:0:"";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:"";s:10:"char_limit";s:2:"20";}}i:5;a:1:{s:7:"excerpt";a:4:{s:12:"custom_class";s:0:"";s:3:"css";s:67:"display: block;font-size: 12px;padding: 5px 10px;text-align: right;";s:9:"css_hover";s:0:"";s:10:"char_limit";s:2:"20";}}i:6;a:1:{s:9:"read_more";a:5:{s:12:"custom_class";s:0:"";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:14:"read_more_text";s:0:"";s:11:"link_target";s:0:"";}}i:7;a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}}]]></wp:meta_value>
1600
+ </wp:postmeta>
1601
+ <wp:postmeta>
1602
+ <wp:meta_key><![CDATA[custom_scripts]]></wp:meta_key>
1603
+ <wp:meta_value><![CDATA[a:2:{s:10:"custom_css";s:605:".__ID__ a{text-decoration:none}
1604
+ .__ID__ {
1605
+ overflow: hidden;
1606
+ position: relative;
1607
+ vertical-align: top;
1608
+ }
1609
+ .__ID__:hover .layer-media {
1610
+ z-index:9;
1611
+ }
1612
+ .__ID__ .layer-media {
1613
+ -webkit-transition: all 0.4s ease 0s;
1614
+ transition: all 0.4s ease 0s;
1615
+ left: 0;
1616
+ top: 0;
1617
+ width: 100%;
1618
+ }
1619
+ .__ID__:hover .layer-content{
1620
+ }
1621
+ .__ID__ .layer-content {
1622
+ background: rgba(0, 0, 0, 0.3) none repeat scroll 0 0;
1623
+ bottom: 0;
1624
+ color: rgb(255, 255, 255);
1625
+ left: 0;
1626
+ position: absolute;
1627
+ -webkit-transition: all 1s ease 0s;
1628
+ transition: all 1s ease 0s;
1629
+ width: 100%;
1630
+ padding: 10px;
1631
+ }
1632
+ ";s:9:"custom_js";s:0:"";}]]></wp:meta_value>
1633
+ </wp:postmeta>
1634
+ <wp:postmeta>
1635
+ <wp:meta_key><![CDATA[layout_options]]></wp:meta_key>
1636
+ <wp:meta_value><![CDATA[a:1:{s:18:"layout_preview_img";s:0:"";}]]></wp:meta_value>
1637
+ </wp:postmeta>
1638
+ <wp:postmeta>
1639
+ <wp:meta_key><![CDATA[_wp_trash_meta_status]]></wp:meta_key>
1640
+ <wp:meta_value><![CDATA[publish]]></wp:meta_value>
1641
+ </wp:postmeta>
1642
+ <wp:postmeta>
1643
+ <wp:meta_key><![CDATA[_wp_trash_meta_time]]></wp:meta_key>
1644
+ <wp:meta_value><![CDATA[1588158394]]></wp:meta_value>
1645
+ </wp:postmeta>
1646
+ <wp:postmeta>
1647
+ <wp:meta_key><![CDATA[_wp_desired_post_slug]]></wp:meta_key>
1648
+ <wp:meta_value><![CDATA[my-post-grid-contentbottom-flat-right]]></wp:meta_value>
1649
+ </wp:postmeta>
1650
+ </item>
1651
+ <item>
1652
+ <title>My Post Grid - contentbottom - flat-right</title>
1653
+ <link>http://localhost/wp/post_grid_layout/my-post-grid-contentbottom-flat-right-2__trashed/</link>
1654
+ <pubDate>Tue, 28 Apr 2020 18:25:20 +0000</pubDate>
1655
+ <dc:creator><![CDATA[admin]]></dc:creator>
1656
+ <guid isPermaLink="false">http://localhost/wp/post_grid_layout/my-post-grid-contentbottom-flat-right-2/</guid>
1657
+ <description></description>
1658
+ <content:encoded><![CDATA[]]></content:encoded>
1659
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1660
+ <wp:post_id>51759</wp:post_id>
1661
+ <wp:post_date><![CDATA[2020-04-28 18:25:20]]></wp:post_date>
1662
+ <wp:post_date_gmt><![CDATA[2020-04-28 18:25:20]]></wp:post_date_gmt>
1663
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
1664
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1665
+ <wp:post_name><![CDATA[my-post-grid-contentbottom-flat-right-2__trashed]]></wp:post_name>
1666
+ <wp:status><![CDATA[trash]]></wp:status>
1667
+ <wp:post_parent>0</wp:post_parent>
1668
+ <wp:menu_order>0</wp:menu_order>
1669
+ <wp:post_type><![CDATA[post_grid_layout]]></wp:post_type>
1670
+ <wp:post_password><![CDATA[]]></wp:post_password>
1671
+ <wp:is_sticky>0</wp:is_sticky>
1672
+ <wp:postmeta>
1673
+ <wp:meta_key><![CDATA[layout_elements_data]]></wp:meta_key>
1674
+ <wp:meta_value><![CDATA[a:8:{i:0;a:1:{s:13:"wrapper_start";a:3:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:11:"layer-media";s:8:"css_idle";s:0:"";}}i:1;a:1:{s:5:"media";a:4:{s:12:"media_height";a:6:{s:10:"large_type";s:11:"auto_height";s:5:"large";s:5:"250px";s:11:"medium_type";s:11:"auto_height";s:6:"medium";s:5:"250px";s:10:"small_type";s:11:"auto_height";s:5:"small";s:5:"250px";}s:12:"media_source";a:1:{s:14:"featured_image";a:2:{s:6:"enable";s:3:"yes";s:7:"link_to";s:4:"full";}}s:6:"margin";s:0:"";s:7:"padding";s:0:"";}}i:2;a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}i:3;a:1:{s:13:"wrapper_start";a:2:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:13:"layer-content";}}i:4;a:1:{s:5:"title";a:4:{s:12:"custom_class";s:0:"";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:"";s:10:"char_limit";s:2:"20";}}i:5;a:1:{s:7:"excerpt";a:4:{s:12:"custom_class";s:0:"";s:3:"css";s:67:"display: block;font-size: 12px;padding: 5px 10px;text-align: right;";s:9:"css_hover";s:0:"";s:10:"char_limit";s:2:"20";}}i:6;a:1:{s:9:"read_more";a:5:{s:12:"custom_class";s:0:"";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:14:"read_more_text";s:0:"";s:11:"link_target";s:0:"";}}i:7;a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}}]]></wp:meta_value>
1675
+ </wp:postmeta>
1676
+ <wp:postmeta>
1677
+ <wp:meta_key><![CDATA[custom_scripts]]></wp:meta_key>
1678
+ <wp:meta_value><![CDATA[a:2:{s:10:"custom_css";s:605:".__ID__ a{text-decoration:none}
1679
+ .__ID__ {
1680
+ overflow: hidden;
1681
+ position: relative;
1682
+ vertical-align: top;
1683
+ }
1684
+ .__ID__:hover .layer-media {
1685
+ z-index:9;
1686
+ }
1687
+ .__ID__ .layer-media {
1688
+ -webkit-transition: all 0.4s ease 0s;
1689
+ transition: all 0.4s ease 0s;
1690
+ left: 0;
1691
+ top: 0;
1692
+ width: 100%;
1693
+ }
1694
+ .__ID__:hover .layer-content{
1695
+ }
1696
+ .__ID__ .layer-content {
1697
+ background: rgba(0, 0, 0, 0.3) none repeat scroll 0 0;
1698
+ bottom: 0;
1699
+ color: rgb(255, 255, 255);
1700
+ left: 0;
1701
+ position: absolute;
1702
+ -webkit-transition: all 1s ease 0s;
1703
+ transition: all 1s ease 0s;
1704
+ width: 100%;
1705
+ padding: 10px;
1706
+ }
1707
+ ";s:9:"custom_js";s:0:"";}]]></wp:meta_value>
1708
+ </wp:postmeta>
1709
+ <wp:postmeta>
1710
+ <wp:meta_key><![CDATA[layout_options]]></wp:meta_key>
1711
+ <wp:meta_value><![CDATA[a:1:{s:18:"layout_preview_img";s:0:"";}]]></wp:meta_value>
1712
+ </wp:postmeta>
1713
+ <wp:postmeta>
1714
+ <wp:meta_key><![CDATA[_wp_trash_meta_status]]></wp:meta_key>
1715
+ <wp:meta_value><![CDATA[publish]]></wp:meta_value>
1716
+ </wp:postmeta>
1717
+ <wp:postmeta>
1718
+ <wp:meta_key><![CDATA[_wp_trash_meta_time]]></wp:meta_key>
1719
+ <wp:meta_value><![CDATA[1588158394]]></wp:meta_value>
1720
+ </wp:postmeta>
1721
+ <wp:postmeta>
1722
+ <wp:meta_key><![CDATA[_wp_desired_post_slug]]></wp:meta_key>
1723
+ <wp:meta_value><![CDATA[my-post-grid-contentbottom-flat-right-2]]></wp:meta_value>
1724
+ </wp:postmeta>
1725
+ </item>
1726
+ <item>
1727
+ <title>Post Grid Old - flat - flat</title>
1728
+ <link>http://localhost/wp/post_grid_layout/post-grid-old-flat-flat__trashed/</link>
1729
+ <pubDate>Wed, 29 Apr 2020 08:25:19 +0000</pubDate>
1730
+ <dc:creator><![CDATA[admin]]></dc:creator>
1731
+ <guid isPermaLink="false">http://localhost/wp/post_grid_layout/post-grid-old-flat-flat/</guid>
1732
+ <description></description>
1733
+ <content:encoded><![CDATA[]]></content:encoded>
1734
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1735
+ <wp:post_id>51766</wp:post_id>
1736
+ <wp:post_date><![CDATA[2020-04-29 08:25:19]]></wp:post_date>
1737
+ <wp:post_date_gmt><![CDATA[2020-04-29 08:25:19]]></wp:post_date_gmt>
1738
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
1739
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1740
+ <wp:post_name><![CDATA[post-grid-old-flat-flat__trashed]]></wp:post_name>
1741
+ <wp:status><![CDATA[trash]]></wp:status>
1742
+ <wp:post_parent>0</wp:post_parent>
1743
+ <wp:menu_order>0</wp:menu_order>
1744
+ <wp:post_type><![CDATA[post_grid_layout]]></wp:post_type>
1745
+ <wp:post_password><![CDATA[]]></wp:post_password>
1746
+ <wp:is_sticky>0</wp:is_sticky>
1747
+ <wp:postmeta>
1748
+ <wp:meta_key><![CDATA[layout_elements_data]]></wp:meta_key>
1749
+ <wp:meta_value><![CDATA[a:8:{i:0;a:1:{s:13:"wrapper_start";a:3:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:11:"layer-media";s:8:"css_idle";s:0:"";}}i:1;a:1:{s:5:"media";a:4:{s:12:"media_height";a:6:{s:10:"large_type";s:11:"auto_height";s:5:"large";s:5:"220px";s:11:"medium_type";s:11:"auto_height";s:6:"medium";s:5:"220px";s:10:"small_type";s:11:"auto_height";s:5:"small";s:5:"220px";}s:12:"media_source";a:3:{s:14:"featured_image";a:2:{s:6:"enable";s:3:"yes";s:7:"link_to";s:4:"full";}s:11:"first_image";a:2:{s:6:"enable";s:3:"yes";s:7:"link_to";s:4:"none";}s:11:"empty_thumb";a:2:{s:6:"enable";s:3:"yes";s:7:"link_to";s:4:"none";}}s:6:"margin";s:0:"";s:7:"padding";s:0:"";}}i:2;a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}i:3;a:1:{s:13:"wrapper_start";a:2:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:13:"layer-content";}}i:4;a:1:{s:5:"title";a:4:{s:12:"custom_class";s:0:"";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:"";s:10:"char_limit";s:2:"20";}}i:5;a:1:{s:7:"excerpt";a:4:{s:12:"custom_class";s:0:"";s:3:"css";s:86:"display: block;font-size: 13px;line-height: normal;padding: 5px 10px;text-align: left;";s:9:"css_hover";s:0:"";s:10:"char_limit";s:2:"20";}}i:6;a:1:{s:9:"read_more";a:5:{s:12:"custom_class";s:0:"";s:3:"css";s:86:"display: block;font-size: 13px;line-height: normal;padding: 5px 10px;text-align: left;";s:9:"css_hover";s:0:"";s:14:"read_more_text";s:0:"";s:11:"link_target";s:6:"_blank";}}i:7;a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}}]]></wp:meta_value>
1750
+ </wp:postmeta>
1751
+ <wp:postmeta>
1752
+ <wp:meta_key><![CDATA[custom_scripts]]></wp:meta_key>
1753
+ <wp:meta_value><![CDATA[a:2:{s:10:"custom_css";s:122:".__ID__ a{text-decoration:none}
1754
+ .__ID__ {
1755
+ vertical-align: top;
1756
+ }
1757
+ .__ID__ .layer-media{}
1758
+ .__ID__ .layer-content {
1759
+ }";s:9:"custom_js";s:0:"";}]]></wp:meta_value>
1760
+ </wp:postmeta>
1761
+ <wp:postmeta>
1762
+ <wp:meta_key><![CDATA[layout_options]]></wp:meta_key>
1763
+ <wp:meta_value><![CDATA[a:1:{s:18:"layout_preview_img";s:0:"";}]]></wp:meta_value>
1764
+ </wp:postmeta>
1765
+ <wp:postmeta>
1766
+ <wp:meta_key><![CDATA[_wp_trash_meta_status]]></wp:meta_key>
1767
+ <wp:meta_value><![CDATA[publish]]></wp:meta_value>
1768
+ </wp:postmeta>
1769
+ <wp:postmeta>
1770
+ <wp:meta_key><![CDATA[_wp_trash_meta_time]]></wp:meta_key>
1771
+ <wp:meta_value><![CDATA[1588158394]]></wp:meta_value>
1772
+ </wp:postmeta>
1773
+ <wp:postmeta>
1774
+ <wp:meta_key><![CDATA[_wp_desired_post_slug]]></wp:meta_key>
1775
+ <wp:meta_value><![CDATA[post-grid-old-flat-flat]]></wp:meta_value>
1776
+ </wp:postmeta>
1777
+ </item>
1778
+ <item>
1779
+ <title>Post Grid Old - flat - flat</title>
1780
+ <link>http://localhost/wp/post_grid_layout/post-grid-old-flat-flat-2__trashed/</link>
1781
+ <pubDate>Wed, 29 Apr 2020 08:26:51 +0000</pubDate>
1782
+ <dc:creator><![CDATA[admin]]></dc:creator>
1783
+ <guid isPermaLink="false">http://localhost/wp/post_grid_layout/post-grid-old-flat-flat-2/</guid>
1784
+ <description></description>
1785
+ <content:encoded><![CDATA[]]></content:encoded>
1786
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1787
+ <wp:post_id>51767</wp:post_id>
1788
+ <wp:post_date><![CDATA[2020-04-29 08:26:51]]></wp:post_date>
1789
+ <wp:post_date_gmt><![CDATA[2020-04-29 08:26:51]]></wp:post_date_gmt>
1790
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
1791
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1792
+ <wp:post_name><![CDATA[post-grid-old-flat-flat-2__trashed]]></wp:post_name>
1793
+ <wp:status><![CDATA[trash]]></wp:status>
1794
+ <wp:post_parent>0</wp:post_parent>
1795
+ <wp:menu_order>0</wp:menu_order>
1796
+ <wp:post_type><![CDATA[post_grid_layout]]></wp:post_type>
1797
+ <wp:post_password><![CDATA[]]></wp:post_password>
1798
+ <wp:is_sticky>0</wp:is_sticky>
1799
+ <wp:postmeta>
1800
+ <wp:meta_key><![CDATA[layout_elements_data]]></wp:meta_key>
1801
+ <wp:meta_value><![CDATA[a:8:{i:0;a:1:{s:13:"wrapper_start";a:3:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:11:"layer-media";s:8:"css_idle";s:0:"";}}i:1;a:1:{s:5:"media";a:4:{s:12:"media_height";a:6:{s:10:"large_type";s:11:"auto_height";s:5:"large";s:5:"220px";s:11:"medium_type";s:11:"auto_height";s:6:"medium";s:5:"220px";s:10:"small_type";s:11:"auto_height";s:5:"small";s:5:"220px";}s:12:"media_source";a:3:{s:14:"featured_image";a:2:{s:6:"enable";s:3:"yes";s:7:"link_to";s:4:"full";}s:11:"first_image";a:2:{s:6:"enable";s:3:"yes";s:7:"link_to";s:4:"none";}s:11:"empty_thumb";a:2:{s:6:"enable";s:3:"yes";s:7:"link_to";s:4:"none";}}s:6:"margin";s:0:"";s:7:"padding";s:0:"";}}i:2;a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}i:3;a:1:{s:13:"wrapper_start";a:2:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:13:"layer-content";}}i:4;a:1:{s:5:"title";a:4:{s:12:"custom_class";s:0:"";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:"";s:10:"char_limit";s:2:"20";}}i:5;a:1:{s:7:"excerpt";a:4:{s:12:"custom_class";s:0:"";s:3:"css";s:86:"display: block;font-size: 13px;line-height: normal;padding: 5px 10px;text-align: left;";s:9:"css_hover";s:0:"";s:10:"char_limit";s:2:"20";}}i:6;a:1:{s:9:"read_more";a:5:{s:12:"custom_class";s:0:"";s:3:"css";s:86:"display: block;font-size: 13px;line-height: normal;padding: 5px 10px;text-align: left;";s:9:"css_hover";s:0:"";s:14:"read_more_text";s:0:"";s:11:"link_target";s:6:"_blank";}}i:7;a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}}]]></wp:meta_value>
1802
+ </wp:postmeta>
1803
+ <wp:postmeta>
1804
+ <wp:meta_key><![CDATA[custom_scripts]]></wp:meta_key>
1805
+ <wp:meta_value><![CDATA[a:2:{s:10:"custom_css";s:122:".__ID__ a{text-decoration:none}
1806
+ .__ID__ {
1807
+ vertical-align: top;
1808
+ }
1809
+ .__ID__ .layer-media{}
1810
+ .__ID__ .layer-content {
1811
+ }";s:9:"custom_js";s:0:"";}]]></wp:meta_value>
1812
+ </wp:postmeta>
1813
+ <wp:postmeta>
1814
+ <wp:meta_key><![CDATA[layout_options]]></wp:meta_key>
1815
+ <wp:meta_value><![CDATA[a:1:{s:18:"layout_preview_img";s:0:"";}]]></wp:meta_value>
1816
+ </wp:postmeta>
1817
+ <wp:postmeta>
1818
+ <wp:meta_key><![CDATA[_wp_trash_meta_status]]></wp:meta_key>
1819
+ <wp:meta_value><![CDATA[publish]]></wp:meta_value>
1820
+ </wp:postmeta>
1821
+ <wp:postmeta>
1822
+ <wp:meta_key><![CDATA[_wp_trash_meta_time]]></wp:meta_key>
1823
+ <wp:meta_value><![CDATA[1588158393]]></wp:meta_value>
1824
+ </wp:postmeta>
1825
+ <wp:postmeta>
1826
+ <wp:meta_key><![CDATA[_wp_desired_post_slug]]></wp:meta_key>
1827
+ <wp:meta_value><![CDATA[post-grid-old-flat-flat-2]]></wp:meta_value>
1828
+ </wp:postmeta>
1829
+ </item>
1830
+ <item>
1831
+ <title>Post Grid Old - spinright - flat</title>
1832
+ <link>http://localhost/wp/post_grid_layout/post-grid-old-spinright-flat__trashed/</link>
1833
+ <pubDate>Wed, 29 Apr 2020 08:42:34 +0000</pubDate>
1834
+ <dc:creator><![CDATA[admin]]></dc:creator>
1835
+ <guid isPermaLink="false">http://localhost/wp/post_grid_layout/post-grid-old-spinright-flat/</guid>
1836
+ <description></description>
1837
+ <content:encoded><![CDATA[]]></content:encoded>
1838
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
1839
+ <wp:post_id>51769</wp:post_id>
1840
+ <wp:post_date><![CDATA[2020-04-29 08:42:34]]></wp:post_date>
1841
+ <wp:post_date_gmt><![CDATA[2020-04-29 08:42:34]]></wp:post_date_gmt>
1842
+ <wp:comment_status><![CDATA[closed]]></wp:comment_status>
1843
+ <wp:ping_status><![CDATA[closed]]></wp:ping_status>
1844
+ <wp:post_name><![CDATA[post-grid-old-spinright-flat__trashed]]></wp:post_name>
1845
+ <wp:status><![CDATA[trash]]></wp:status>
1846
+ <wp:post_parent>0</wp:post_parent>
1847
+ <wp:menu_order>0</wp:menu_order>
1848
+ <wp:post_type><![CDATA[post_grid_layout]]></wp:post_type>
1849
+ <wp:post_password><![CDATA[]]></wp:post_password>
1850
+ <wp:is_sticky>0</wp:is_sticky>
1851
+ <wp:postmeta>
1852
+ <wp:meta_key><![CDATA[layout_elements_data]]></wp:meta_key>
1853
+ <wp:meta_value><![CDATA[a:8:{i:0;a:1:{s:13:"wrapper_start";a:3:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:11:"layer-media";s:8:"css_idle";s:0:"";}}i:1;a:1:{s:5:"media";a:4:{s:12:"media_height";a:6:{s:10:"large_type";s:11:"auto_height";s:5:"large";s:5:"220px";s:11:"medium_type";s:11:"auto_height";s:6:"medium";s:5:"220px";s:10:"small_type";s:11:"auto_height";s:5:"small";s:5:"220px";}s:12:"media_source";a:3:{s:14:"featured_image";a:2:{s:6:"enable";s:3:"yes";s:7:"link_to";s:4:"full";}s:11:"first_image";a:2:{s:6:"enable";s:3:"yes";s:7:"link_to";s:4:"none";}s:11:"empty_thumb";a:2:{s:6:"enable";s:3:"yes";s:7:"link_to";s:4:"none";}}s:6:"margin";s:0:"";s:7:"padding";s:0:"";}}i:2;a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}i:3;a:1:{s:13:"wrapper_start";a:2:{s:10:"wrapper_id";s:0:"";s:13:"wrapper_class";s:13:"layer-content";}}i:4;a:1:{s:5:"title";a:4:{s:12:"custom_class";s:0:"";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:"";s:10:"char_limit";s:2:"20";}}i:5;a:1:{s:7:"excerpt";a:4:{s:12:"custom_class";s:0:"";s:3:"css";s:86:"display: block;font-size: 13px;line-height: normal;padding: 5px 10px;text-align: left;";s:9:"css_hover";s:0:"";s:10:"char_limit";s:2:"20";}}i:6;a:1:{s:9:"read_more";a:5:{s:12:"custom_class";s:0:"";s:3:"css";s:86:"display: block;font-size: 13px;line-height: normal;padding: 5px 10px;text-align: left;";s:9:"css_hover";s:0:"";s:14:"read_more_text";s:0:"";s:11:"link_target";s:6:"_blank";}}i:7;a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}}]]></wp:meta_value>
1854
+ </wp:postmeta>
1855
+ <wp:postmeta>
1856
+ <wp:meta_key><![CDATA[custom_scripts]]></wp:meta_key>
1857
+ <wp:meta_value><![CDATA[a:2:{s:10:"custom_css";s:710:".__ID__ a{text-decoration:none}
1858
+ .__ID__ {
1859
+ overflow: hidden;
1860
+ position: relative;
1861
+ vertical-align: top;
1862
+ }
1863
+ .__ID__:hover .layer-media {
1864
+ -webkit-transform: rotate(30deg);
1865
+ -ms-transform: rotate(30deg);
1866
+ transform: rotate(30deg);
1867
+ opacity: 0;
1868
+ filter: alpha(opacity=0);
1869
+ }
1870
+ .__ID__ .layer-media {
1871
+ -webkit-transition: all 1s ease 0s;
1872
+ transition: all 1s ease 0s;
1873
+ left: 0;
1874
+ top: 0;
1875
+ width: 100%;
1876
+ }
1877
+ .__ID__:hover .layer-content{
1878
+ opacity: 1;
1879
+ filter: alpha(opacity=100);
1880
+ }
1881
+ .__ID__ .layer-content {
1882
+ left: 0;
1883
+ opacity: 0;
1884
+ filter: alpha(opacity=0);
1885
+ position: absolute;
1886
+ top: 0;
1887
+ width: 100%;
1888
+ -webkit-transition: all 1s ease 0s;
1889
+ transition: all 1s ease 0s;
1890
+ }";s:9:"custom_js";s:0:"";}]]></wp:meta_value>
1891
+ </wp:postmeta>
1892
+ <wp:postmeta>
1893
+ <wp:meta_key><![CDATA[layout_options]]></wp:meta_key>
1894
+ <wp:meta_value><![CDATA[a:1:{s:18:"layout_preview_img";s:0:"";}]]></wp:meta_value>
1895
+ </wp:postmeta>
1896
+ <wp:postmeta>
1897
+ <wp:meta_key><![CDATA[_wp_trash_meta_status]]></wp:meta_key>
1898
+ <wp:meta_value><![CDATA[publish]]></wp:meta_value>
1899
+ </wp:postmeta>
1900
+ <wp:postmeta>
1901
+ <wp:meta_key><![CDATA[_wp_trash_meta_time]]></wp:meta_key>
1902
+ <wp:meta_value><![CDATA[1588158393]]></wp:meta_value>
1903
+ </wp:postmeta>
1904
+ <wp:postmeta>
1905
+ <wp:meta_key><![CDATA[_wp_desired_post_slug]]></wp:meta_key>
1906
+ <wp:meta_value><![CDATA[post-grid-old-spinright-flat]]></wp:meta_value>
1907
+ </wp:postmeta>
1908
+ </item>
1909
+ </channel>
1910
+ </rss>
1911
+
templates/post-grid-hook.php CHANGED
@@ -246,14 +246,23 @@ function post_grid_posts_loop($args){
246
  <?php
247
  endif;
248
 
 
249
 
 
250
 
 
251
 
 
252
 
 
253
 
254
- }
255
-
 
 
 
256
 
 
257
 
258
 
259
 
@@ -1525,8 +1534,8 @@ function post_grid_main_scripts($args){
1525
 
1526
 
1527
  if($masonry_enable == 'yes'){
1528
- wp_enqueue_script( 'masonry.js' );
1529
- wp_enqueue_script( 'imagesloaded.js' );
1530
  }
1531
 
1532
  //var_dump($load_fontawesome);
246
  <?php
247
  endif;
248
 
249
+ }
250
 
251
+ add_action('post_grid_loop_no_post', 'post_grid_loop_no_post');
252
 
253
+ function post_grid_loop_no_post($args){
254
 
255
+ $post_grid_options = $args['options'];
256
 
257
+ $no_post_text = !empty($post_grid_options['no_post_text']) ? $post_grid_options['no_post_text'] : __('No post found','post-grid');
258
 
259
+ ?>
260
+ <div class="no-post-found">
261
+ <?php echo apply_filters('post_grid_no_post_text', $no_post_text); ?>
262
+ </div>
263
+ <?php
264
 
265
+ }
266
 
267
 
268
 
1534
 
1535
 
1536
  if($masonry_enable == 'yes'){
1537
+ wp_enqueue_script( 'masonry' );
1538
+ wp_enqueue_script( 'imagesloaded' );
1539
  }
1540
 
1541
  //var_dump($load_fontawesome);
templates/post-grid.php CHANGED
@@ -135,8 +135,8 @@ if($enable_multi_skin=='yes'){
135
 
136
  ?>
137
  <div class="no-post-found">
138
- <?php echo apply_filters('post_grid_no_post_text', __('No Post found','post-grid')); ?>
139
- </div> <!-- .no-post-found -->
140
  <?php
141
  endif;
142
 
135
 
136
  ?>
137
  <div class="no-post-found">
138
+ <?php echo apply_filters('post_grid_no_post_text', $no_post_text); ?>
139
+ </div>
140
  <?php
141
  endif;
142
 
templates/variables.php CHANGED
@@ -67,6 +67,7 @@ else{
67
  $meta_query = array();
68
  }
69
 
 
70
 
71
 
72
  $sticky_post_query_type = isset($post_grid_meta_options['sticky_post_query']['type']) ? $post_grid_meta_options['sticky_post_query']['type'] : 'none';
67
  $meta_query = array();
68
  }
69
 
70
+ $no_post_text = isset($post_grid_meta_options['no_post_text']) ? $post_grid_meta_options['no_post_text'] : __('No post found','post-grid');
71
 
72
 
73
  $sticky_post_query_type = isset($post_grid_meta_options['sticky_post_query']['type']) ? $post_grid_meta_options['sticky_post_query']['type'] : 'none';