Version Description
- 2020-04-29 fix - new layout media image source issue fixed.
- 2020-04-29 add - default layout xml file added and ready to import.
- 2020-04-30 add - added new media source "SiteOrigin first image"
Download this release
Release Info
Developer | pickplugins |
Plugin | Post Grid |
Version | 2.0.48 |
Comparing to | |
See all releases |
Code changes from version 2.0.47 to 2.0.48
- assets/admin/js/scripts.js +2 -0
- includes/class-settings.php +7 -0
- includes/functions-layout-hook.php +2 -0
- includes/functions.php +183 -10
- includes/functions/functions-post-grid-meta-box.php +5 -5
- includes/functions/media-source-options.php +62 -0
- includes/functions/post-grid-layout-elements.php +35 -20
- includes/menu/import-layouts.php +82 -0
- post-grid.php +2 -2
- readme.txt +7 -1
- sample-data/post-grid-layouts.xml +293 -0
- sample/default-layouts.xml +0 -1911
assets/admin/js/scripts.js
CHANGED
@@ -17,6 +17,8 @@ jQuery(document).ready(function($){
|
|
17 |
|
18 |
});
|
19 |
})
|
|
|
|
|
20 |
$(document).on('change', '#post_grid_metabox #post_types', function(){
|
21 |
post_types = $(this).val();
|
22 |
grid_id = $(this).attr('grid_id');
|
17 |
|
18 |
});
|
19 |
})
|
20 |
+
|
21 |
+
|
22 |
$(document).on('change', '#post_grid_metabox #post_types', function(){
|
23 |
post_types = $(this).val();
|
24 |
grid_id = $(this).attr('grid_id');
|
includes/class-settings.php
CHANGED
@@ -19,6 +19,7 @@ class class_post_grid_settings{
|
|
19 |
public function post_grid_menu_init() {
|
20 |
|
21 |
$post_grid_info = get_option('post_grid_info');
|
|
|
22 |
|
23 |
|
24 |
$data_update_status = isset($post_grid_info['data_update_status']) ? $post_grid_info['data_update_status'] : 'pending';
|
@@ -28,6 +29,9 @@ class class_post_grid_settings{
|
|
28 |
|
29 |
add_submenu_page('edit.php?post_type=post_grid', __('Settings', 'post-grid'), __('Settings', 'post-grid'), 'manage_options', 'post-grid-settings', array( $this, 'settings' ));
|
30 |
|
|
|
|
|
|
|
31 |
if($data_update_status == 'pending'):
|
32 |
add_submenu_page('edit.php?post_type=post_grid', __('Data Update', 'post-grid'), __('Data Update', 'post-grid'), 'manage_options', 'data-update', array( $this, 'data_update' ));
|
33 |
|
@@ -51,7 +55,10 @@ class class_post_grid_settings{
|
|
51 |
include('menu/data-update.php');
|
52 |
}
|
53 |
|
|
|
|
|
54 |
|
|
|
55 |
|
56 |
|
57 |
|
19 |
public function post_grid_menu_init() {
|
20 |
|
21 |
$post_grid_info = get_option('post_grid_info');
|
22 |
+
$import_layouts = isset($post_grid_info['import_layouts']) ? $post_grid_info['import_layouts'] : '';
|
23 |
|
24 |
|
25 |
$data_update_status = isset($post_grid_info['data_update_status']) ? $post_grid_info['data_update_status'] : 'pending';
|
29 |
|
30 |
add_submenu_page('edit.php?post_type=post_grid', __('Settings', 'post-grid'), __('Settings', 'post-grid'), 'manage_options', 'post-grid-settings', array( $this, 'settings' ));
|
31 |
|
32 |
+
if($import_layouts != 'done')
|
33 |
+
add_submenu_page( 'edit.php?post_type=post_grid', __( 'Import layouts', 'post-grid' ), __( 'Import layouts', 'post-grid' ), 'manage_options', 'import_layouts', array( $this, 'import_layouts' ) );
|
34 |
+
|
35 |
if($data_update_status == 'pending'):
|
36 |
add_submenu_page('edit.php?post_type=post_grid', __('Data Update', 'post-grid'), __('Data Update', 'post-grid'), 'manage_options', 'data-update', array( $this, 'data_update' ));
|
37 |
|
55 |
include('menu/data-update.php');
|
56 |
}
|
57 |
|
58 |
+
public function import_layouts(){
|
59 |
+
include( 'menu/import-layouts.php' );
|
60 |
|
61 |
+
}
|
62 |
|
63 |
|
64 |
|
includes/functions-layout-hook.php
CHANGED
@@ -1070,6 +1070,8 @@ function post_grid_layout_elements_option_media($parameters){
|
|
1070 |
'featured_image'=>__('Featured Image','post-grid'),
|
1071 |
'first_image'=>__('First images from content','post-grid'),
|
1072 |
'empty_thumb'=>__('Empty thumbnail','post-grid'),
|
|
|
|
|
1073 |
)
|
1074 |
);
|
1075 |
|
1070 |
'featured_image'=>__('Featured Image','post-grid'),
|
1071 |
'first_image'=>__('First images from content','post-grid'),
|
1072 |
'empty_thumb'=>__('Empty thumbnail','post-grid'),
|
1073 |
+
'siteorigin_first_image'=>__('SiteOrigin first image','post-grid'),
|
1074 |
+
|
1075 |
)
|
1076 |
);
|
1077 |
|
includes/functions.php
CHANGED
@@ -499,6 +499,188 @@ function post_grid_get_media($item_post_id, $media_source, $featured_img_size, $
|
|
499 |
|
500 |
|
501 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
502 |
|
503 |
|
504 |
|
@@ -995,15 +1177,6 @@ add_action('wp_ajax_post_grid_layout_add_elements', 'post_grid_layout_add_elemen
|
|
995 |
|
996 |
|
997 |
|
998 |
-
|
999 |
-
|
1000 |
-
|
1001 |
-
|
1002 |
-
|
1003 |
-
|
1004 |
-
|
1005 |
-
|
1006 |
-
|
1007 |
function post_grid_ajax_search(){
|
1008 |
|
1009 |
|
@@ -1124,7 +1297,7 @@ function post_grid_ajax_search(){
|
|
1124 |
|
1125 |
|
1126 |
|
1127 |
-
$query_args = apply_filters('
|
1128 |
// $query_args = apply_filters('post_grid_query_args', $query_args, $args);
|
1129 |
|
1130 |
|
499 |
|
500 |
|
501 |
|
502 |
+
function post_grid_media($post_id, $args ){
|
503 |
+
|
504 |
+
$source_id = $args['source_id'] ;
|
505 |
+
$source_args = $args['source_args'] ;
|
506 |
+
$post_settings = $args['post_settings'] ;
|
507 |
+
|
508 |
+
$thumb_linked = '';
|
509 |
+
|
510 |
+
$item_post_permalink = apply_filters('post_grid_item_post_permalink', get_permalink($post_id));
|
511 |
+
|
512 |
+
|
513 |
+
|
514 |
+
$html_thumb = '';
|
515 |
+
|
516 |
+
|
517 |
+
if($source_id == 'featured_image'){
|
518 |
+
|
519 |
+
|
520 |
+
$image_size = isset($source_args['image_size']) ? $source_args['image_size'] : 'large';
|
521 |
+
$link_to = isset($source_args['link_to']) ? $source_args['link_to'] : 'post_link';
|
522 |
+
|
523 |
+
$thumb_custom_url = isset($post_settings['thumb_custom_url']) ? $post_settings['thumb_custom_url'] : '';
|
524 |
+
|
525 |
+
|
526 |
+
$thumb = wp_get_attachment_image_src( get_post_thumbnail_id($post_id), $image_size );
|
527 |
+
$alt_text = get_post_meta(get_post_thumbnail_id($post_id), '_wp_attachment_image_alt', true);
|
528 |
+
$thumb_url = isset($thumb['0']) ? $thumb['0'] : '';
|
529 |
+
|
530 |
+
if(!empty($thumb_url)){
|
531 |
+
if($link_to=='post_link'){
|
532 |
+
if(!empty($thumb_custom_url)){
|
533 |
+
$html_thumb.= '<a href="'.$thumb_custom_url.'"><img alt="'.$alt_text.'" src="'.$thumb_url.'" /></a>';
|
534 |
+
}
|
535 |
+
else{
|
536 |
+
$html_thumb.= '<a href="'.$item_post_permalink.'"><img alt="'.$alt_text.'" src="'.$thumb_url.'" /></a>';
|
537 |
+
}
|
538 |
+
}
|
539 |
+
else{
|
540 |
+
$html_thumb.= '<img alt="'.$alt_text.'" src="'.$thumb_url.'" />';
|
541 |
+
}
|
542 |
+
}
|
543 |
+
else{
|
544 |
+
$html_thumb.= '';
|
545 |
+
}
|
546 |
+
}
|
547 |
+
|
548 |
+
|
549 |
+
|
550 |
+
elseif($source_id == 'empty_thumb'){
|
551 |
+
|
552 |
+
$link_to = isset($source_args['link_to']) ? $source_args['link_to'] : 'post_link';
|
553 |
+
$default_thumb_src = isset($source_args['default_thumb_src']) ? $source_args['default_thumb_src'] : post_grid_plugin_url.'assets/frontend/css/images/placeholder.png';
|
554 |
+
|
555 |
+
|
556 |
+
if($link_to=='post_link'){
|
557 |
+
$html_thumb.= '<a class="custom" href="'.$item_post_permalink.'"><img src="'.$default_thumb_src.'" /></a>';
|
558 |
+
}
|
559 |
+
else{
|
560 |
+
$html_thumb.= '<img class="custom" src="'.$default_thumb_src.'" />';
|
561 |
+
}
|
562 |
+
}
|
563 |
+
|
564 |
+
|
565 |
+
elseif($source_id == 'first_image'){
|
566 |
+
|
567 |
+
$link_to = isset($source_args['link_to']) ? $source_args['link_to'] : 'post_link';
|
568 |
+
|
569 |
+
|
570 |
+
//global $post, $posts;
|
571 |
+
$post = get_post($post_id);
|
572 |
+
$post_content = $post->post_content;
|
573 |
+
$first_img = '';
|
574 |
+
ob_start();
|
575 |
+
ob_end_clean();
|
576 |
+
$output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $post_content, $matches);
|
577 |
+
|
578 |
+
if(!empty($matches[1][0]))
|
579 |
+
$first_img = $matches[1][0];
|
580 |
+
|
581 |
+
if(empty($first_img)) {
|
582 |
+
$html_thumb.= '';
|
583 |
+
}
|
584 |
+
else{
|
585 |
+
|
586 |
+
if($link_to=='post_link'){
|
587 |
+
$html_thumb.= '<a href="'.$item_post_permalink.'"><img src="'.$first_img.'" /></a>';
|
588 |
+
}
|
589 |
+
else{
|
590 |
+
$html_thumb.= '<img src="'.$first_img.'" />';
|
591 |
+
}
|
592 |
+
}
|
593 |
+
}
|
594 |
+
elseif($source_id == 'siteorigin_first_image'){
|
595 |
+
|
596 |
+
$link_to = isset($source_args['link_to']) ? $source_args['link_to'] : 'post_link';
|
597 |
+
|
598 |
+
//global $post, $posts;
|
599 |
+
$post = get_post($post_id);
|
600 |
+
/**$post_content = $post->post_content; */
|
601 |
+
$post_content = htmlspecialchars_decode($post->post_content,ENT_QUOTES);
|
602 |
+
$first_img = '';
|
603 |
+
ob_start();
|
604 |
+
ob_end_clean();
|
605 |
+
|
606 |
+
|
607 |
+
if ( class_exists( 'SiteOrigin_Widgets_Bundle' ) ){
|
608 |
+
$output = str_replace( array( '\/' ), "\\" ,$post_content); // SiteOrigin adds \/ combinations
|
609 |
+
$output = str_replace( array( 'src=\\' ), 'src=',$output); // SiteOrigin adds \\
|
610 |
+
$output = str_replace( array( '"url":' ), ' <img src=',$output); //SiteOrigin does change the src to url
|
611 |
+
$output = str_replace( array( '<img src="' ), '<img src="',$output); //SiteOrigin does add &< and " combinations which are not removed
|
612 |
+
$output = str_replace( array( '""' ), '"',$output); // Remove this quot combination
|
613 |
+
$output = str_replace( array( '"' ), '',$output); // Remove this quot combination
|
614 |
+
|
615 |
+
/** search for post containing SiteOrigin image */
|
616 |
+
$findme='"image":';
|
617 |
+
$start= strpos($post_content, $findme);
|
618 |
+
$findme = ',"image_fallback"';
|
619 |
+
$end = strpos($post_content, $findme);
|
620 |
+
$lengte= $end-$start;
|
621 |
+
$search=(substr($post_content,$start,$lengte));
|
622 |
+
/** error_log('Gevonden:' .$search); */
|
623 |
+
if ($search !=""){
|
624 |
+
/** split the text */
|
625 |
+
$stringParts = explode(":", $search);
|
626 |
+
$firstPart = $stringParts[0];
|
627 |
+
/** copy the post_id */
|
628 |
+
$ImagePost = $stringParts[1];
|
629 |
+
/** error_log("postNo:" .$ImagePost); */
|
630 |
+
$getimage=wp_get_attachment_image($ImagePost,$size='medium' );
|
631 |
+
|
632 |
+
if ($getimage !=""){
|
633 |
+
$output = $getimage ;
|
634 |
+
}
|
635 |
+
}
|
636 |
+
}
|
637 |
+
else {
|
638 |
+
/** no SiteOrigin image so get the matches */
|
639 |
+
$output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $post_content, $matches);
|
640 |
+
|
641 |
+
}
|
642 |
+
|
643 |
+
$output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*?>/i', $output, $matches);
|
644 |
+
if ($output = '0'){
|
645 |
+
$output = preg_match_all('/?<img src=[\'"]([^\'"]+)[\'"].*?>/i', $output, $matches);
|
646 |
+
}
|
647 |
+
if(!empty($matches[1][0])) {
|
648 |
+
$first_img = $matches[1][0];
|
649 |
+
/** error_log('first_img:' .$first_img); */
|
650 |
+
$last_char = $first_img[strlen($first_img) - 1]; // Check to see if a slash is at the end of the line
|
651 |
+
if ($last_char == '\\') {
|
652 |
+
$first_img = substr($first_img, 0, -1);
|
653 |
+
}
|
654 |
+
}
|
655 |
+
|
656 |
+
|
657 |
+
if(empty($first_img)) {
|
658 |
+
$html_thumb.= '';
|
659 |
+
}
|
660 |
+
else{
|
661 |
+
|
662 |
+
if($link_to=='post_link'){
|
663 |
+
$html_thumb.= '<a href="'.$item_post_permalink.'"><img src="'.$first_img.'" /></a>';
|
664 |
+
}
|
665 |
+
else{
|
666 |
+
$html_thumb.= '<img src="'.$first_img.'" />';
|
667 |
+
}
|
668 |
+
}
|
669 |
+
|
670 |
+
|
671 |
+
}
|
672 |
+
|
673 |
+
|
674 |
+
|
675 |
+
|
676 |
+
return $html_thumb;
|
677 |
+
|
678 |
+
|
679 |
+
|
680 |
+
|
681 |
+
}
|
682 |
+
|
683 |
+
|
684 |
|
685 |
|
686 |
|
1177 |
|
1178 |
|
1179 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1180 |
function post_grid_ajax_search(){
|
1181 |
|
1182 |
|
1297 |
|
1298 |
|
1299 |
|
1300 |
+
$query_args = apply_filters('post_grid_ajax_query_args', $query_args, $grid_id);
|
1301 |
// $query_args = apply_filters('post_grid_query_args', $query_args, $args);
|
1302 |
|
1303 |
|
includes/functions/functions-post-grid-meta-box.php
CHANGED
@@ -560,10 +560,10 @@ function post_grid_metabox_tabs_content_layouts($tab, $post_id){
|
|
560 |
$post_grid_meta_options = get_post_meta($post_id,'post_grid_meta_options', true);
|
561 |
$layout_id = !empty($post_grid_meta_options['layout_id']) ? $post_grid_meta_options['layout_id'] : ''; //post_grid_get_first_post('post_grid_layout')
|
562 |
|
563 |
-
$
|
564 |
-
$import_layouts = isset($
|
565 |
-
|
566 |
|
|
|
567 |
|
568 |
?>
|
569 |
<div class="section">
|
@@ -582,13 +582,13 @@ function post_grid_metabox_tabs_content_layouts($tab, $post_id){
|
|
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>
|
586 |
<?php
|
587 |
if($import_layouts != 'done'):
|
588 |
|
589 |
|
590 |
?>
|
591 |
-
<p><
|
592 |
<?php
|
593 |
endif;
|
594 |
|
560 |
$post_grid_meta_options = get_post_meta($post_id,'post_grid_meta_options', true);
|
561 |
$layout_id = !empty($post_grid_meta_options['layout_id']) ? $post_grid_meta_options['layout_id'] : ''; //post_grid_get_first_post('post_grid_layout')
|
562 |
|
563 |
+
$post_grid_info = get_option('post_grid_info');
|
564 |
+
$import_layouts = isset($post_grid_info['import_layouts']) ? $post_grid_info['import_layouts'] : '';
|
|
|
565 |
|
566 |
+
//var_dump($import_layouts);
|
567 |
|
568 |
?>
|
569 |
<div class="section">
|
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> for this post grid.</p>
|
586 |
<?php
|
587 |
if($import_layouts != 'done'):
|
588 |
|
589 |
|
590 |
?>
|
591 |
+
<p><a href="<?php echo admin_url().'edit.php?post_type=post_grid&page=import_layouts'; ?>" class="button import-default-layouts"><?php echo __('Import default layouts','post-grid'); ?></a> </p>
|
592 |
<?php
|
593 |
endif;
|
594 |
|
includes/functions/media-source-options.php
CHANGED
@@ -121,6 +121,68 @@ function media_source_options_first_image($media_source){
|
|
121 |
$settings_tabs_field->generate_field($args);
|
122 |
|
123 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
124 |
add_action('media_source_options_empty_thumb', 'media_source_options_empty_thumb');
|
125 |
|
126 |
function media_source_options_empty_thumb($media_source){
|
121 |
$settings_tabs_field->generate_field($args);
|
122 |
|
123 |
}
|
124 |
+
|
125 |
+
|
126 |
+
|
127 |
+
add_action('media_source_options_siteorigin_first_image', 'media_source_options_siteorigin_first_image');
|
128 |
+
|
129 |
+
function media_source_options_siteorigin_first_image($media_source){
|
130 |
+
$settings_tabs_field = new settings_tabs_field();
|
131 |
+
|
132 |
+
$post_grid_settings = get_option('post_grid_settings');
|
133 |
+
|
134 |
+
$index = isset($media_source['index']) ? $media_source['index'] : '';
|
135 |
+
$input_name = isset($media_source['input_name']) ? $media_source['input_name'] : '';
|
136 |
+
$source_data = isset($media_source['source_data']) ? $media_source['source_data'] : '';
|
137 |
+
|
138 |
+
$enable = isset($source_data['enable']) ? $source_data['enable'] : '';
|
139 |
+
$link_to = isset($source_data['link_to']) ? $source_data['link_to'] : '';
|
140 |
+
|
141 |
+
|
142 |
+
|
143 |
+
$args = array(
|
144 |
+
'id' => 'enable',
|
145 |
+
'parent' => $input_name.'[media][media_source][siteorigin_first_image]',
|
146 |
+
'title' => __('Enable','post-grid'),
|
147 |
+
'details' => __('Enable or disable this media source.','post-grid'),
|
148 |
+
'type' => 'radio',
|
149 |
+
'value' => $enable,
|
150 |
+
'default' => 'no',
|
151 |
+
'args' => array(
|
152 |
+
'no'=>__('No','post-grid'),
|
153 |
+
'yes'=>__('Yes','post-grid'),
|
154 |
+
),
|
155 |
+
);
|
156 |
+
|
157 |
+
$settings_tabs_field->generate_field($args);
|
158 |
+
|
159 |
+
$args = array(
|
160 |
+
'id' => 'link_to',
|
161 |
+
'css_id' => $index.'_link_to',
|
162 |
+
'parent' => $input_name.'[media][media_source][siteorigin_first_image]',
|
163 |
+
'title' => __('Link to','post-grid'),
|
164 |
+
'details' => __('Choose link to featured image.','post-grid'),
|
165 |
+
'type' => 'select',
|
166 |
+
'value' => $link_to,
|
167 |
+
'default' => 'post_link',
|
168 |
+
'args' => array(
|
169 |
+
'post_link'=> __('Post link', 'post-grid'),
|
170 |
+
'none'=> __('None', 'post-grid'),
|
171 |
+
),
|
172 |
+
);
|
173 |
+
|
174 |
+
$settings_tabs_field->generate_field($args);
|
175 |
+
|
176 |
+
}
|
177 |
+
|
178 |
+
|
179 |
+
|
180 |
+
|
181 |
+
|
182 |
+
|
183 |
+
|
184 |
+
|
185 |
+
|
186 |
add_action('media_source_options_empty_thumb', 'media_source_options_empty_thumb');
|
187 |
|
188 |
function media_source_options_empty_thumb($media_source){
|
includes/functions/post-grid-layout-elements.php
CHANGED
@@ -712,36 +712,51 @@ function post_grid_layout_element_media($args){
|
|
712 |
if(empty($post_id)) return;
|
713 |
|
714 |
$custom_class = isset($element['custom_class']) ? $element['custom_class'] : '';
|
715 |
-
$
|
716 |
-
$thumb_size = isset($element['thumb_size']) ? $element['thumb_size'] : 'large';
|
717 |
|
718 |
-
$
|
719 |
-
$
|
720 |
|
|
|
721 |
|
722 |
-
$thumb = wp_get_attachment_image_src( get_post_thumbnail_id($post_id), $thumb_size );
|
723 |
-
$thumb_url = !empty($thumb['0']) ? $thumb['0'] : $default_thumb_src;
|
724 |
|
725 |
-
|
|
|
|
|
726 |
|
|
|
727 |
|
728 |
-
|
|
|
729 |
|
|
|
|
|
|
|
730 |
|
731 |
|
732 |
-
|
733 |
-
|
734 |
-
|
735 |
-
|
736 |
-
|
737 |
-
|
738 |
-
|
739 |
-
|
740 |
-
|
741 |
-
|
742 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
743 |
|
744 |
-
endif;
|
745 |
?>
|
746 |
|
747 |
|
712 |
if(empty($post_id)) return;
|
713 |
|
714 |
$custom_class = isset($element['custom_class']) ? $element['custom_class'] : '';
|
715 |
+
$media_source = isset($element['media_source']) ? $element['media_source'] : '';
|
|
|
716 |
|
717 |
+
$featured_img_size = !empty($element['featured_img_size']) ? $element['featured_img_size'] : 'full';
|
718 |
+
$thumb_linked = !empty($element['thumb_linked']) ? $element['thumb_linked'] : 'yes';
|
719 |
|
720 |
+
$post_grid_post_settings = get_post_meta($post_id, 'post_grid_post_settings', true);
|
721 |
|
|
|
|
|
722 |
|
723 |
+
?>
|
724 |
+
<div class="element element_<?php echo esc_attr($elementIndex); ?> <?php echo esc_attr($custom_class); ?> element-media ">
|
725 |
+
<?php
|
726 |
|
727 |
+
$html_media = '';
|
728 |
|
729 |
+
$is_image = false;
|
730 |
+
foreach($media_source as $source_id => $source_info){
|
731 |
|
732 |
+
$args['source_id'] = $source_id;
|
733 |
+
$args['source_args'] = $source_info;
|
734 |
+
$args['post_settings'] = $post_grid_post_settings;
|
735 |
|
736 |
|
737 |
+
//var_dump($source_id);
|
738 |
+
// var_dump($source_info);
|
739 |
+
|
740 |
+
$is_enable = isset($source_info['enable']) ? $source_info['enable'] : '';
|
741 |
+
|
742 |
+
$media = post_grid_media($post_id, $args);
|
743 |
+
|
744 |
+
if ( $is_image ) continue;
|
745 |
+
|
746 |
+
if($is_enable == 'yes'){
|
747 |
+
if(!empty($media)){
|
748 |
+
|
749 |
+
$html_media = post_grid_media($post_id, $args);
|
750 |
+
$is_image = true;
|
751 |
+
}
|
752 |
+
else{
|
753 |
+
$html_media = '';
|
754 |
+
}
|
755 |
+
}
|
756 |
+
}
|
757 |
+
|
758 |
+
echo $html_media;
|
759 |
|
|
|
760 |
?>
|
761 |
|
762 |
|
includes/menu/import-layouts.php
ADDED
@@ -0,0 +1,82 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
if ( ! defined('ABSPATH')) exit; // if direct access
|
3 |
+
|
4 |
+
$post_grid_info = get_option('post_grid_info');
|
5 |
+
|
6 |
+
$import_layouts = isset($post_grid_info['import_layouts']) ? $post_grid_info['import_layouts'] : '';
|
7 |
+
|
8 |
+
?>
|
9 |
+
<div class="wrap">
|
10 |
+
<div id="icon-tools" class="icon32"><br></div><h2><?php echo sprintf(__('%s - Import layouts', 'post-grid'), post_grid_plugin_name)?></h2>
|
11 |
+
|
12 |
+
|
13 |
+
<form method="post" action="<?php echo str_replace( '%7E', '~', $_SERVER['REQUEST_URI']); ?>">
|
14 |
+
<input type="hidden" name="post_grid_hidden" value="Y">
|
15 |
+
<?php
|
16 |
+
if(!empty($_POST['post_grid_hidden'])){
|
17 |
+
$nonce = sanitize_text_field($_POST['_wpnonce']);
|
18 |
+
if(wp_verify_nonce( $nonce, 'post_grid_nonce' ) && $_POST['post_grid_hidden'] == 'Y') {
|
19 |
+
|
20 |
+
$import_layouts = isset($_POST['import_layouts']) ? 'done' : '';
|
21 |
+
$post_grid_info['import_layouts'] = $import_layouts;
|
22 |
+
|
23 |
+
update_option('post_grid_info', $post_grid_info)
|
24 |
+
|
25 |
+
?>
|
26 |
+
<div class="updated notice is-dismissible"><p><strong><?php _e('Changes Saved.', 'post-grid' ); ?></strong></p></div>
|
27 |
+
<?php
|
28 |
+
}
|
29 |
+
}
|
30 |
+
|
31 |
+
|
32 |
+
if (is_plugin_active('post-grid-pro/post-grid-pro.php')){
|
33 |
+
$layouts_plugin_url = post_grid_pro_plugin_url;
|
34 |
+
}else{
|
35 |
+
$layouts_plugin_url = post_grid_plugin_url;
|
36 |
+
}
|
37 |
+
|
38 |
+
|
39 |
+
|
40 |
+
?>
|
41 |
+
|
42 |
+
<p><b>Post Gird</b> provide some ready layouts to get started, please follow the steps bellow to import default layouts.</p>
|
43 |
+
|
44 |
+
<ul>
|
45 |
+
<li>Step - 1: Go to <a href="<?php echo admin_url(); ?>import.php">import</a> menu and install & activate <b>WordPress</b> Importer plugin. click to "Install Now" button to install.</li>
|
46 |
+
<li>Step - 2: Download following xml file <a href="<?php echo $layouts_plugin_url; ?>sample-data/post-grid-layouts.xml">post-grid-layouts.xml</a>, save the file on your local machine.</li>
|
47 |
+
<li>Step - 3: Go to importer page <a href="<?php echo admin_url(); ?>import.php?import=wordpress">Import WordPress</a> and chose the downloaded file and then click to <b>Upload file and import</b>.</li>
|
48 |
+
<li>Step - 4: Go to <a href="<?php echo admin_url(); ?>edit.php?post_type=post_grid_layout">Post Grid layouts</a> page to see imported layouts.</li>
|
49 |
+
|
50 |
+
</ul>
|
51 |
+
|
52 |
+
|
53 |
+
<p><label><input type="checkbox" <?php if(!empty($import_layouts)) echo 'checked'; ?> name="import_layouts" value="1"> Mark as done</label></p>
|
54 |
+
|
55 |
+
|
56 |
+
<div class="clear clearfix"></div>
|
57 |
+
<p class="submit">
|
58 |
+
<?php wp_nonce_field( 'post_grid_nonce' ); ?>
|
59 |
+
<input class="button button-primary" type="submit" name="Submit" value="<?php _e('Save Changes','post-grid' ); ?>" />
|
60 |
+
</p>
|
61 |
+
|
62 |
+
|
63 |
+
</form>
|
64 |
+
|
65 |
+
|
66 |
+
|
67 |
+
|
68 |
+
|
69 |
+
|
70 |
+
|
71 |
+
|
72 |
+
|
73 |
+
|
74 |
+
|
75 |
+
|
76 |
+
|
77 |
+
|
78 |
+
|
79 |
+
|
80 |
+
|
81 |
+
|
82 |
+
</div>
|
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.
|
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.
|
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.48
|
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.48');
|
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.
|
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.47 =
|
143 |
* 2020-04-29 add - No post found custom input field added
|
144 |
* 2020-04-29 fix - Media height issue fixed.
|
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.48
|
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.48 =
|
143 |
+
* 2020-04-29 fix - new layout media image source issue fixed.
|
144 |
+
* 2020-04-29 add - default layout xml file added and ready to import.
|
145 |
+
* 2020-04-30 add - added new media source "SiteOrigin first image"
|
146 |
+
|
147 |
+
|
148 |
= 2.0.47 =
|
149 |
* 2020-04-29 add - No post found custom input field added
|
150 |
* 2020-04-29 fix - Media height issue fixed.
|
sample-data/post-grid-layouts.xml
ADDED
@@ -0,0 +1,293 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 17:48" -->
|
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 17:48:06 +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&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: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:3:"yes";s:10:"image_size";s:9:"thumbnail";s:7:"link_to";s:4:"none";}s:11:"empty_thumb";a:3:{s:6:"enable";s:3:"yes";s:7:"link_to";s:4:"none";s:17:"default_thumb_src";s:59:"http://localhost/wp/wp-content/uploads/2020/02/single-1.jpg";}}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: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:94:".__ID__ a{text-decoration:none}.__ID__{vertical-align:top}.__ID__ .layer-content{padding:10px}";s:9:"custom_js";s:0:"";}]]></wp:meta_value>
|
79 |
+
</wp:postmeta>
|
80 |
+
</item>
|
81 |
+
<item>
|
82 |
+
<title>Layout - Flip-x</title>
|
83 |
+
<link>http://localhost/wp/post_grid_layout/layout-flip-x-2/</link>
|
84 |
+
<pubDate>Sat, 18 Apr 2020 14:03:17 +0000</pubDate>
|
85 |
+
<dc:creator><![CDATA[admin]]></dc:creator>
|
86 |
+
<guid isPermaLink="false">http://localhost/wp/?post_type=post_grid_layout&p=51612</guid>
|
87 |
+
<description></description>
|
88 |
+
<content:encoded><![CDATA[]]></content:encoded>
|
89 |
+
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
90 |
+
<wp:post_id>51612</wp:post_id>
|
91 |
+
<wp:post_date><![CDATA[2020-04-18 14:03:17]]></wp:post_date>
|
92 |
+
<wp:post_date_gmt><![CDATA[2020-04-18 14:03:17]]></wp:post_date_gmt>
|
93 |
+
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
|
94 |
+
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
95 |
+
<wp:post_name><![CDATA[layout-flip-x-2]]></wp:post_name>
|
96 |
+
<wp:status><![CDATA[publish]]></wp:status>
|
97 |
+
<wp:post_parent>0</wp:post_parent>
|
98 |
+
<wp:menu_order>0</wp:menu_order>
|
99 |
+
<wp:post_type><![CDATA[post_grid_layout]]></wp:post_type>
|
100 |
+
<wp:post_password><![CDATA[]]></wp:post_password>
|
101 |
+
<wp:is_sticky>0</wp:is_sticky>
|
102 |
+
<wp:postmeta>
|
103 |
+
<wp:meta_key><![CDATA[layout_options]]></wp:meta_key>
|
104 |
+
<wp:meta_value><![CDATA[a:2:{s:17:"preview_post_type";s:4:"post";s:18:"layout_preview_img";s:0:"";}]]></wp:meta_value>
|
105 |
+
</wp:postmeta>
|
106 |
+
<wp:postmeta>
|
107 |
+
<wp:meta_key><![CDATA[layout_elements_data]]></wp:meta_key>
|
108 |
+
<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:3:"yes";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:3:"yes";s:7:"link_to";s:9:"post_link";}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: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: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:"1587187731727";a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}}]]></wp:meta_value>
|
109 |
+
</wp:postmeta>
|
110 |
+
<wp:postmeta>
|
111 |
+
<wp:meta_key><![CDATA[custom_scripts]]></wp:meta_key>
|
112 |
+
<wp:meta_value><![CDATA[a:2:{s:10:"custom_css";s:1297:".__ID__ a{text-decoration:none}.__ID__{overflow:hidden;padding:0;-webkit-perspective:600px;perspective:600px;position:relative;vertical-align:top;width:100%}.__ID__:hover .layer-media{background:#fff none repeat scroll 0 0;-webkit-transform:rotateX(180deg);transform:rotateX(180deg);z-index:900}.__ID__ .layer-media{-webkit-backface-visibility:hidden;backface-visibility:hidden;background:#fff none repeat scroll 0 0;float:none;height:inherit;left:0;text-align:center;top:0;-webkit-transform:rotateX(0) rotateY(0);transform:rotateX(0) rotateY(0);-webkit-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transition:all .4s ease-in-out 0s;transition:all .4s ease-in-out 0s;width:inherit;z-index:900}.__ID__:hover .layer-content{background:#fff none repeat scroll 0 0;-webkit-transform:rotateX(0) rotateY(0);transform:rotateX(0) rotateY(0);z-index:1000}.__ID__ .layer-content{-webkit-backface-visibility:hidden;backface-visibility:hidden;background:#fff none repeat scroll 0 0;float:none;height:inherit;left:0;padding:0;position:absolute;top:0;-webkit-transform:rotateX(-179deg);transform:rotateX(-179deg);-webkit-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transition:all .4s ease-in-out 0s;transition:all .4s ease-in-out 0s;width:inherit;z-index:800;padding:10px}";s:9:"custom_js";s:0:"";}]]></wp:meta_value>
|
113 |
+
</wp:postmeta>
|
114 |
+
<wp:postmeta>
|
115 |
+
<wp:meta_key><![CDATA[_dp_original]]></wp:meta_key>
|
116 |
+
<wp:meta_value><![CDATA[51600]]></wp:meta_value>
|
117 |
+
</wp:postmeta>
|
118 |
+
<wp:postmeta>
|
119 |
+
<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
|
120 |
+
<wp:meta_value><![CDATA[1]]></wp:meta_value>
|
121 |
+
</wp:postmeta>
|
122 |
+
</item>
|
123 |
+
<item>
|
124 |
+
<title>Layout - Thumb go Left</title>
|
125 |
+
<link>http://localhost/wp/post_grid_layout/layout-thumbgoleft/</link>
|
126 |
+
<pubDate>Sat, 18 Apr 2020 14:03:45 +0000</pubDate>
|
127 |
+
<dc:creator><![CDATA[admin]]></dc:creator>
|
128 |
+
<guid isPermaLink="false">http://localhost/wp/?post_type=post_grid_layout&p=51613</guid>
|
129 |
+
<description></description>
|
130 |
+
<content:encoded><![CDATA[]]></content:encoded>
|
131 |
+
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
132 |
+
<wp:post_id>51613</wp:post_id>
|
133 |
+
<wp:post_date><![CDATA[2020-04-18 14:03:45]]></wp:post_date>
|
134 |
+
<wp:post_date_gmt><![CDATA[2020-04-18 14:03:45]]></wp:post_date_gmt>
|
135 |
+
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
|
136 |
+
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
137 |
+
<wp:post_name><![CDATA[layout-thumbgoleft]]></wp:post_name>
|
138 |
+
<wp:status><![CDATA[publish]]></wp:status>
|
139 |
+
<wp:post_parent>0</wp:post_parent>
|
140 |
+
<wp:menu_order>0</wp:menu_order>
|
141 |
+
<wp:post_type><![CDATA[post_grid_layout]]></wp:post_type>
|
142 |
+
<wp:post_password><![CDATA[]]></wp:post_password>
|
143 |
+
<wp:is_sticky>0</wp:is_sticky>
|
144 |
+
<wp:postmeta>
|
145 |
+
<wp:meta_key><![CDATA[layout_options]]></wp:meta_key>
|
146 |
+
<wp:meta_value><![CDATA[a:2:{s:17:"preview_post_type";s:4:"post";s:18:"layout_preview_img";s:0:"";}]]></wp:meta_value>
|
147 |
+
</wp:postmeta>
|
148 |
+
<wp:postmeta>
|
149 |
+
<wp:meta_key><![CDATA[layout_elements_data]]></wp:meta_key>
|
150 |
+
<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:3:"yes";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:3:"yes";s:7:"link_to";s:9:"post_link";}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: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: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:"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: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>
|
151 |
+
</wp:postmeta>
|
152 |
+
<wp:postmeta>
|
153 |
+
<wp:meta_key><![CDATA[custom_scripts]]></wp:meta_key>
|
154 |
+
<wp:meta_value><![CDATA[a:2:{s:10:"custom_css";s:510:".__ID__ a{text-decoration:none}.__ID__{overflow:hidden;position:relative;vertical-align:top}.__ID__:hover .layer-media{opacity:0;-webkit-transform:scale(.5) translateX(-100%);-ms-transform:scale(.5) translateX(-100%);transform:scale(.5) translateX(-100%)}.__ID__ .layer-media{-webkit-transition:all 1s ease 0s;transition:all 1s ease 0s;width:100%}.__ID__:hover .layer-content{opacity:1}.__ID__ .layer-content{left:0;opacity:0;position:absolute;top:0;-webkit-transition:all 1s ease 0s;transition:all 1s ease 0s}";s:9:"custom_js";s:0:"";}]]></wp:meta_value>
|
155 |
+
</wp:postmeta>
|
156 |
+
<wp:postmeta>
|
157 |
+
<wp:meta_key><![CDATA[_dp_original]]></wp:meta_key>
|
158 |
+
<wp:meta_value><![CDATA[51600]]></wp:meta_value>
|
159 |
+
</wp:postmeta>
|
160 |
+
<wp:postmeta>
|
161 |
+
<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
|
162 |
+
<wp:meta_value><![CDATA[1]]></wp:meta_value>
|
163 |
+
</wp:postmeta>
|
164 |
+
</item>
|
165 |
+
<item>
|
166 |
+
<title>Layout - Thumb-rounded</title>
|
167 |
+
<link>http://localhost/wp/post_grid_layout/layout-thumbrounded-2/</link>
|
168 |
+
<pubDate>Sat, 18 Apr 2020 14:04:05 +0000</pubDate>
|
169 |
+
<dc:creator><![CDATA[admin]]></dc:creator>
|
170 |
+
<guid isPermaLink="false">http://localhost/wp/?post_type=post_grid_layout&p=51614</guid>
|
171 |
+
<description></description>
|
172 |
+
<content:encoded><![CDATA[]]></content:encoded>
|
173 |
+
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
174 |
+
<wp:post_id>51614</wp:post_id>
|
175 |
+
<wp:post_date><![CDATA[2020-04-18 14:04:05]]></wp:post_date>
|
176 |
+
<wp:post_date_gmt><![CDATA[2020-04-18 14:04:05]]></wp:post_date_gmt>
|
177 |
+
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
|
178 |
+
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
179 |
+
<wp:post_name><![CDATA[layout-thumbrounded-2]]></wp:post_name>
|
180 |
+
<wp:status><![CDATA[publish]]></wp:status>
|
181 |
+
<wp:post_parent>0</wp:post_parent>
|
182 |
+
<wp:menu_order>0</wp:menu_order>
|
183 |
+
<wp:post_type><![CDATA[post_grid_layout]]></wp:post_type>
|
184 |
+
<wp:post_password><![CDATA[]]></wp:post_password>
|
185 |
+
<wp:is_sticky>0</wp:is_sticky>
|
186 |
+
<wp:postmeta>
|
187 |
+
<wp:meta_key><![CDATA[layout_options]]></wp:meta_key>
|
188 |
+
<wp:meta_value><![CDATA[a:2:{s:17:"preview_post_type";s:4:"post";s:18:"layout_preview_img";s:0:"";}]]></wp:meta_value>
|
189 |
+
</wp:postmeta>
|
190 |
+
<wp:postmeta>
|
191 |
+
<wp:meta_key><![CDATA[layout_elements_data]]></wp:meta_key>
|
192 |
+
<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:3:"yes";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:3:"yes";s:7:"link_to";s:9:"post_link";}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: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: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:"1587187731727";a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}}]]></wp:meta_value>
|
193 |
+
</wp:postmeta>
|
194 |
+
<wp:postmeta>
|
195 |
+
<wp:meta_key><![CDATA[custom_scripts]]></wp:meta_key>
|
196 |
+
<wp:meta_value><![CDATA[a:2:{s:10:"custom_css";s:125:".__ID__ a{text-decoration:none}.__ID__ .layer-media{background:#fff none repeat scroll 0 0;border-radius:50%;overflow:hidden}";s:9:"custom_js";s:0:"";}]]></wp:meta_value>
|
197 |
+
</wp:postmeta>
|
198 |
+
<wp:postmeta>
|
199 |
+
<wp:meta_key><![CDATA[_dp_original]]></wp:meta_key>
|
200 |
+
<wp:meta_value><![CDATA[51600]]></wp:meta_value>
|
201 |
+
</wp:postmeta>
|
202 |
+
<wp:postmeta>
|
203 |
+
<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
|
204 |
+
<wp:meta_value><![CDATA[1]]></wp:meta_value>
|
205 |
+
</wp:postmeta>
|
206 |
+
</item>
|
207 |
+
<item>
|
208 |
+
<title>Layout - Contentbottom</title>
|
209 |
+
<link>http://localhost/wp/post_grid_layout/layout-flat-2/</link>
|
210 |
+
<pubDate>Sat, 18 Apr 2020 14:04:45 +0000</pubDate>
|
211 |
+
<dc:creator><![CDATA[admin]]></dc:creator>
|
212 |
+
<guid isPermaLink="false">http://localhost/wp/?post_type=post_grid_layout&p=51615</guid>
|
213 |
+
<description></description>
|
214 |
+
<content:encoded><![CDATA[]]></content:encoded>
|
215 |
+
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
216 |
+
<wp:post_id>51615</wp:post_id>
|
217 |
+
<wp:post_date><![CDATA[2020-04-18 14:04:45]]></wp:post_date>
|
218 |
+
<wp:post_date_gmt><![CDATA[2020-04-18 14:04:45]]></wp:post_date_gmt>
|
219 |
+
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
|
220 |
+
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
221 |
+
<wp:post_name><![CDATA[layout-flat-2]]></wp:post_name>
|
222 |
+
<wp:status><![CDATA[publish]]></wp:status>
|
223 |
+
<wp:post_parent>0</wp:post_parent>
|
224 |
+
<wp:menu_order>0</wp:menu_order>
|
225 |
+
<wp:post_type><![CDATA[post_grid_layout]]></wp:post_type>
|
226 |
+
<wp:post_password><![CDATA[]]></wp:post_password>
|
227 |
+
<wp:is_sticky>0</wp:is_sticky>
|
228 |
+
<wp:postmeta>
|
229 |
+
<wp:meta_key><![CDATA[layout_options]]></wp:meta_key>
|
230 |
+
<wp:meta_value><![CDATA[a:2:{s:17:"preview_post_type";s:4:"post";s:18:"layout_preview_img";s:0:"";}]]></wp:meta_value>
|
231 |
+
</wp:postmeta>
|
232 |
+
<wp:postmeta>
|
233 |
+
<wp:meta_key><![CDATA[layout_elements_data]]></wp:meta_key>
|
234 |
+
<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:3:"yes";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:3:"yes";s:7:"link_to";s:9:"post_link";}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: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: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: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: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:"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: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>
|
235 |
+
</wp:postmeta>
|
236 |
+
<wp:postmeta>
|
237 |
+
<wp:meta_key><![CDATA[custom_scripts]]></wp:meta_key>
|
238 |
+
<wp:meta_value><![CDATA[a:2:{s:10:"custom_css";s:437:".__ID__ a{text-decoration:none}.__ID__{overflow:hidden;position:relative;vertical-align:top}.__ID__:hover .layer-media{z-index:9}.__ID__ .layer-media{-webkit-transition:all .4s ease 0s;transition:all .4s ease 0s;left:0;top:0;width:100%}.__ID__ .layer-content{background:rgba(0,0,0,.3) none repeat scroll 0 0;bottom:0;color:#fff;left:0;position:absolute;-webkit-transition:all 1s ease 0s;transition:all 1s ease 0s;width:100%;padding:10px}";s:9:"custom_js";s:0:"";}]]></wp:meta_value>
|
239 |
+
</wp:postmeta>
|
240 |
+
<wp:postmeta>
|
241 |
+
<wp:meta_key><![CDATA[_dp_original]]></wp:meta_key>
|
242 |
+
<wp:meta_value><![CDATA[51600]]></wp:meta_value>
|
243 |
+
</wp:postmeta>
|
244 |
+
<wp:postmeta>
|
245 |
+
<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
|
246 |
+
<wp:meta_value><![CDATA[1]]></wp:meta_value>
|
247 |
+
</wp:postmeta>
|
248 |
+
</item>
|
249 |
+
<item>
|
250 |
+
<title>Layout - Thumb Spin right</title>
|
251 |
+
<link>http://localhost/wp/post_grid_layout/layout-flat-3/</link>
|
252 |
+
<pubDate>Sat, 18 Apr 2020 14:05:16 +0000</pubDate>
|
253 |
+
<dc:creator><![CDATA[admin]]></dc:creator>
|
254 |
+
<guid isPermaLink="false">http://localhost/wp/?post_type=post_grid_layout&p=51616</guid>
|
255 |
+
<description></description>
|
256 |
+
<content:encoded><![CDATA[]]></content:encoded>
|
257 |
+
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
258 |
+
<wp:post_id>51616</wp:post_id>
|
259 |
+
<wp:post_date><![CDATA[2020-04-18 14:05:16]]></wp:post_date>
|
260 |
+
<wp:post_date_gmt><![CDATA[2020-04-18 14:05:16]]></wp:post_date_gmt>
|
261 |
+
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
|
262 |
+
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
263 |
+
<wp:post_name><![CDATA[layout-flat-3]]></wp:post_name>
|
264 |
+
<wp:status><![CDATA[publish]]></wp:status>
|
265 |
+
<wp:post_parent>0</wp:post_parent>
|
266 |
+
<wp:menu_order>0</wp:menu_order>
|
267 |
+
<wp:post_type><![CDATA[post_grid_layout]]></wp:post_type>
|
268 |
+
<wp:post_password><![CDATA[]]></wp:post_password>
|
269 |
+
<wp:is_sticky>0</wp:is_sticky>
|
270 |
+
<wp:postmeta>
|
271 |
+
<wp:meta_key><![CDATA[layout_options]]></wp:meta_key>
|
272 |
+
<wp:meta_value><![CDATA[a:2:{s:17:"preview_post_type";s:4:"post";s:18:"layout_preview_img";s:0:"";}]]></wp:meta_value>
|
273 |
+
</wp:postmeta>
|
274 |
+
<wp:postmeta>
|
275 |
+
<wp:meta_key><![CDATA[layout_elements_data]]></wp:meta_key>
|
276 |
+
<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: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:3:"yes";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:3:"yes";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:0:"";s:11:"medium_type";s:12:"fixed_height";s:6:"medium";s:0:"";s:10:"small_type";s:10:"max_height";s:5:"small";s:0:"";}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:"1587187731727";a:1:{s:11:"wrapper_end";a:1:{s:10:"wrapper_id";s:0:"";}}}]]></wp:meta_value>
|
277 |
+
</wp:postmeta>
|
278 |
+
<wp:postmeta>
|
279 |
+
<wp:meta_key><![CDATA[custom_scripts]]></wp:meta_key>
|
280 |
+
<wp:meta_value><![CDATA[a:2:{s:10:"custom_css";s:526:".__ID__ a{text-decoration:none}.__ID__{overflow:hidden;position:relative;vertical-align:top}.__ID__:hover .layer-media{-webkit-transform:rotate(30deg);-ms-transform:rotate(30deg);transform:rotate(30deg);opacity:0}.__ID__ .layer-media{-webkit-transition:all 1s ease 0s;transition:all 1s ease 0s;left:0;top:0;width:100%}.__ID__:hover .layer-content{opacity:1}.__ID__ .layer-content{left:0;opacity:0;position:absolute;top:0;width:100%;-webkit-transition:all 1s ease 0s;transition:all 1s ease 0s}.__ID__ .layer-hover{display:none}";s:9:"custom_js";s:0:"";}]]></wp:meta_value>
|
281 |
+
</wp:postmeta>
|
282 |
+
<wp:postmeta>
|
283 |
+
<wp:meta_key><![CDATA[_dp_original]]></wp:meta_key>
|
284 |
+
<wp:meta_value><![CDATA[51600]]></wp:meta_value>
|
285 |
+
</wp:postmeta>
|
286 |
+
<wp:postmeta>
|
287 |
+
<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
|
288 |
+
<wp:meta_value><![CDATA[1]]></wp:meta_value>
|
289 |
+
</wp:postmeta>
|
290 |
+
</item>
|
291 |
+
</channel>
|
292 |
+
</rss>
|
293 |
+
|
sample/default-layouts.xml
DELETED
@@ -1,1911 +0,0 @@
|
|
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&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&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&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&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&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&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 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|