Acme Demo Setup - Version 2.0.0

Version Description

Download this release

Release Info

Developer acmethemes
Plugin Icon 128x128 Acme Demo Setup
Version 2.0.0
Comparing to
See all releases

Code changes from version 1.0.7 to 2.0.0

Files changed (42) hide show
  1. acme-demo-setup.php +65 -28
  2. assets/acme-demo-setup.css +61 -0
  3. assets/acme-demo-setup.js +33 -0
  4. inc/admin/upload.php +0 -229
  5. inc/assets/js/acme-demo-setup.js +0 -50
  6. inc/frameworks/customizer-export-import/class-cei-core.php +0 -199
  7. inc/frameworks/customizer-export-import/class-cei-option.php +0 -28
  8. inc/frameworks/widget-importer-exporter/import.php +0 -244
  9. inc/frameworks/widget-importer-exporter/widgets.php +0 -33
  10. inc/frameworks/wordpress-importer/parsers.php +0 -690
  11. inc/frameworks/wordpress-importer/wordpress-importer.php +0 -1023
  12. inc/hooks/after-demo-setup.php +0 -80
  13. inc/hooks/before-demo-setup.php +0 -44
  14. inc/info.txt +0 -14
  15. inc/init.php +0 -21
  16. includes/activator.php +35 -0
  17. includes/deactivator.php +38 -0
  18. includes/demo-data/acmeblog/demo-1/content.json +1 -0
  19. includes/demo-data/acmeblog/demo-1/options.json +1 -0
  20. includes/demo-data/acmeblog/demo-1/screenshot.jpg +0 -0
  21. includes/demo-data/acmeblog/demo-1/widgets.json +1 -0
  22. includes/demo-data/acmeblogpro/demo-1/content.json +1 -0
  23. includes/demo-data/acmeblogpro/demo-1/options.json +1 -0
  24. includes/demo-data/acmeblogpro/demo-1/screenshot.jpg +0 -0
  25. includes/demo-data/acmeblogpro/demo-1/widgets.json +1 -0
  26. includes/demo-data/acmeblogpro/demo-2/content.json +1 -0
  27. includes/demo-data/acmeblogpro/demo-2/options.json +1 -0
  28. includes/demo-data/acmeblogpro/demo-2/screenshot.jpg +0 -0
  29. includes/demo-data/acmeblogpro/demo-2/widgets.json +1 -0
  30. includes/demo-data/acmeblogpro/demo-3/content.json +1 -0
  31. includes/demo-data/acmeblogpro/demo-3/options.json +1 -0
  32. includes/demo-data/acmeblogpro/demo-3/screenshot.jpg +0 -0
  33. includes/demo-data/acmeblogpro/demo-3/widgets.json +1 -0
  34. includes/demo-data/acmeblogpro/demo-4/content.json +1 -0
  35. includes/demo-data/acmeblogpro/demo-4/options.json +1 -0
  36. includes/demo-data/acmeblogpro/demo-4/screenshot.jpg +0 -0
  37. includes/demo-data/acmeblogpro/demo-4/widgets.json +1 -0
  38. includes/demo-data/acmephoto/demo-1/content.json +1 -0
  39. includes/demo-data/acmephoto/demo-1/options.json +1 -0
  40. includes/demo-data/acmephoto/demo-1/screenshot.jpg +0 -0
  41. includes/demo-data/acmephoto/demo-1/widgets.json +1 -0
  42. includes/demo-data/acmephoto/demo-2/content.json +1 -0
acme-demo-setup.php CHANGED
@@ -1,44 +1,81 @@
1
  <?php
2
- /*
3
- Plugin Name: Acme Demo Setup
4
- Plugin URI:
5
- Description: One click demo import
6
- Version: 1.0.7
7
- Author: Acme Themes
8
- Author URI: https://www.acmethemes.com/
9
- License: GPLv2 or later
10
- */
11
-
12
- /*Make sure we don't expose any info if called directly*/
13
- if ( !function_exists( 'add_action' ) ) {
14
  echo 'Hi there! I\'m just a plugin, not much I can do when called directly.';
15
  exit;
16
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  /*Define Constants for this plugin*/
18
- define( 'ACME_DEMO_SETUP_VERSION', '1.0.7' );
 
19
  define( 'ACME_DEMO_SETUP_PATH', plugin_dir_path( __FILE__ ) );
20
  define( 'ACME_DEMO_SETUP_URL', plugin_dir_url( __FILE__ ) );
 
 
 
 
 
 
 
 
 
 
 
21
 
22
- /*Now lets init the functionality of this plugin*/
23
- require_once( ACME_DEMO_SETUP_PATH . '/inc/init.php' );
24
 
25
  /**
26
- * Load plugin textdomain.
27
- * see here https://ulrich.pogson.ch/load-theme-plugin-translations
28
  */
29
- if ( ! function_exists( 'acme_demo_setup_load_textdomain' ) ) :
30
- function acme_demo_setup_load_textdomain() {
31
 
32
- $domain = 'acme-demo-setup';
33
- $locale = apply_filters( 'plugin_locale', get_locale(), $domain );
34
 
35
- // wp-content/languages/plugin-name/plugin-name-de_DE.mo
36
- load_textdomain( 'acme-demo-setup', trailingslashit( WP_LANG_DIR ) . $domain . '/' . $domain . '-' . $locale . '.mo' );
 
 
 
 
 
 
37
 
38
- // wp-content/plugins/plugin-name/languages/plugin-name-de_DE.mo
39
- load_plugin_textdomain( 'acme-demo-setup', false, dirname( plugin_basename( __FILE__ ) ) . '/languages' );
40
- }
41
- endif;
42
- add_action( 'plugins_loaded', 'acme_demo_setup_load_textdomain' );
43
 
 
 
 
 
 
 
 
 
 
 
44
 
 
 
 
 
 
 
1
  <?php
2
+ // If this file is called directly, abort.
3
+ if ( ! defined( 'WPINC' ) ) {
 
 
 
 
 
 
 
 
 
 
4
  echo 'Hi there! I\'m just a plugin, not much I can do when called directly.';
5
  exit;
6
  }
7
+
8
+ /**
9
+ *
10
+ * @link https://www.acmethemes.com/
11
+ * @since 2.0.0
12
+ * @package Acme Themes
13
+ * @subpackage Acme Demo Setup
14
+ *
15
+ * @wordpress-plugin
16
+ * Plugin Name: Acme Demo Setup
17
+ * Plugin URI:
18
+ * Description: Install Template Demo Library for Acme Themes
19
+ * Version: 2.0.0
20
+ * Author: acmethemes
21
+ * Author URI: https://www.acmethemes.com/
22
+ * License: GPL-2.0+
23
+ * License URI: http://www.gnu.org/licenses/gpl-2.0.txt
24
+ * Text Domain: acme-demo-setup
25
+ * Domain Path: /languages
26
+ */
27
+
28
  /*Define Constants for this plugin*/
29
+ define( 'ACME_DEMO_SETUP_VERSION', '2.0.0' );
30
+ define( 'ACME_DEMO_SETUP_PLUGIN_NAME', 'acme-demo-setup' );
31
  define( 'ACME_DEMO_SETUP_PATH', plugin_dir_path( __FILE__ ) );
32
  define( 'ACME_DEMO_SETUP_URL', plugin_dir_url( __FILE__ ) );
33
+ define( 'ACME_DEMO_SETUP_TEMPLATE_URL', ACME_DEMO_SETUP_URL.'includes/demo-data/' );
34
+ define( 'ACME_DEMO_SETUP_SCRIPT_PREFIX', ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '' );
35
+
36
+ /**
37
+ * The code that runs during plugin activation.
38
+ * This action is documented in includes/class-acme-demo-setup-activator.php
39
+ */
40
+ function activate_acme_demo_setup() {
41
+ require_once ACME_DEMO_SETUP_PATH . 'includes/activator.php';
42
+ Acme_Demo_Setup_Activator::activate();
43
+ }
44
 
 
 
45
 
46
  /**
47
+ * The core plugin class that is used to define internationalization,
48
+ * admin-specific hooks, and public-facing site hooks.
49
  */
50
+ require ACME_DEMO_SETUP_PATH . 'includes/init.php';
 
51
 
 
 
52
 
53
+ /**
54
+ * The code that runs during plugin deactivation.
55
+ * This action is documented in includes/class-acme-demo-setup-deactivator.php
56
+ */
57
+ function deactivate_acme_demo_setup() {
58
+ require_once ACME_DEMO_SETUP_PATH . 'includes/deactivator.php';
59
+ Acme_Demo_Setup_Deactivator::deactivate();
60
+ }
61
 
62
+ register_activation_hook( __FILE__, 'activate_acme_demo_setup' );
63
+ register_deactivation_hook( __FILE__, 'deactivate_acme_demo_setup' );
 
 
 
64
 
65
+ /**
66
+ * Begins execution of the plugin.
67
+ *
68
+ * Since everything within the plugin is registered via hooks,
69
+ * then kicking off the plugin from this point in the file does
70
+ * not affect the page life cycle.
71
+ *
72
+ * @since 1.0.0
73
+ */
74
+ if( !function_exists( 'run_acme_demo_setup')){
75
 
76
+ function run_acme_demo_setup() {
77
+
78
+ return Acme_Demo_Setup::instance();
79
+ }
80
+ run_acme_demo_setup()->run();
81
+ }
assets/acme-demo-setup.css ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .at-gsm {
2
+ display: none;
3
+ }
4
+ .ads-container {
5
+ padding: 20px 10px;
6
+ display: -webkit-flex;
7
+ display: -moz-flex;
8
+ display: -ms-flex;
9
+ display: -o-flex;
10
+ display: flex;
11
+ -ms-align-items: center;
12
+ align-items: center;
13
+ }
14
+
15
+ .ads-container .ads-screenshot {
16
+ width: 20%;
17
+ max-width: 200px;
18
+ display: inline-block;
19
+ vertical-align: top;
20
+ border: 2px solid #ddd;
21
+ border-radius: 4px;
22
+ }
23
+
24
+ .ads-container .ads-notice {
25
+ width: 70%;
26
+ display: block;
27
+ vertical-align: top;
28
+ padding: 0 20px;
29
+ }
30
+ .ads-container .ads-notice .plugin-install-notice {
31
+ border-top: 1px solid #ddd;
32
+ padding-top: 15px;
33
+ margin-top: 25px;
34
+ margin-bottom: 10px;
35
+ }
36
+ .ads-container a.ads-gsm-btn:before{
37
+ margin: -2px 5px 0 -2px;
38
+ vertical-align: middle;
39
+ }
40
+
41
+ .ads-notice h2 {
42
+ margin: 0 0 10px;
43
+ font-weight: 400;
44
+ line-height: 1.3;
45
+ }
46
+
47
+ .ads-container .ads-notice p {
48
+ margin: 1em 0;
49
+ padding: 0;
50
+ color: #72777c;
51
+ }
52
+
53
+ @media (max-width: 600px) {
54
+ .ads-container .ads-screenshot {
55
+ display: none;
56
+ }
57
+ .ads-container .ads-notice {
58
+ padding: 0;
59
+ width: 100%;
60
+ }
61
+ }
assets/acme-demo-setup.js ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * Getting Started
3
+ */
4
+ jQuery( document ).ready( function ( $ ) {
5
+
6
+ $( '.ads-gsm-btn' ).click( function ( e ) {
7
+ e.preventDefault();
8
+
9
+ // Show updating gif icon.
10
+ $( this ).addClass( 'updating-message' );
11
+
12
+ // Change button text.
13
+ $( this ).text( acme_demo_setup.btn_text );
14
+
15
+ $.ajax({
16
+ type: "POST",
17
+ url: ajaxurl,
18
+ data: {
19
+ action : 'acme_demo_setup_getting_started',
20
+ security : acme_demo_setup.nonce
21
+ },
22
+ success:function( response ) {
23
+ var redirect_uri;
24
+
25
+ redirect_uri = response.data.redirect;
26
+ window.location.href = redirect_uri;
27
+ },
28
+ error: function( xhr, ajaxOptions, thrownError ){
29
+ console.log(thrownError);
30
+ }
31
+ });
32
+ } );
33
+ } );
inc/admin/upload.php DELETED
@@ -1,229 +0,0 @@
1
- <?php
2
- /**
3
- * Acme Demo Setup
4
- *
5
- * @package Acme Themes
6
- * @subpackage Acme Demo Setup
7
- */
8
- if( !class_exists( 'Acme_Demo_Setup') ):
9
- class Acme_Demo_Setup {
10
- /**
11
- * @return void
12
- */
13
- function __construct( ) {
14
- add_action( 'mime_types', array( $this, 'mime_types' ) );
15
- add_action( 'admin_menu', array( $this, 'menu' ) );
16
- /* enqueue script and style for about page */
17
- add_action( 'admin_enqueue_scripts', array( $this, 'style_and_scripts' ) );
18
- /*ajax callback for demo content installation*/
19
- add_action( 'wp_ajax_acme_demo_setup_ajax_setup', array( $this, 'handler' ) );
20
-
21
- }
22
- /**
23
- * Load css and scripts for the about page
24
- */
25
- public function style_and_scripts( $hook_suffix ) {
26
- if ( 'appearance_page_acme-demo-setup' == $hook_suffix ) {
27
- wp_enqueue_script( 'acme-demo-setup', ACME_DEMO_SETUP_URL.'inc/assets/js/acme-demo-setup.js', array( 'jquery' ) );
28
- wp_localize_script( 'acme-demo-setup', 'acme_demo_setup_object', array(
29
- 'ajaxurl' => admin_url( 'admin-ajax.php' ),
30
- 'importing' => esc_html__('Importing','acme-demo-setup'),
31
- 'imported' => esc_html__('Task Completed, view the log below','acme-demo-setup')
32
- ) );
33
- }
34
- }
35
- /**
36
- * @return array
37
- */
38
- function mime_types( $mimes ) {
39
- $add_mimes = array(
40
- 'dat' => 'text/plain',
41
- 'xml' => 'application/xml',
42
- 'wie' => 'text/html'
43
- );
44
-
45
- return array_merge( $mimes, $add_mimes );
46
- }
47
-
48
- /**
49
- * Create admin pages in menu
50
- *
51
- * @return void
52
- */
53
- function menu() {
54
- add_theme_page( __( 'Acme Demo Setup', 'acme-demo-setup' ), __( 'Acme Demo Setup', 'acme-demo-setup' ), 'upload_files', 'acme-demo-setup', array( $this, 'screen' ) );
55
- }
56
-
57
- /**
58
- * The Admin Screen
59
- */
60
- function screen() {
61
- echo '<div class="wrap">';
62
- echo '<h2>' . __( 'Acme Demo Setup', 'acme-demo-setup' ) . '</h2>';
63
- $this->handler();
64
- $this->import_form();
65
- echo '</div>';
66
- }
67
-
68
- /**
69
- * Handle the demo content upload and called to process
70
- *
71
- * @return void
72
- */
73
- function handler() {
74
- $error = '';
75
- $required_files = array();
76
- if ( isset( $_FILES[ 'upload-zip-archive' ][ 'name' ] ) && ! empty( $_FILES[ 'upload-zip-archive' ][ 'name' ] ) ) {
77
-
78
- /*check for security*/
79
- if ( ! current_user_can( 'upload_files' ) ) {
80
- wp_die( __( 'Sorry, you are not allowed to install demo on this site.', 'acme-demo-setup' ) );
81
- }
82
- check_admin_referer( 'acme-demo-setup' );
83
-
84
- /*file process*/
85
- esc_html_e('Uploading Zip...','acme-demo-import');
86
- echo "<br />";
87
- $upload_zip_archive = $_FILES[ 'upload-zip-archive' ];
88
- WP_Filesystem();
89
- global $wp_filesystem;
90
- $upload_dir = wp_upload_dir();
91
- $destination = $upload_dir['basedir'] . '/acme-demo-importer/';
92
-
93
- /*the zip file shouldn't content greater than 3 files*/
94
- if( function_exists( 'ZipArchive')){
95
- $za = new ZipArchive();
96
- $za->open( $upload_zip_archive['tmp_name'] );
97
- $file_on_zip = $za->numFiles;
98
- if( $file_on_zip > 3 ){
99
- $error[] = __( "Invalid ZIP greater than 3 files" ,'acme-demo-importer');
100
- }
101
- }
102
-
103
- /*unzip file*/
104
- esc_html_e('Unzipping File...','acme-demo-import');
105
- echo "<br />";
106
- $unzipfile = unzip_file( $upload_zip_archive['tmp_name'], $destination);
107
- if ( !$unzipfile ) {
108
- $error[] = __( "Error on unzipping, Please try again" ,'acme-demo-importer');
109
- }
110
-
111
- /*get required file*/
112
- $dirlist = $wp_filesystem->dirlist($destination);
113
- foreach ( (array) $dirlist as $filename => $fileinfo ) {
114
- $filetype = wp_check_filetype($filename);
115
- $filetype_alternative = substr($filename, strrpos($filename, '.') + 1);
116
- if( 'xml' == $filetype['ext'] || 'xml' == $filetype_alternative){
117
- $required_files['xml'] = $destination.$filename;
118
- }
119
- elseif ('wie' == $filetype['ext'] || 'wie' == $filetype_alternative){
120
- $required_files['wie'] = $destination.$filename;
121
- }
122
- elseif ( 'dat' == $filetype['ext'] || 'dat' == $filetype_alternative){
123
- $required_files['dat'] = $destination.$filename;
124
- }
125
- else{
126
- $error[] = sprintf( __( "Invalid ZIP destination file %s" ,'acme-demo-importer'),$destination.$filename );
127
- }
128
- }
129
-
130
- /*prepare array of files to import*/
131
- if( !isset( $required_files['xml'] ) || empty( $required_files['xml'] )){
132
- $error[] = __( "xml file not included" ,'acme-demo-importer');
133
-
134
- }
135
- if( !isset( $required_files['wie'] ) && empty( $required_files['wie'] )){
136
- $error[] = __( "wie file not included" ,'acme-demo-importer');
137
-
138
- }
139
- if( !isset( $required_files['dat'] ) && empty( $required_files['dat'] )){
140
- $error[] = __( "dat file not included" ,'acme-demo-importer');
141
- }
142
- if( is_array( $error ) && !empty( $error ) ){
143
- foreach ( $error as $e ){
144
- echo $e;
145
- echo "<br />";
146
- }
147
- }
148
-
149
- /*process import*/
150
- $this->import( $required_files , 0);
151
-
152
- /*delete demo files*/
153
- $wp_filesystem->rmdir($destination, true );
154
-
155
- exit;
156
- }
157
- }
158
-
159
- /*import */
160
- function import( $required_files, $exit = 1 ){
161
- /*before import*/
162
- do_action( 'acme_demo_setup_before_import',$required_files );
163
-
164
- /*xml demo import*/
165
- if( isset( $required_files['xml'] ) && !empty( $required_files['xml'] ) ){
166
- // Try to update PHP memory limit (so that it does not run out of it).
167
- ini_set( 'memory_limit', apply_filters( 'acme_demo_setup_memory_limit', '50M' ) );
168
-
169
- $xml_import = new Acme_Demo_Setup_Wp_Import();
170
- $xml_import->fetch_attachments = true;
171
- set_time_limit(0);
172
- $xml_import -> import( $required_files['xml'] );
173
-
174
- esc_html_e('Imported Demo Content xml...','acme-demo-import');
175
- echo "<br /><br />";
176
- }
177
-
178
- /*customizer import*/
179
- if( isset( $required_files['dat'] ) && !empty( $required_files['dat'] ) ){
180
-
181
- $wie_import = new Acme_Demo_Setup_CEI_Core();
182
- $wie_import -> _import( $required_files['dat'] );
183
-
184
- esc_html_e('Imported Customizer Data...','acme-demo-import');
185
- echo "<br /><br />";
186
- }
187
-
188
- /*widget import*/
189
- if( isset( $required_files['dat'] ) && !empty( $required_files['dat'] ) ){
190
-
191
- acme_demo_setup_wie_process_import_file( $required_files['wie'] );
192
-
193
- esc_html_e('Imported Widget Data...','acme-demo-import');
194
- echo "<br /><br />";
195
- }
196
-
197
- do_action( 'acme_demo_setup_after_import',$required_files );
198
-
199
- printf( esc_html__('All Done Visit your %s site %s','acme-demo-import'),'<a href='.esc_url( get_home_url()).' target="_blank">','</a>' );
200
- echo "<br /><br />";
201
-
202
- if( $exit ){
203
- exit;
204
- }
205
- }
206
-
207
- /**
208
- * The upload form
209
- *
210
- * @param null
211
- */
212
- function import_form( ) {
213
- echo '<form action="" method="post" enctype="multipart/form-data" id="acme-demo-setup-upload-zip-form">';
214
- echo '<h3 class="media-title">'. __( 'Upload a zip file containing demo content', 'acme-demo-setup' ) .'</h3>';
215
- echo '<p><input type="file" name="upload-zip-archive" id="upload-zip-archive" size="50" /></p>';
216
- echo '<p>'. sprintf( __( 'Maximum upload file size: %s','acme-demo-setup' ), size_format( wp_max_upload_size() ) ) .'</p>';
217
- wp_nonce_field( 'acme-demo-setup' );
218
- submit_button( __( 'Upload and Import', 'acme-demo-setup' ) );
219
- echo "<div id='at-demo-ajax-install-error' style='display: none;color: #d54e21'>".esc_html__('Select File and Try Again!','acme-demo-setup')."</div>";
220
- echo '</form>';
221
- echo "<span id='at-demo-ajax-install-result-loading' class='button button-primary' style='display: none'>".esc_html__('Importing...','acme-demo-setup')."<img src='".admin_url()."images/loading.gif' style='padding-left:15px'>"."</span>";
222
- echo "<h4 id='at-demo-ajax-install-result-title' style='display: none'>".esc_html__('Task Completed, view the log below','acme-demo-setup')."</h4>";
223
- echo "<h4 id='at-demo-ajax-install-result-error' style='display: none'>".sprintf( esc_html__('Some Error Occur While Importing Demo, Please contact %s theme support %s ','acme-demo-setup'),'<a href="https://www.acmethemes.com/supports/" target="_blank">','</a>' )."</h4>";
224
- echo "<div id='at-demo-ajax-install-result'></div>";
225
- }
226
-
227
- }//end class
228
- endif;
229
- $Acme_Demo_Setup = new Acme_Demo_Setup();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
inc/assets/js/acme-demo-setup.js DELETED
@@ -1,50 +0,0 @@
1
- jQuery(document).ready(function ($) {
2
- $('#acme-demo-setup-upload-zip-form').submit(function (e) {
3
- if( window.FormData === undefined ){
4
- return true;
5
- }
6
- e.preventDefault();
7
- var fd = new FormData();
8
- var file = $(this).find('#upload-zip-archive');
9
- if(!file.val()){
10
- jQuery('#at-demo-ajax-install-error').show();
11
- return false;
12
- }
13
- else{
14
- jQuery('#at-demo-ajax-install-error').hide();
15
- }
16
- var _wpnonce = $(this).find('input[name=_wpnonce]');
17
- var _wp_http_referer = $(this).find('input[name=_wp_http_referer]');
18
-
19
- var individual_file = file[0].files[0];
20
-
21
- fd.append("upload-zip-archive", individual_file);
22
- fd.append('action', 'acme_demo_setup_ajax_setup');
23
- fd.append('_wpnonce', _wpnonce.val());
24
- fd.append('_wp_http_referer', _wp_http_referer.val());
25
-
26
- jQuery.ajax({
27
- type: 'POST',
28
- url: acme_demo_setup_object.ajaxurl,
29
- data: fd,
30
- contentType: false,
31
- processData: false,
32
- beforeSend: function (data, settings) {
33
- jQuery('#acme-demo-setup-upload-zip-form').remove();
34
- jQuery('#at-demo-ajax-install-result-loading').show();
35
- jQuery('#at-demo-ajax-install').html(acme_demo_setup_object.importing);
36
- },
37
- success : function (data) {
38
- jQuery('#at-demo-ajax-install-result-loading').hide();
39
- jQuery('#at-demo-ajax-install-result-title').show();
40
- jQuery('#at-demo-ajax-install-result').html(data);
41
- },
42
- error : function (jqXHR, textStatus, errorThrown) {
43
- jQuery('#at-demo-ajax-install-result-loading').hide();
44
- jQuery('#at-demo-ajax-install-result-error').show();
45
- console.log(jqXHR + " :: " + textStatus + " :: " + errorThrown);
46
- }
47
- });
48
- return false;
49
- });
50
- });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
inc/frameworks/customizer-export-import/class-cei-core.php DELETED
@@ -1,199 +0,0 @@
1
- <?php
2
- /**
3
- * The main export/import class from customizer-export-import.
4
- * Renaming CEI_Core to Acme_Demo_Setup_CEI_Core
5
- * @since 1.0.0
6
- */
7
- final class Acme_Demo_Setup_CEI_Core {
8
-
9
- /**
10
- * An array of core options that shouldn't be imported.
11
- *
12
- * @since 1.0.0
13
- * @access private
14
- * @var array $core_options
15
- */
16
- static private $core_options = array(
17
- 'blogname',
18
- 'blogdescription',
19
- 'show_on_front',
20
- 'page_on_front',
21
- 'page_for_posts',
22
- );
23
-
24
- /**
25
- * Acme Customized Version
26
- * Imports uploaded mods and calls WordPress core customize_save actions so
27
- * themes that hook into them can act before mods are saved to the database.
28
- *
29
- * @since 1.0
30
- * @access public
31
- * @param object $wp_customize An instance of WP_Customize_Manager.
32
- */
33
- function _import( $file_url ) {
34
- $template = get_template();
35
-
36
- WP_Filesystem();
37
-
38
- // Setup global vars.
39
- global $wp_filesystem;
40
- global $wp_customize;
41
-
42
-
43
- $raw = $wp_filesystem->get_contents( $file_url );
44
- if ( $error = is_wp_error( $raw ) ) {
45
- return $error;
46
- }
47
-
48
- $data = @unserialize( $raw );
49
-
50
- // Data checks.
51
- if ( 'array' != gettype( $data ) ) {
52
- esc_html_e( 'Error importing settings! Please check that you uploaded a customizer export file.', 'acme-demo-setup' );
53
- return;
54
- }
55
- if ( ! isset( $data['template'] ) || ! isset( $data['mods'] ) ) {
56
- esc_html_e( 'Error importing settings! Please check that you uploaded a customizer export file.', 'acme-demo-setup' );
57
- return;
58
- }
59
- if ( $data['template'] != $template ) {
60
- esc_html_e( 'Error importing settings! The settings you uploaded are not for the current theme.', 'acme-demo-setup' );
61
- return;
62
- }
63
-
64
- // Import images.
65
- $data['mods'] = self::_import_images( $data['mods'] );
66
-
67
- // Import custom options.
68
- if ( isset( $data['options'] ) ) {
69
-
70
- foreach ( $data['options'] as $option_key => $option_value ) {
71
-
72
- $option = new Acme_Demo_Setup_CEI_Option( $wp_customize, $option_key, array(
73
- 'default' => '',
74
- 'type' => 'option',
75
- 'capability' => 'edit_theme_options'
76
- ) );
77
-
78
- $option->import( $option_value );
79
- }
80
- }
81
-
82
- // Call the customize_save action.
83
- do_action( 'customize_save', $wp_customize );
84
-
85
- // Loop through the mods.
86
- foreach ( $data['mods'] as $key => $val ) {
87
-
88
- // Call the customize_save_ dynamic action.
89
- do_action( 'customize_save_' . $key, $wp_customize );
90
-
91
- // Save the mod.
92
- set_theme_mod( $key, $val );
93
- }
94
-
95
- }
96
-
97
- /**
98
- * Imports images for settings saved as mods.
99
- *
100
- * @since 0.1
101
- * @access private
102
- * @param array $mods An array of customizer mods.
103
- * @return array The mods array with any new import data.
104
- */
105
- static private function _import_images( $mods )
106
- {
107
- foreach ( $mods as $key => $val ) {
108
-
109
- if ( self::_is_image_url( $val ) ) {
110
-
111
- $data = self::_sideload_image( $val );
112
-
113
- if ( ! is_wp_error( $data ) ) {
114
-
115
- $mods[ $key ] = $data->url;
116
-
117
- // Handle header image controls.
118
- if ( isset( $mods[ $key . '_data' ] ) ) {
119
- $mods[ $key . '_data' ] = $data;
120
- update_post_meta( $data->attachment_id, '_wp_attachment_is_custom_header', get_stylesheet() );
121
- }
122
- }
123
- }
124
- }
125
-
126
- return $mods;
127
- }
128
-
129
- /**
130
- * Taken from the core media_sideload_image function and
131
- * modified to return an array of data instead of html.
132
- *
133
- * @since 0.1
134
- * @access private
135
- * @param string $file The image file path.
136
- * @return stdClass An array of image data.
137
- */
138
- static private function _sideload_image( $file )
139
- {
140
- $data = new stdClass();
141
-
142
- if ( ! function_exists( 'media_handle_sideload' ) ) {
143
- require_once(ABSPATH . 'wp-admin/includes/media.php');
144
- require_once(ABSPATH . 'wp-admin/includes/file.php');
145
- require_once(ABSPATH . 'wp-admin/includes/image.php');
146
- }
147
- if ( ! empty( $file ) ) {
148
-
149
- // Set variables for storage, fix file filename for query strings.
150
- preg_match( '/[^\?]+\.(jpe?g|jpe|gif|png)\b/i', $file, $matches );
151
- $file_array = array();
152
- $file_array['name'] = basename( $matches[0] );
153
-
154
- // Download file to temp location.
155
- $file_array['tmp_name'] = download_url( $file );
156
-
157
- // If error storing temporarily, return the error.
158
- if ( is_wp_error( $file_array['tmp_name'] ) ) {
159
- return $file_array['tmp_name'];
160
- }
161
-
162
- // Do the validation and storage stuff.
163
- $id = media_handle_sideload( $file_array, 0 );
164
-
165
- // If error storing permanently, unlink.
166
- if ( is_wp_error( $id ) ) {
167
- @unlink( $file_array['tmp_name'] );
168
- return $id;
169
- }
170
-
171
- // Build the object to return.
172
- $meta = wp_get_attachment_metadata( $id );
173
- $data->attachment_id = $id;
174
- $data->url = wp_get_attachment_url( $id );
175
- $data->thumbnail_url = wp_get_attachment_thumb_url( $id );
176
- $data->height = $meta['height'];
177
- $data->width = $meta['width'];
178
- }
179
-
180
- return $data;
181
- }
182
-
183
- /**
184
- * Checks to see whether a string is an image url or not.
185
- *
186
- * @since 0.1
187
- * @access private
188
- * @param string $string The string to check.
189
- * @return bool Whether the string is an image url or not.
190
- */
191
- static private function _is_image_url( $string = '' ){
192
- if ( is_string( $string ) ) {
193
- if ( preg_match( '/\.(jpg|jpeg|png|gif)/i', $string ) ) {
194
- return true;
195
- }
196
- }
197
- return false;
198
- }
199
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
inc/frameworks/customizer-export-import/class-cei-option.php DELETED
@@ -1,28 +0,0 @@
1
- <?php
2
- /**
3
- * A class that extends WP_Customize_Setting so we can access
4
- * the protected updated method when importing options.
5
- *
6
- * @since 1.0.0
7
- *
8
- * Renaming CEI_Option to Acme_Demo_Setup_CEI_Option
9
- */
10
- // Load WordPress Customize Setting Class.
11
- if ( ! class_exists( 'WP_Customize_Setting' ) ) {
12
- require_once( ABSPATH . WPINC . '/class-wp-customize-setting.php' );
13
- }
14
-
15
- final class Acme_Demo_Setup_CEI_Option extends WP_Customize_Setting {
16
-
17
- /**
18
- * Import an option value for this setting.
19
- *
20
- * @since 1.0.0
21
- * @param mixed $value The option value.
22
- * @return void
23
- */
24
- public function import( $value )
25
- {
26
- $this->update( $value );
27
- }
28
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
inc/frameworks/widget-importer-exporter/import.php DELETED
@@ -1,244 +0,0 @@
1
- <?php
2
- /**
3
- * Process import file
4
- *
5
- * This parses a file and triggers importation of its widgets.
6
- *
7
- * @since 1.0.0
8
- * @param string $file Path to .wie file uploaded
9
- * @global string $wie_import_results
10
- *
11
- * Renaming wie_process_import_file to acme_demo_setup_wie_process_import_file
12
- */
13
- function acme_demo_setup_wie_process_import_file( $file ) {
14
-
15
- global $wie_import_results;
16
-
17
- // File exists?
18
- if ( ! file_exists( $file ) ) {
19
- wp_die(
20
- esc_html__( 'Import file could not be found. Please try again.', 'acme-demo-setup' ),
21
- '',
22
- array( 'back_link' => true )
23
- );
24
- }
25
-
26
- // Get file contents and decode
27
- $data = file_get_contents( $file );
28
- $data = json_decode( $data );
29
-
30
- // Import the widget data
31
- // Make results available for display on import/export page
32
- $wie_import_results = acme_demo_setup_wie_import_data( $data );
33
- }
34
-
35
- /**
36
- * Import widget JSON data
37
- *
38
- * @since 1.0.0
39
- * @global array $wp_registered_sidebars
40
- * @param object $data JSON widget data from .wie file
41
- * @return array Results array
42
- */
43
- function acme_demo_setup_wie_import_data( $data ) {
44
-
45
- global $wp_registered_sidebars;
46
-
47
- // Have valid data?
48
- // If no data or could not decode
49
- if ( empty( $data ) || ! is_object( $data ) ) {
50
- wp_die(
51
- esc_html__( 'Import data could not be read. Please try a different file.', 'acme-demo-setup' ),
52
- '',
53
- array( 'back_link' => true )
54
- );
55
- }
56
-
57
- // Hook before import
58
- do_action( 'wie_before_import' );
59
- $data = apply_filters( 'wie_import_data', $data );
60
-
61
- // Get all available widgets site supports
62
- $available_widgets = acme_demo_setup_wie_available_widgets();
63
-
64
- // Get all existing widget instances
65
- $widget_instances = array();
66
- foreach ( $available_widgets as $widget_data ) {
67
- $widget_instances[$widget_data['id_base']] = get_option( 'widget_' . $widget_data['id_base'] );
68
- }
69
-
70
- // Begin results
71
- $results = array();
72
-
73
- // Loop import data's sidebars
74
- foreach ( $data as $sidebar_id => $widgets ) {
75
-
76
- // Skip inactive widgets
77
- // (should not be in export file)
78
- if ( 'wp_inactive_widgets' == $sidebar_id ) {
79
- continue;
80
- }
81
-
82
- // Check if sidebar is available on this site
83
- // Otherwise add widgets to inactive, and say so
84
- if ( isset( $wp_registered_sidebars[$sidebar_id] ) ) {
85
- $sidebar_available = true;
86
- $use_sidebar_id = $sidebar_id;
87
- $sidebar_message_type = 'success';
88
- $sidebar_message = '';
89
- } else {
90
- $sidebar_available = false;
91
- $use_sidebar_id = 'wp_inactive_widgets'; // add to inactive if sidebar does not exist in theme
92
- $sidebar_message_type = 'error';
93
- $sidebar_message = esc_html__( 'Widget area does not exist in theme (using Inactive)', 'acme-demo-setup' );
94
- }
95
-
96
- // Result for sidebar
97
- $results[$sidebar_id]['name'] = ! empty( $wp_registered_sidebars[$sidebar_id]['name'] ) ? $wp_registered_sidebars[$sidebar_id]['name'] : $sidebar_id; // sidebar name if theme supports it; otherwise ID
98
- $results[$sidebar_id]['message_type'] = $sidebar_message_type;
99
- $results[$sidebar_id]['message'] = $sidebar_message;
100
- $results[$sidebar_id]['widgets'] = array();
101
-
102
- // Loop widgets
103
- foreach ( $widgets as $widget_instance_id => $widget ) {
104
-
105
- $fail = false;
106
-
107
- // Get id_base (remove -# from end) and instance ID number
108
- $id_base = preg_replace( '/-[0-9]+$/', '', $widget_instance_id );
109
- $instance_id_number = str_replace( $id_base . '-', '', $widget_instance_id );
110
-
111
- // Does site support this widget?
112
- if ( ! $fail && ! isset( $available_widgets[$id_base] ) ) {
113
- $fail = true;
114
- $widget_message_type = 'error';
115
- $widget_message = esc_html__( 'Site does not support widget', 'acme-demo-setup' ); // explain why widget not imported
116
- }
117
-
118
- // Filter to modify settings object before conversion to array and import
119
- // Leave this filter here for backwards compatibility with manipulating objects (before conversion to array below)
120
- // Ideally the newer wie_widget_settings_array below will be used instead of this
121
- $widget = apply_filters( 'wie_widget_settings', $widget ); // object
122
-
123
- // Convert multidimensional objects to multidimensional arrays
124
- // Some plugins like Jetpack Widget Visibility store settings as multidimensional arrays
125
- // Without this, they are imported as objects and cause fatal error on Widgets page
126
- // If this creates problems for plugins that do actually intend settings in objects then may need to consider other approach: https://wordpress.org/support/topic/problem-with-array-of-arrays
127
- // It is probably much more likely that arrays are used than objects, however
128
- $widget = json_decode( wp_json_encode( $widget ), true );
129
-
130
- // Filter to modify settings array
131
- // This is preferred over the older wie_widget_settings filter above
132
- // Do before identical check because changes may make it identical to end result (such as URL replacements)
133
- $widget = apply_filters( 'wie_widget_settings_array', $widget );
134
-
135
- // Does widget with identical settings already exist in same sidebar?
136
- if ( ! $fail && isset( $widget_instances[$id_base] ) ) {
137
-
138
- // Get existing widgets in this sidebar
139
- $sidebars_widgets = get_option( 'sidebars_widgets' );
140
- $sidebar_widgets = isset( $sidebars_widgets[$use_sidebar_id] ) ? $sidebars_widgets[$use_sidebar_id] : array(); // check Inactive if that's where will go
141
-
142
- // Loop widgets with ID base
143
- $single_widget_instances = ! empty( $widget_instances[$id_base] ) ? $widget_instances[$id_base] : array();
144
- foreach ( $single_widget_instances as $check_id => $check_widget ) {
145
-
146
- // Is widget in same sidebar and has identical settings?
147
- if ( in_array( "$id_base-$check_id", $sidebar_widgets ) && (array) $widget == $check_widget ) {
148
-
149
- $fail = true;
150
- $widget_message_type = 'warning';
151
- $widget_message = esc_html__( 'Widget already exists', 'acme-demo-setup' ); // explain why widget not imported
152
-
153
- break;
154
-
155
- }
156
-
157
- }
158
-
159
- }
160
-
161
- // No failure
162
- if ( ! $fail ) {
163
-
164
- // Add widget instance
165
- $single_widget_instances = get_option( 'widget_' . $id_base ); // all instances for that widget ID base, get fresh every time
166
- $single_widget_instances = ! empty( $single_widget_instances ) ? $single_widget_instances : array( '_multiwidget' => 1 ); // start fresh if have to
167
- $single_widget_instances[] = $widget; // add it
168
-
169
- // Get the key it was given
170
- end( $single_widget_instances );
171
- $new_instance_id_number = key( $single_widget_instances );
172
-
173
- // If key is 0, make it 1
174
- // When 0, an issue can occur where adding a widget causes data from other widget to load, and the widget doesn't stick (reload wipes it)
175
- if ( '0' === strval( $new_instance_id_number ) ) {
176
- $new_instance_id_number = 1;
177
- $single_widget_instances[$new_instance_id_number] = $single_widget_instances[0];
178
- unset( $single_widget_instances[0] );
179
- }
180
-
181
- // Move _multiwidget to end of array for uniformity
182
- if ( isset( $single_widget_instances['_multiwidget'] ) ) {
183
- $multiwidget = $single_widget_instances['_multiwidget'];
184
- unset( $single_widget_instances['_multiwidget'] );
185
- $single_widget_instances['_multiwidget'] = $multiwidget;
186
- }
187
-
188
- // Update option with new widget
189
- update_option( 'widget_' . $id_base, $single_widget_instances );
190
-
191
- // Assign widget instance to sidebar
192
- $sidebars_widgets = get_option( 'sidebars_widgets' ); // which sidebars have which widgets, get fresh every time
193
-
194
- // Avoid rarely fatal error when the option is an empty string
195
- // https://github.com/churchthemes/widget-importer-exporter/pull/11
196
- if ( ! $sidebars_widgets ) {
197
- $sidebars_widgets = array();
198
- }
199
-
200
- $new_instance_id = $id_base . '-' . $new_instance_id_number; // use ID number from new widget instance
201
- $sidebars_widgets[$use_sidebar_id][] = $new_instance_id; // add new instance to sidebar
202
- update_option( 'sidebars_widgets', $sidebars_widgets ); // save the amended data
203
-
204
- // After widget import action
205
- $after_widget_import = array(
206
- 'sidebar' => $use_sidebar_id,
207
- 'sidebar_old' => $sidebar_id,
208
- 'widget' => $widget,
209
- 'widget_type' => $id_base,
210
- 'widget_id' => $new_instance_id,
211
- 'widget_id_old' => $widget_instance_id,
212
- 'widget_id_num' => $new_instance_id_number,
213
- 'widget_id_num_old' => $instance_id_number
214
- );
215
- do_action( 'wie_after_widget_import', $after_widget_import );
216
-
217
- // Success message
218
- if ( $sidebar_available ) {
219
- $widget_message_type = 'success';
220
- $widget_message = esc_html__( 'Imported', 'acme-demo-setup' );
221
- } else {
222
- $widget_message_type = 'warning';
223
- $widget_message = esc_html__( 'Imported to Inactive', 'acme-demo-setup' );
224
- }
225
-
226
- }
227
-
228
- // Result for widget instance
229
- $results[$sidebar_id]['widgets'][$widget_instance_id]['name'] = isset( $available_widgets[$id_base]['name'] ) ? $available_widgets[$id_base]['name'] : $id_base; // widget name or ID if name not available (not supported by site)
230
- $results[$sidebar_id]['widgets'][$widget_instance_id]['title'] = ! empty( $widget['title'] ) ? $widget['title'] : esc_html__( 'No Title', 'acme-demo-setup' ); // show "No Title" if widget instance is untitled
231
- $results[$sidebar_id]['widgets'][$widget_instance_id]['message_type'] = $widget_message_type;
232
- $results[$sidebar_id]['widgets'][$widget_instance_id]['message'] = $widget_message;
233
-
234
- }
235
-
236
- }
237
-
238
- // Hook after import
239
- do_action( 'wie_after_import' );
240
-
241
- // Return results
242
- return apply_filters( 'wie_import_results', $results );
243
-
244
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
inc/frameworks/widget-importer-exporter/widgets.php DELETED
@@ -1,33 +0,0 @@
1
- <?php
2
- /**
3
- * Widget Functions
4
- * @since 1.0.0
5
- */
6
-
7
- // No direct access
8
- if ( ! defined( 'ABSPATH' ) ) exit;
9
-
10
- /**
11
- * Available widgets
12
- *
13
- * Gather site's widgets into array with ID base, name, etc.
14
- * Used by export and import functions.
15
- *
16
- * @since 0.4
17
- * @global array $wp_registered_widget_updates
18
- * @return array Widget information
19
- *
20
- * Remaning wie_available_widgets to acme_demo_setup_wie_available_widgets
21
- */
22
- function acme_demo_setup_wie_available_widgets() {
23
- global $wp_registered_widget_controls;
24
- $widget_controls = $wp_registered_widget_controls;
25
- $available_widgets = array();
26
- foreach ( $widget_controls as $widget ) {
27
- if ( ! empty( $widget['id_base'] ) && ! isset( $available_widgets[$widget['id_base']] ) ) { // no dupes
28
- $available_widgets[$widget['id_base']]['id_base'] = $widget['id_base'];
29
- $available_widgets[$widget['id_base']]['name'] = $widget['name'];
30
- }
31
- }
32
- return apply_filters( 'acme_demo_setup_wie_available_widgets', $available_widgets );
33
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
inc/frameworks/wordpress-importer/parsers.php DELETED
@@ -1,690 +0,0 @@
1
- <?php
2
- /**
3
- * WordPress eXtended RSS file parser implementations
4
- */
5
-
6
- /**
7
- * WordPress Importer class for managing parsing of WXR files.
8
- * Renaming WXR_Parser to Acme_Demo_Setup_WXR_Parser
9
- */
10
- class Acme_Demo_Setup_WXR_Parser {
11
- function parse( $file ) {
12
- // Attempt to use proper XML parsers first
13
- if ( extension_loaded( 'simplexml' ) ) {
14
- $parser = new Acme_Demo_Setup_WXR_Parser_SimpleXML;
15
- $result = $parser->parse( $file );
16
-
17
- // If SimpleXML succeeds or this is an invalid WXR file then return the results
18
- if ( ! is_wp_error( $result ) || 'SimpleXML_parse_error' != $result->get_error_code() )
19
- return $result;
20
- } else if ( extension_loaded( 'xml' ) ) {
21
- $parser = new Acme_Demo_Setup_WXR_Parser_XML;
22
- $result = $parser->parse( $file );
23
-
24
- // If XMLParser succeeds or this is an invalid WXR file then return the results
25
- if ( ! is_wp_error( $result ) || 'XML_parse_error' != $result->get_error_code() )
26
- return $result;
27
- }
28
-
29
- // We have a malformed XML file, so display the error and fallthrough to regex
30
- if ( isset($result) && defined('IMPORT_DEBUG') && IMPORT_DEBUG ) {
31
- echo '<pre>';
32
- if ( 'SimpleXML_parse_error' == $result->get_error_code() ) {
33
- foreach ( $result->get_error_data() as $error )
34
- echo $error->line . ':' . $error->column . ' ' . esc_html( $error->message ) . "\n";
35
- } else if ( 'XML_parse_error' == $result->get_error_code() ) {
36
- $error = $result->get_error_data();
37
- echo $error[0] . ':' . $error[1] . ' ' . esc_html( $error[2] );
38
- }
39
- echo '</pre>';
40
- echo '<p><strong>' . __( 'There was an error when reading this WXR file', 'wordpress-importer' ) . '</strong><br />';
41
- echo __( 'Details are shown above. The importer will now try again with a different parser...', 'wordpress-importer' ) . '</p>';
42
- }
43
-
44
- // use regular expressions if nothing else available or this is bad XML
45
- $parser = new Acme_Demo_Setup_WXR_Parser_Regex;
46
- return $parser->parse( $file );
47
- }
48
- }
49
-
50
- /**
51
- * WXR Parser that makes use of the SimpleXML PHP extension.
52
- */
53
- class Acme_Demo_Setup_WXR_Parser_SimpleXML {
54
- function parse( $file ) {
55
- $authors = $posts = $categories = $tags = $terms = array();
56
-
57
- $internal_errors = libxml_use_internal_errors(true);
58
-
59
- $dom = new DOMDocument;
60
- $old_value = null;
61
- if ( function_exists( 'libxml_disable_entity_loader' ) ) {
62
- $old_value = libxml_disable_entity_loader( true );
63
- }
64
- ini_set( 'memory_limit', -1);
65
- $success = $dom->loadXML( file_get_contents( $file ) );
66
- if ( ! is_null( $old_value ) ) {
67
- libxml_disable_entity_loader( $old_value );
68
- }
69
-
70
- if ( ! $success || isset( $dom->doctype ) ) {
71
- return new WP_Error( 'SimpleXML_parse_error', __( 'There was an error when reading this WXR file', 'wordpress-importer' ), libxml_get_errors() );
72
- }
73
-
74
- $xml = simplexml_import_dom( $dom );
75
- unset( $dom );
76
-
77
- // halt if loading produces an error
78
- if ( ! $xml )
79
- return new WP_Error( 'SimpleXML_parse_error', __( 'There was an error when reading this WXR file', 'wordpress-importer' ), libxml_get_errors() );
80
-
81
- $wxr_version = $xml->xpath('/rss/channel/wp:wxr_version');
82
- if ( ! $wxr_version )
83
- return new WP_Error( 'WXR_parse_error', __( 'This does not appear to be a WXR file, missing/invalid WXR version number', 'wordpress-importer' ) );
84
-
85
- $wxr_version = (string) trim( $wxr_version[0] );
86
- // confirm that we are dealing with the correct file format
87
- if ( ! preg_match( '/^\d+\.\d+$/', $wxr_version ) )
88
- return new WP_Error( 'WXR_parse_error', __( 'This does not appear to be a WXR file, missing/invalid WXR version number', 'wordpress-importer' ) );
89
-
90
- $base_url = $xml->xpath('/rss/channel/wp:base_site_url');
91
- $base_url = (string) trim( $base_url[0] );
92
-
93
- $namespaces = $xml->getDocNamespaces();
94
- if ( ! isset( $namespaces['wp'] ) )
95
- $namespaces['wp'] = 'http://wordpress.org/export/1.1/';
96
- if ( ! isset( $namespaces['excerpt'] ) )
97
- $namespaces['excerpt'] = 'http://wordpress.org/export/1.1/excerpt/';
98
-
99
- // grab authors
100
- foreach ( $xml->xpath('/rss/channel/wp:author') as $author_arr ) {
101
- $a = $author_arr->children( $namespaces['wp'] );
102
- $login = (string) $a->author_login;
103
- $authors[$login] = array(
104
- 'author_id' => (int) $a->author_id,
105
- 'author_login' => $login,
106
- 'author_email' => (string) $a->author_email,
107
- 'author_display_name' => (string) $a->author_display_name,
108
- 'author_first_name' => (string) $a->author_first_name,
109
- 'author_last_name' => (string) $a->author_last_name
110
- );
111
- }
112
-
113
- // grab cats, tags and terms
114
- foreach ( $xml->xpath('/rss/channel/wp:category') as $term_arr ) {
115
- $t = $term_arr->children( $namespaces['wp'] );
116
- $category = array(
117
- 'term_id' => (int) $t->term_id,
118
- 'category_nicename' => (string) $t->category_nicename,
119
- 'category_parent' => (string) $t->category_parent,
120
- 'cat_name' => (string) $t->cat_name,
121
- 'category_description' => (string) $t->category_description
122
- );
123
-
124
- foreach ( $t->termmeta as $meta ) {
125
- $category['termmeta'][] = array(
126
- 'key' => (string) $meta->meta_key,
127
- 'value' => (string) $meta->meta_value
128
- );
129
- }
130
-
131
- $categories[] = $category;
132
- }
133
-
134
- foreach ( $xml->xpath('/rss/channel/wp:tag') as $term_arr ) {
135
- $t = $term_arr->children( $namespaces['wp'] );
136
- $tag = array(
137
- 'term_id' => (int) $t->term_id,
138
- 'tag_slug' => (string) $t->tag_slug,
139
- 'tag_name' => (string) $t->tag_name,
140
- 'tag_description' => (string) $t->tag_description
141
- );
142
-
143
- foreach ( $t->termmeta as $meta ) {
144
- $tag['termmeta'][] = array(
145
- 'key' => (string) $meta->meta_key,
146
- 'value' => (string) $meta->meta_value
147
- );
148
- }
149
-
150
- $tags[] = $tag;
151
- }
152
-
153
- foreach ( $xml->xpath('/rss/channel/wp:term') as $term_arr ) {
154
- $t = $term_arr->children( $namespaces['wp'] );
155
- $term = array(
156
- 'term_id' => (int) $t->term_id,
157
- 'term_taxonomy' => (string) $t->term_taxonomy,
158
- 'slug' => (string) $t->term_slug,
159
- 'term_parent' => (string) $t->term_parent,
160
- 'term_name' => (string) $t->term_name,
161
- 'term_description' => (string) $t->term_description
162
- );
163
-
164
- foreach ( $t->termmeta as $meta ) {
165
- $term['termmeta'][] = array(
166
- 'key' => (string) $meta->meta_key,
167
- 'value' => (string) $meta->meta_value
168
- );
169
- }
170
-
171
- $terms[] = $term;
172
- }
173
-
174
- // grab posts
175
- foreach ( $xml->channel->item as $item ) {
176
- $post = array(
177
- 'post_title' => (string) $item->title,
178
- 'guid' => (string) $item->guid,
179
- );
180
-
181
- $dc = $item->children( 'http://purl.org/dc/elements/1.1/' );
182
- $post['post_author'] = (string) $dc->creator;
183
-
184
- $content = $item->children( 'http://purl.org/rss/1.0/modules/content/' );
185
- $excerpt = $item->children( $namespaces['excerpt'] );
186
- $post['post_content'] = (string) $content->encoded;
187
- $post['post_excerpt'] = (string) $excerpt->encoded;
188
-
189
- $wp = $item->children( $namespaces['wp'] );
190
- $post['post_id'] = (int) $wp->post_id;
191
- $post['post_date'] = (string) $wp->post_date;
192
- $post['post_date_gmt'] = (string) $wp->post_date_gmt;
193
- $post['comment_status'] = (string) $wp->comment_status;
194
- $post['ping_status'] = (string) $wp->ping_status;
195
- $post['post_name'] = (string) $wp->post_name;
196
- $post['status'] = (string) $wp->status;
197
- $post['post_parent'] = (int) $wp->post_parent;
198
- $post['menu_order'] = (int) $wp->menu_order;
199
- $post['post_type'] = (string) $wp->post_type;
200
- $post['post_password'] = (string) $wp->post_password;
201
- $post['is_sticky'] = (int) $wp->is_sticky;
202
-
203
- if ( isset($wp->attachment_url) )
204
- $post['attachment_url'] = (string) $wp->attachment_url;
205
-
206
- foreach ( $item->category as $c ) {
207
- $att = $c->attributes();
208
- if ( isset( $att['nicename'] ) )
209
- $post['terms'][] = array(
210
- 'name' => (string) $c,
211
- 'slug' => (string) $att['nicename'],
212
- 'domain' => (string) $att['domain']
213
- );
214
- }
215
-
216
- foreach ( $wp->postmeta as $meta ) {
217
- $post['postmeta'][] = array(
218
- 'key' => (string) $meta->meta_key,
219
- 'value' => (string) $meta->meta_value
220
- );
221
- }
222
-
223
- foreach ( $wp->comment as $comment ) {
224
- $meta = array();
225
- if ( isset( $comment->commentmeta ) ) {
226
- foreach ( $comment->commentmeta as $m ) {
227
- $meta[] = array(
228
- 'key' => (string) $m->meta_key,
229
- 'value' => (string) $m->meta_value
230
- );
231
- }
232
- }
233
-
234
- $post['comments'][] = array(
235
- 'comment_id' => (int) $comment->comment_id,
236
- 'comment_author' => (string) $comment->comment_author,
237
- 'comment_author_email' => (string) $comment->comment_author_email,
238
- 'comment_author_IP' => (string) $comment->comment_author_IP,
239
- 'comment_author_url' => (string) $comment->comment_author_url,
240
- 'comment_date' => (string) $comment->comment_date,
241
- 'comment_date_gmt' => (string) $comment->comment_date_gmt,
242
- 'comment_content' => (string) $comment->comment_content,
243
- 'comment_approved' => (string) $comment->comment_approved,
244
- 'comment_type' => (string) $comment->comment_type,
245
- 'comment_parent' => (string) $comment->comment_parent,
246
- 'comment_user_id' => (int) $comment->comment_user_id,
247
- 'commentmeta' => $meta,
248
- );
249
- }
250
-
251
- $posts[] = $post;
252
- }
253
-
254
- return array(
255
- 'authors' => $authors,
256
- 'posts' => $posts,
257
- 'categories' => $categories,
258
- 'tags' => $tags,
259
- 'terms' => $terms,
260
- 'base_url' => $base_url,
261
- 'version' => $wxr_version
262
- );
263
- }
264
- }
265
-
266
- /**
267
- * WXR Parser that makes use of the XML Parser PHP extension.
268
- */
269
- class Acme_Demo_Setup_WXR_Parser_XML {
270
- var $wp_tags = array(
271
- 'wp:post_id', 'wp:post_date', 'wp:post_date_gmt', 'wp:comment_status', 'wp:ping_status', 'wp:attachment_url',
272
- 'wp:status', 'wp:post_name', 'wp:post_parent', 'wp:menu_order', 'wp:post_type', 'wp:post_password',
273
- 'wp:is_sticky', 'wp:term_id', 'wp:category_nicename', 'wp:category_parent', 'wp:cat_name', 'wp:category_description',
274
- 'wp:tag_slug', 'wp:tag_name', 'wp:tag_description', 'wp:term_taxonomy', 'wp:term_parent',
275
- 'wp:term_name', 'wp:term_description', 'wp:author_id', 'wp:author_login', 'wp:author_email', 'wp:author_display_name',
276
- 'wp:author_first_name', 'wp:author_last_name',
277
- );
278
- var $wp_sub_tags = array(
279
- 'wp:comment_id', 'wp:comment_author', 'wp:comment_author_email', 'wp:comment_author_url',
280
- 'wp:comment_author_IP', 'wp:comment_date', 'wp:comment_date_gmt', 'wp:comment_content',
281
- 'wp:comment_approved', 'wp:comment_type', 'wp:comment_parent', 'wp:comment_user_id',
282
- );
283
-
284
- function parse( $file ) {
285
- $this->wxr_version = $this->in_post = $this->cdata = $this->data = $this->sub_data = $this->in_tag = $this->in_sub_tag = false;
286
- $this->authors = $this->posts = $this->term = $this->category = $this->tag = array();
287
-
288
- $xml = xml_parser_create( 'UTF-8' );
289
- xml_parser_set_option( $xml, XML_OPTION_SKIP_WHITE, 1 );
290
- xml_parser_set_option( $xml, XML_OPTION_CASE_FOLDING, 0 );
291
- xml_set_object( $xml, $this );
292
- xml_set_character_data_handler( $xml, 'cdata' );
293
- xml_set_element_handler( $xml, 'tag_open', 'tag_close' );
294
-
295
- if ( ! xml_parse( $xml, file_get_contents( $file ), true ) ) {
296
- $current_line = xml_get_current_line_number( $xml );
297
- $current_column = xml_get_current_column_number( $xml );
298
- $error_code = xml_get_error_code( $xml );
299
- $error_string = xml_error_string( $error_code );
300
- return new WP_Error( 'XML_parse_error', 'There was an error when reading this WXR file', array( $current_line, $current_column, $error_string ) );
301
- }
302
- xml_parser_free( $xml );
303
-
304
- if ( ! preg_match( '/^\d+\.\d+$/', $this->wxr_version ) )
305
- return new WP_Error( 'WXR_parse_error', __( 'This does not appear to be a WXR file, missing/invalid WXR version number', 'wordpress-importer' ) );
306
-
307
- return array(
308
- 'authors' => $this->authors,
309
- 'posts' => $this->posts,
310
- 'categories' => $this->category,
311
- 'tags' => $this->tag,
312
- 'terms' => $this->term,
313
- 'base_url' => $this->base_url,
314
- 'version' => $this->wxr_version
315
- );
316
- }
317
-
318
- function tag_open( $parse, $tag, $attr ) {
319
- if ( in_array( $tag, $this->wp_tags ) ) {
320
- $this->in_tag = substr( $tag, 3 );
321
- return;
322
- }
323
-
324
- if ( in_array( $tag, $this->wp_sub_tags ) ) {
325
- $this->in_sub_tag = substr( $tag, 3 );
326
- return;
327
- }
328
-
329
- switch ( $tag ) {
330
- case 'category':
331
- if ( isset($attr['domain'], $attr['nicename']) ) {
332
- $this->sub_data['domain'] = $attr['domain'];
333
- $this->sub_data['slug'] = $attr['nicename'];
334
- }
335
- break;
336
- case 'item': $this->in_post = true;
337
- case 'title': if ( $this->in_post ) $this->in_tag = 'post_title'; break;
338
- case 'guid': $this->in_tag = 'guid'; break;
339
- case 'dc:creator': $this->in_tag = 'post_author'; break;
340
- case 'content:encoded': $this->in_tag = 'post_content'; break;
341
- case 'excerpt:encoded': $this->in_tag = 'post_excerpt'; break;
342
-
343
- case 'wp:term_slug': $this->in_tag = 'slug'; break;
344
- case 'wp:meta_key': $this->in_sub_tag = 'key'; break;
345
- case 'wp:meta_value': $this->in_sub_tag = 'value'; break;
346
- }
347
- }
348
-
349
- function cdata( $parser, $cdata ) {
350
- if ( ! trim( $cdata ) )
351
- return;
352
-
353
- if ( false !== $this->in_tag || false !== $this->in_sub_tag ) {
354
- $this->cdata .= $cdata;
355
- } else {
356
- $this->cdata .= trim( $cdata );
357
- }
358
- }
359
-
360
- function tag_close( $parser, $tag ) {
361
- switch ( $tag ) {
362
- case 'wp:comment':
363
- unset( $this->sub_data['key'], $this->sub_data['value'] ); // remove meta sub_data
364
- if ( ! empty( $this->sub_data ) )
365
- $this->data['comments'][] = $this->sub_data;
366
- $this->sub_data = false;
367
- break;
368
- case 'wp:commentmeta':
369
- $this->sub_data['commentmeta'][] = array(
370
- 'key' => $this->sub_data['key'],
371
- 'value' => $this->sub_data['value']
372
- );
373
- break;
374
- case 'category':
375
- if ( ! empty( $this->sub_data ) ) {
376
- $this->sub_data['name'] = $this->cdata;
377
- $this->data['terms'][] = $this->sub_data;
378
- }
379
- $this->sub_data = false;
380
- break;
381
- case 'wp:postmeta':
382
- if ( ! empty( $this->sub_data ) )
383
- $this->data['postmeta'][] = $this->sub_data;
384
- $this->sub_data = false;
385
- break;
386
- case 'item':
387
- $this->posts[] = $this->data;
388
- $this->data = false;
389
- break;
390
- case 'wp:category':
391
- case 'wp:tag':
392
- case 'wp:term':
393
- $n = substr( $tag, 3 );
394
- array_push( $this->$n, $this->data );
395
- $this->data = false;
396
- break;
397
- case 'wp:author':
398
- if ( ! empty($this->data['author_login']) )
399
- $this->authors[$this->data['author_login']] = $this->data;
400
- $this->data = false;
401
- break;
402
- case 'wp:base_site_url':
403
- $this->base_url = $this->cdata;
404
- break;
405
- case 'wp:wxr_version':
406
- $this->wxr_version = $this->cdata;
407
- break;
408
-
409
- default:
410
- if ( $this->in_sub_tag ) {
411
- $this->sub_data[$this->in_sub_tag] = ! empty( $this->cdata ) ? $this->cdata : '';
412
- $this->in_sub_tag = false;
413
- } else if ( $this->in_tag ) {
414
- $this->data[$this->in_tag] = ! empty( $this->cdata ) ? $this->cdata : '';
415
- $this->in_tag = false;
416
- }
417
- }
418
-
419
- $this->cdata = false;
420
- }
421
- }
422
-
423
- /**
424
- * WXR Parser that uses regular expressions. Fallback for installs without an XML parser.
425
- */
426
- class Acme_Demo_Setup_WXR_Parser_Regex {
427
- var $authors = array();
428
- var $posts = array();
429
- var $categories = array();
430
- var $tags = array();
431
- var $terms = array();
432
- var $base_url = '';
433
-
434
- function __construct() {
435
- $this->has_gzip = is_callable( 'gzopen' );
436
- }
437
-
438
- function parse( $file ) {
439
- $wxr_version = $in_post = false;
440
-
441
- $fp = $this->fopen( $file, 'r' );
442
- if ( $fp ) {
443
- while ( ! $this->feof( $fp ) ) {
444
- $importline = rtrim( $this->fgets( $fp ) );
445
-
446
- if ( ! $wxr_version && preg_match( '|<wp:wxr_version>(\d+\.\d+)</wp:wxr_version>|', $importline, $version ) )
447
- $wxr_version = $version[1];
448
-
449
- if ( false !== strpos( $importline, '<wp:base_site_url>' ) ) {
450
- preg_match( '|<wp:base_site_url>(.*?)</wp:base_site_url>|is', $importline, $url );
451
- $this->base_url = $url[1];
452
- continue;
453
- }
454
- if ( false !== strpos( $importline, '<wp:category>' ) ) {
455
- preg_match( '|<wp:category>(.*?)</wp:category>|is', $importline, $category );
456
- $this->categories[] = $this->process_category( $category[1] );
457
- continue;
458
- }
459
- if ( false !== strpos( $importline, '<wp:tag>' ) ) {
460
- preg_match( '|<wp:tag>(.*?)</wp:tag>|is', $importline, $tag );
461
- $this->tags[] = $this->process_tag( $tag[1] );
462
- continue;
463
- }
464
- if ( false !== strpos( $importline, '<wp:term>' ) ) {
465
- preg_match( '|<wp:term>(.*?)</wp:term>|is', $importline, $term );
466
- $this->terms[] = $this->process_term( $term[1] );
467
- continue;
468
- }
469
- if ( false !== strpos( $importline, '<wp:author>' ) ) {
470
- preg_match( '|<wp:author>(.*?)</wp:author>|is', $importline, $author );
471
- $a = $this->process_author( $author[1] );
472
- $this->authors[$a['author_login']] = $a;
473
- continue;
474
- }
475
- if ( false !== strpos( $importline, '<item>' ) ) {
476
- $post = '';
477
- $in_post = true;
478
- continue;
479
- }
480
- if ( false !== strpos( $importline, '</item>' ) ) {
481
- $in_post = false;
482
- $this->posts[] = $this->process_post( $post );
483
- continue;
484
- }
485
- if ( $in_post ) {
486
- $post .= $importline . "\n";
487
- }
488
- }
489
-
490
- $this->fclose($fp);
491
- }
492
-
493
- if ( ! $wxr_version )
494
- return new WP_Error( 'WXR_parse_error', __( 'This does not appear to be a WXR file, missing/invalid WXR version number', 'wordpress-importer' ) );
495
-
496
- return array(
497
- 'authors' => $this->authors,
498
- 'posts' => $this->posts,
499
- 'categories' => $this->categories,
500
- 'tags' => $this->tags,
501
- 'terms' => $this->terms,
502
- 'base_url' => $this->base_url,
503
- 'version' => $wxr_version
504
- );
505
- }
506
-
507
- function get_tag( $string, $tag ) {
508
- preg_match( "|<$tag.*?>(.*?)</$tag>|is", $string, $return );
509
- if ( isset( $return[1] ) ) {
510
- if ( substr( $return[1], 0, 9 ) == '<![CDATA[' ) {
511
- if ( strpos( $return[1], ']]]]><![CDATA[>' ) !== false ) {
512
- preg_match_all( '|<!\[CDATA\[(.*?)\]\]>|s', $return[1], $matches );
513
- $return = '';
514
- foreach( $matches[1] as $match )
515
- $return .= $match;
516
- } else {
517
- $return = preg_replace( '|^<!\[CDATA\[(.*)\]\]>$|s', '$1', $return[1] );
518
- }
519
- } else {
520
- $return = $return[1];
521
- }
522
- } else {
523
- $return = '';
524
- }
525
- return $return;
526
- }
527
-
528
- function process_category( $c ) {
529
- return array(
530
- 'term_id' => $this->get_tag( $c, 'wp:term_id' ),
531
- 'cat_name' => $this->get_tag( $c, 'wp:cat_name' ),
532
- 'category_nicename' => $this->get_tag( $c, 'wp:category_nicename' ),
533
- 'category_parent' => $this->get_tag( $c, 'wp:category_parent' ),
534
- 'category_description' => $this->get_tag( $c, 'wp:category_description' ),
535
- );
536
- }
537
-
538
- function process_tag( $t ) {
539
- return array(
540
- 'term_id' => $this->get_tag( $t, 'wp:term_id' ),
541
- 'tag_name' => $this->get_tag( $t, 'wp:tag_name' ),
542
- 'tag_slug' => $this->get_tag( $t, 'wp:tag_slug' ),
543
- 'tag_description' => $this->get_tag( $t, 'wp:tag_description' ),
544
- );
545
- }
546
-
547
- function process_term( $t ) {
548
- return array(
549
- 'term_id' => $this->get_tag( $t, 'wp:term_id' ),
550
- 'term_taxonomy' => $this->get_tag( $t, 'wp:term_taxonomy' ),
551
- 'slug' => $this->get_tag( $t, 'wp:term_slug' ),
552
- 'term_parent' => $this->get_tag( $t, 'wp:term_parent' ),
553
- 'term_name' => $this->get_tag( $t, 'wp:term_name' ),
554
- 'term_description' => $this->get_tag( $t, 'wp:term_description' ),
555
- );
556
- }
557
-
558
- function process_author( $a ) {
559
- return array(
560
- 'author_id' => $this->get_tag( $a, 'wp:author_id' ),
561
- 'author_login' => $this->get_tag( $a, 'wp:author_login' ),
562
- 'author_email' => $this->get_tag( $a, 'wp:author_email' ),
563
- 'author_display_name' => $this->get_tag( $a, 'wp:author_display_name' ),
564
- 'author_first_name' => $this->get_tag( $a, 'wp:author_first_name' ),
565
- 'author_last_name' => $this->get_tag( $a, 'wp:author_last_name' ),
566
- );
567
- }
568
-
569
- function process_post( $post ) {
570
- $post_id = $this->get_tag( $post, 'wp:post_id' );
571
- $post_title = $this->get_tag( $post, 'title' );
572
- $post_date = $this->get_tag( $post, 'wp:post_date' );
573
- $post_date_gmt = $this->get_tag( $post, 'wp:post_date_gmt' );
574
- $comment_status = $this->get_tag( $post, 'wp:comment_status' );
575
- $ping_status = $this->get_tag( $post, 'wp:ping_status' );
576
- $status = $this->get_tag( $post, 'wp:status' );
577
- $post_name = $this->get_tag( $post, 'wp:post_name' );
578
- $post_parent = $this->get_tag( $post, 'wp:post_parent' );
579
- $menu_order = $this->get_tag( $post, 'wp:menu_order' );
580
- $post_type = $this->get_tag( $post, 'wp:post_type' );
581
- $post_password = $this->get_tag( $post, 'wp:post_password' );
582
- $is_sticky = $this->get_tag( $post, 'wp:is_sticky' );
583
- $guid = $this->get_tag( $post, 'guid' );
584
- $post_author = $this->get_tag( $post, 'dc:creator' );
585
-
586
- $post_excerpt = $this->get_tag( $post, 'excerpt:encoded' );
587
- $post_excerpt = preg_replace_callback( '|<(/?[A-Z]+)|', array( &$this, '_normalize_tag' ), $post_excerpt );
588
- $post_excerpt = str_replace( '<br>', '<br />', $post_excerpt );
589
- $post_excerpt = str_replace( '<hr>', '<hr />', $post_excerpt );
590
-
591
- $post_content = $this->get_tag( $post, 'content:encoded' );
592
- $post_content = preg_replace_callback( '|<(/?[A-Z]+)|', array( &$this, '_normalize_tag' ), $post_content );
593
- $post_content = str_replace( '<br>', '<br />', $post_content );
594
- $post_content = str_replace( '<hr>', '<hr />', $post_content );
595
-
596
- $postdata = compact( 'post_id', 'post_author', 'post_date', 'post_date_gmt', 'post_content', 'post_excerpt',
597
- 'post_title', 'status', 'post_name', 'comment_status', 'ping_status', 'guid', 'post_parent',
598
- 'menu_order', 'post_type', 'post_password', 'is_sticky'
599
- );
600
-
601
- $attachment_url = $this->get_tag( $post, 'wp:attachment_url' );
602
- if ( $attachment_url )
603
- $postdata['attachment_url'] = $attachment_url;
604
-
605
- preg_match_all( '|<category domain="([^"]+?)" nicename="([^"]+?)">(.+?)</category>|is', $post, $terms, PREG_SET_ORDER );
606
- foreach ( $terms as $t ) {
607
- $post_terms[] = array(
608
- 'slug' => $t[2],
609
- 'domain' => $t[1],
610
- 'name' => str_replace( array( '<![CDATA[', ']]>' ), '', $t[3] ),
611
- );
612
- }
613
- if ( ! empty( $post_terms ) ) $postdata['terms'] = $post_terms;
614
-
615
- preg_match_all( '|<wp:comment>(.+?)</wp:comment>|is', $post, $comments );
616
- $comments = $comments[1];
617
- if ( $comments ) {
618
- foreach ( $comments as $comment ) {
619
- preg_match_all( '|<wp:commentmeta>(.+?)</wp:commentmeta>|is', $comment, $commentmeta );
620
- $commentmeta = $commentmeta[1];
621
- $c_meta = array();
622
- foreach ( $commentmeta as $m ) {
623
- $c_meta[] = array(
624
- 'key' => $this->get_tag( $m, 'wp:meta_key' ),
625
- 'value' => $this->get_tag( $m, 'wp:meta_value' ),
626
- );
627
- }
628
-
629
- $post_comments[] = array(
630
- 'comment_id' => $this->get_tag( $comment, 'wp:comment_id' ),
631
- 'comment_author' => $this->get_tag( $comment, 'wp:comment_author' ),
632
- 'comment_author_email' => $this->get_tag( $comment, 'wp:comment_author_email' ),
633
- 'comment_author_IP' => $this->get_tag( $comment, 'wp:comment_author_IP' ),
634
- 'comment_author_url' => $this->get_tag( $comment, 'wp:comment_author_url' ),
635
- 'comment_date' => $this->get_tag( $comment, 'wp:comment_date' ),
636
- 'comment_date_gmt' => $this->get_tag( $comment, 'wp:comment_date_gmt' ),
637
- 'comment_content' => $this->get_tag( $comment, 'wp:comment_content' ),
638
- 'comment_approved' => $this->get_tag( $comment, 'wp:comment_approved' ),
639
- 'comment_type' => $this->get_tag( $comment, 'wp:comment_type' ),
640
- 'comment_parent' => $this->get_tag( $comment, 'wp:comment_parent' ),
641
- 'comment_user_id' => $this->get_tag( $comment, 'wp:comment_user_id' ),
642
- 'commentmeta' => $c_meta,
643
- );
644
- }
645
- }
646
- if ( ! empty( $post_comments ) ) $postdata['comments'] = $post_comments;
647
-
648
- preg_match_all( '|<wp:postmeta>(.+?)</wp:postmeta>|is', $post, $postmeta );
649
- $postmeta = $postmeta[1];
650
- if ( $postmeta ) {
651
- foreach ( $postmeta as $p ) {
652
- $post_postmeta[] = array(
653
- 'key' => $this->get_tag( $p, 'wp:meta_key' ),
654
- 'value' => $this->get_tag( $p, 'wp:meta_value' ),
655
- );
656
- }
657
- }
658
- if ( ! empty( $post_postmeta ) ) $postdata['postmeta'] = $post_postmeta;
659
-
660
- return $postdata;
661
- }
662
-
663
- function _normalize_tag( $matches ) {
664
- return '<' . strtolower( $matches[1] );
665
- }
666
-
667
- function fopen( $filename, $mode = 'r' ) {
668
- if ( $this->has_gzip )
669
- return gzopen( $filename, $mode );
670
- return fopen( $filename, $mode );
671
- }
672
-
673
- function feof( $fp ) {
674
- if ( $this->has_gzip )
675
- return gzeof( $fp );
676
- return feof( $fp );
677
- }
678
-
679
- function fgets( $fp, $len = 8192 ) {
680
- if ( $this->has_gzip )
681
- return gzgets( $fp, $len );
682
- return fgets( $fp, $len );
683
- }
684
-
685
- function fclose( $fp ) {
686
- if ( $this->has_gzip )
687
- return gzclose( $fp );
688
- return fclose( $fp );
689
- }
690
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
inc/frameworks/wordpress-importer/wordpress-importer.php DELETED
@@ -1,1023 +0,0 @@
1
- <?php
2
-
3
- /** Display verbose errors */
4
- define( 'IMPORT_DEBUG', false );
5
-
6
- // Load Importer API
7
- require_once ABSPATH . 'wp-admin/includes/import.php';
8
-
9
- if ( ! class_exists( 'WP_Importer' ) ) {
10
- $class_wp_importer = ABSPATH . 'wp-admin/includes/class-wp-importer.php';
11
- if ( file_exists( $class_wp_importer ) )
12
- require $class_wp_importer;
13
- }
14
-
15
- // include WXR file parsers
16
- require dirname(__FILE__) . '/parsers.php';
17
-
18
- /**
19
- * WordPress Importer class for managing the import process of a WXR file
20
- *
21
- * @package WordPress
22
- * @subpackage Importer
23
- *
24
- * Renaming WP_Import to Acme_Demo_Setup_Wp_Import
25
- */
26
- if ( class_exists( 'WP_Importer' ) ) {
27
- class Acme_Demo_Setup_Wp_Import extends WP_Importer {
28
- var $max_wxr_version = 1.2; // max. supported WXR version
29
-
30
- var $id; // WXR attachment ID
31
-
32
- // information to import from WXR file
33
- var $version;
34
- var $authors = array();
35
- var $posts = array();
36
- var $terms = array();
37
- var $categories = array();
38
- var $tags = array();
39
- var $base_url = '';
40
-
41
- // mappings from old information to new
42
- var $processed_authors = array();
43
- var $author_mapping = array();
44
- var $processed_terms = array();
45
- var $processed_posts = array();
46
- var $post_orphans = array();
47
- var $processed_menu_items = array();
48
- var $menu_item_orphans = array();
49
- var $missing_menu_items = array();
50
-
51
- var $fetch_attachments = false;
52
- var $url_remap = array();
53
- var $featured_images = array();
54
-
55
- /**
56
- * The main controller for the actual import stage.
57
- *
58
- * @param string $file Path to the WXR file for importing
59
- */
60
- function import( $file ) {
61
-
62
- add_filter( 'import_post_meta_key', array( $this, 'is_valid_meta_key' ) );
63
- add_filter( 'http_request_timeout', array( &$this, 'bump_request_timeout' ) );
64
-
65
- $this->import_start( $file );
66
-
67
- $this->get_author_mapping();
68
-
69
- wp_suspend_cache_invalidation( true );
70
- $this->process_categories();
71
- $this->process_tags();
72
- $this->process_terms();
73
- $this->process_posts();
74
- wp_suspend_cache_invalidation( false );
75
-
76
- // update incorrect/missing information in the DB
77
- $this->backfill_parents();
78
- $this->backfill_attachment_urls();
79
- $this->remap_featured_images();
80
-
81
- $this->import_end();
82
- }
83
-
84
- /**
85
- * Parses the WXR file and prepares us for the task of processing parsed data
86
- *
87
- * @param string $file Path to the WXR file for importing
88
- */
89
- function import_start( $file ) {
90
-
91
- if ( ! is_file($file) ) {
92
- echo '<p><strong>' . __( 'Sorry, there has been an error.', 'wordpress-importer' ) . '</strong><br />';
93
- echo __( 'The file does not exist, please try again.', 'wordpress-importer' ) . '</p>';
94
- die();
95
- }
96
-
97
- $import_data = $this->parse( $file );
98
-
99
- if ( is_wp_error( $import_data ) ) {
100
- echo '<p><strong>' . __( 'Sorry, there has been an error.', 'wordpress-importer' ) . '</strong><br />';
101
- echo esc_html( $import_data->get_error_message() ) . '</p>';
102
- die();
103
- }
104
-
105
- $this->version = $import_data['version'];
106
- $this->get_authors_from_import( $import_data );
107
- $this->posts = $import_data['posts'];
108
- $this->terms = $import_data['terms'];
109
- $this->categories = $import_data['categories'];
110
- $this->tags = $import_data['tags'];
111
- $this->base_url = esc_url( $import_data['base_url'] );
112
-
113
- wp_defer_term_counting( true );
114
- wp_defer_comment_counting( true );
115
-
116
- do_action( 'import_start' );
117
- }
118
-
119
- /**
120
- * Performs post-import cleanup of files and the cache
121
- */
122
- function import_end() {
123
- wp_import_cleanup( $this->id );
124
-
125
- wp_cache_flush();
126
- foreach ( get_taxonomies() as $tax ) {
127
- delete_option( "{$tax}_children" );
128
- _get_term_hierarchy( $tax );
129
- }
130
-
131
- wp_defer_term_counting( false );
132
- wp_defer_comment_counting( false );
133
-
134
- echo '<p>' . __( 'Remember to update the passwords and roles of imported users.', 'wordpress-importer' ) . '</p>';
135
-
136
- do_action( 'import_end' );
137
- }
138
-
139
-
140
- /**
141
- * Retrieve authors from parsed WXR data
142
- *
143
- * Uses the provided author information from WXR 1.1 files
144
- * or extracts info from each post for WXR 1.0 files
145
- *
146
- * @param array $import_data Data returned by a WXR parser
147
- */
148
- function get_authors_from_import( $import_data ) {
149
- if ( ! empty( $import_data['authors'] ) ) {
150
- $this->authors = $import_data['authors'];
151
- // no author information, grab it from the posts
152
- } else {
153
- foreach ( $import_data['posts'] as $post ) {
154
- $login = sanitize_user( $post['post_author'], true );
155
- if ( empty( $login ) ) {
156
- printf( __( 'Failed to import author %s. Their posts will be attributed to the current user.', 'wordpress-importer' ), esc_html( $post['post_author'] ) );
157
- echo '<br />';
158
- continue;
159
- }
160
-
161
- if ( ! isset($this->authors[$login]) )
162
- $this->authors[$login] = array(
163
- 'author_login' => $login,
164
- 'author_display_name' => $post['post_author']
165
- );
166
- }
167
- }
168
- }
169
-
170
- /**
171
- * Map old author logins to local user IDs based on decisions made
172
- * in import options form. Can map to an existing user, create a new user
173
- * or falls back to the current user in case of error with either of the previous
174
- */
175
- function get_author_mapping() {
176
- if ( ! isset( $_POST['imported_authors'] ) )
177
- return;
178
-
179
- $create_users = $this->allow_create_users();
180
-
181
- foreach ( (array) $_POST['imported_authors'] as $i => $old_login ) {
182
- // Multisite adds strtolower to sanitize_user. Need to sanitize here to stop breakage in process_posts.
183
- $santized_old_login = sanitize_user( $old_login, true );
184
- $old_id = isset( $this->authors[$old_login]['author_id'] ) ? intval($this->authors[$old_login]['author_id']) : false;
185
-
186
- if ( ! empty( $_POST['user_map'][$i] ) ) {
187
- $user = get_userdata( intval($_POST['user_map'][$i]) );
188
- if ( isset( $user->ID ) ) {
189
- if ( $old_id )
190
- $this->processed_authors[$old_id] = $user->ID;
191
- $this->author_mapping[$santized_old_login] = $user->ID;
192
- }
193
- } else if ( $create_users ) {
194
- if ( ! empty($_POST['user_new'][$i]) ) {
195
- $user_id = wp_create_user( $_POST['user_new'][$i], wp_generate_password() );
196
- } else if ( $this->version != '1.0' ) {
197
- $user_data = array(
198
- 'user_login' => $old_login,
199
- 'user_pass' => wp_generate_password(),
200
- 'user_email' => isset( $this->authors[$old_login]['author_email'] ) ? $this->authors[$old_login]['author_email'] : '',
201
- 'display_name' => $this->authors[$old_login]['author_display_name'],
202
- 'first_name' => isset( $this->authors[$old_login]['author_first_name'] ) ? $this->authors[$old_login]['author_first_name'] : '',
203
- 'last_name' => isset( $this->authors[$old_login]['author_last_name'] ) ? $this->authors[$old_login]['author_last_name'] : '',
204
- );
205
- $user_id = wp_insert_user( $user_data );
206
- }
207
-
208
- if ( ! is_wp_error( $user_id ) ) {
209
- if ( $old_id )
210
- $this->processed_authors[$old_id] = $user_id;
211
- $this->author_mapping[$santized_old_login] = $user_id;
212
- } else {
213
- printf( __( 'Failed to create new user for %s. Their posts will be attributed to the current user.', 'wordpress-importer' ), esc_html($this->authors[$old_login]['author_display_name']) );
214
- if ( defined('IMPORT_DEBUG') && IMPORT_DEBUG )
215
- echo ' ' . $user_id->get_error_message();
216
- echo '<br />';
217
- }
218
- }
219
-
220
- // failsafe: if the user_id was invalid, default to the current user
221
- if ( ! isset( $this->author_mapping[$santized_old_login] ) ) {
222
- if ( $old_id )
223
- $this->processed_authors[$old_id] = (int) get_current_user_id();
224
- $this->author_mapping[$santized_old_login] = (int) get_current_user_id();
225
- }
226
- }
227
- }
228
-
229
- /**
230
- * Create new categories based on import information
231
- *
232
- * Doesn't create a new category if its slug already exists
233
- */
234
- function process_categories() {
235
- $this->categories = apply_filters( 'wp_import_categories', $this->categories );
236
-
237
- if ( empty( $this->categories ) )
238
- return;
239
-
240
- foreach ( $this->categories as $cat ) {
241
- // if the category already exists leave it alone
242
- $term_id = term_exists( $cat['category_nicename'], 'category' );
243
- if ( $term_id ) {
244
- if ( is_array($term_id) ) $term_id = $term_id['term_id'];
245
- if ( isset($cat['term_id']) )
246
- $this->processed_terms[intval($cat['term_id'])] = (int) $term_id;
247
- continue;
248
- }
249
-
250
- $category_parent = empty( $cat['category_parent'] ) ? 0 : category_exists( $cat['category_parent'] );
251
- $category_description = isset( $cat['category_description'] ) ? $cat['category_description'] : '';
252
- $catarr = array(
253
- 'category_nicename' => $cat['category_nicename'],
254
- 'category_parent' => $category_parent,
255
- 'cat_name' => $cat['cat_name'],
256
- 'category_description' => $category_description
257
- );
258
- $catarr = wp_slash( $catarr );
259
-
260
- $id = wp_insert_category( $catarr );
261
- if ( ! is_wp_error( $id ) ) {
262
- if ( isset($cat['term_id']) )
263
- $this->processed_terms[intval($cat['term_id'])] = $id;
264
- } else {
265
- printf( __( 'Failed to import category %s', 'wordpress-importer' ), esc_html($cat['category_nicename']) );
266
- if ( defined('IMPORT_DEBUG') && IMPORT_DEBUG )
267
- echo ': ' . $id->get_error_message();
268
- echo '<br />';
269
- continue;
270
- }
271
-
272
- $this->process_termmeta( $cat, $id['term_id'] );
273
- }
274
-
275
- unset( $this->categories );
276
- }
277
-
278
- /**
279
- * Create new post tags based on import information
280
- *
281
- * Doesn't create a tag if its slug already exists
282
- */
283
- function process_tags() {
284
- $this->tags = apply_filters( 'wp_import_tags', $this->tags );
285
-
286
- if ( empty( $this->tags ) )
287
- return;
288
-
289
- foreach ( $this->tags as $tag ) {
290
- // if the tag already exists leave it alone
291
- $term_id = term_exists( $tag['tag_slug'], 'post_tag' );
292
- if ( $term_id ) {
293
- if ( is_array($term_id) ) $term_id = $term_id['term_id'];
294
- if ( isset($tag['term_id']) )
295
- $this->processed_terms[intval($tag['term_id'])] = (int) $term_id;
296
- continue;
297
- }
298
-
299
- $tag = wp_slash( $tag );
300
- $tag_desc = isset( $tag['tag_description'] ) ? $tag['tag_description'] : '';
301
- $tagarr = array( 'slug' => $tag['tag_slug'], 'description' => $tag_desc );
302
-
303
- $id = wp_insert_term( $tag['tag_name'], 'post_tag', $tagarr );
304
- if ( ! is_wp_error( $id ) ) {
305
- if ( isset($tag['term_id']) )
306
- $this->processed_terms[intval($tag['term_id'])] = $id['term_id'];
307
- } else {
308
- printf( __( 'Failed to import post tag %s', 'wordpress-importer' ), esc_html($tag['tag_name']) );
309
- if ( defined('IMPORT_DEBUG') && IMPORT_DEBUG )
310
- echo ': ' . $id->get_error_message();
311
- echo '<br />';
312
- continue;
313
- }
314
-
315
- $this->process_termmeta( $tag, $id['term_id'] );
316
- }
317
-
318
- unset( $this->tags );
319
- }
320
-
321
- /**
322
- * Create new terms based on import information
323
- *
324
- * Doesn't create a term its slug already exists
325
- */
326
- function process_terms() {
327
- $this->terms = apply_filters( 'wp_import_terms', $this->terms );
328
-
329
- if ( empty( $this->terms ) )
330
- return;
331
-
332
- foreach ( $this->terms as $term ) {
333
- // if the term already exists in the correct taxonomy leave it alone
334
- $term_id = term_exists( $term['slug'], $term['term_taxonomy'] );
335
- if ( $term_id ) {
336
- if ( is_array($term_id) ) $term_id = $term_id['term_id'];
337
- if ( isset($term['term_id']) )
338
- $this->processed_terms[intval($term['term_id'])] = (int) $term_id;
339
- continue;
340
- }
341
-
342
- if ( empty( $term['term_parent'] ) ) {
343
- $parent = 0;
344
- } else {
345
- $parent = term_exists( $term['term_parent'], $term['term_taxonomy'] );
346
- if ( is_array( $parent ) ) $parent = $parent['term_id'];
347
- }
348
- $term = wp_slash( $term );
349
- $description = isset( $term['term_description'] ) ? $term['term_description'] : '';
350
- $termarr = array( 'slug' => $term['slug'], 'description' => $description, 'parent' => intval($parent) );
351
-
352
- $id = wp_insert_term( $term['term_name'], $term['term_taxonomy'], $termarr );
353
- if ( ! is_wp_error( $id ) ) {
354
- if ( isset($term['term_id']) )
355
- $this->processed_terms[intval($term['term_id'])] = $id['term_id'];
356
- } else {
357
- printf( __( 'Failed to import %s %s', 'wordpress-importer' ), esc_html($term['term_taxonomy']), esc_html($term['term_name']) );
358
- if ( defined('IMPORT_DEBUG') && IMPORT_DEBUG )
359
- echo ': ' . $id->get_error_message();
360
- echo '<br />';
361
- continue;
362
- }
363
-
364
- $this->process_termmeta( $term, $id['term_id'] );
365
- }
366
-
367
- unset( $this->terms );
368
- }
369
-
370
- /**
371
- * Add metadata to imported term.
372
- *
373
- * @since 0.6.2
374
- *
375
- * @param array $term Term data from WXR import.
376
- * @param int $term_id ID of the newly created term.
377
- */
378
- protected function process_termmeta( $term, $term_id ) {
379
- if ( ! isset( $term['termmeta'] ) ) {
380
- $term['termmeta'] = array();
381
- }
382
-
383
- /**
384
- * Filters the metadata attached to an imported term.
385
- *
386
- * @since 0.6.2
387
- *
388
- * @param array $termmeta Array of term meta.
389
- * @param int $term_id ID of the newly created term.
390
- * @param array $term Term data from the WXR import.
391
- */
392
- $term['termmeta'] = apply_filters( 'wp_import_term_meta', $term['termmeta'], $term_id, $term );
393
-
394
- if ( empty( $term['termmeta'] ) ) {
395
- return;
396
- }
397
-
398
- foreach ( $term['termmeta'] as $meta ) {
399
- /**
400
- * Filters the meta key for an imported piece of term meta.
401
- *
402
- * @since 0.6.2
403
- *
404
- * @param string $meta_key Meta key.
405
- * @param int $term_id ID of the newly created term.
406
- * @param array $term Term data from the WXR import.
407
- */
408
- $key = apply_filters( 'import_term_meta_key', $meta['key'], $term_id, $term );
409
- if ( ! $key ) {
410
- continue;
411
- }
412
-
413
- // Export gets meta straight from the DB so could have a serialized string
414
- $value = maybe_unserialize( $meta['value'] );
415
-
416
- add_term_meta( $term_id, $key, $value );
417
-
418
- /**
419
- * Fires after term meta is imported.
420
- *
421
- * @since 0.6.2
422
- *
423
- * @param int $term_id ID of the newly created term.
424
- * @param string $key Meta key.
425
- * @param mixed $value Meta value.
426
- */
427
- do_action( 'import_term_meta', $term_id, $key, $value );
428
- }
429
- }
430
-
431
- /**
432
- * Create new posts based on import information
433
- *
434
- * Posts marked as having a parent which doesn't exist will become top level items.
435
- * Doesn't create a new post if: the post type doesn't exist, the given post ID
436
- * is already noted as imported or a post with the same title and date already exists.
437
- * Note that new/updated terms, comments and meta are imported for the last of the above.
438
- */
439
- function process_posts() {
440
- $this->posts = apply_filters( 'wp_import_posts', $this->posts );
441
-
442
- foreach ( $this->posts as $post ) {
443
- $post = apply_filters( 'wp_import_post_data_raw', $post );
444
-
445
- if ( ! post_type_exists( $post['post_type'] ) ) {
446
- printf( __( 'Failed to import &#8220;%s&#8221;: Invalid post type %s', 'wordpress-importer' ),
447
- esc_html($post['post_title']), esc_html($post['post_type']) );
448
- echo '<br />';
449
- do_action( 'wp_import_post_exists', $post );
450
- continue;
451
- }
452
-
453
- if ( isset( $this->processed_posts[$post['post_id']] ) && ! empty( $post['post_id'] ) )
454
- continue;
455
-
456
- if ( $post['status'] == 'auto-draft' )
457
- continue;
458
-
459
- if ( 'nav_menu_item' == $post['post_type'] ) {
460
- $this->process_menu_item( $post );
461
- continue;
462
- }
463
-
464
- $post_type_object = get_post_type_object( $post['post_type'] );
465
-
466
- $post_exists = post_exists( $post['post_title'], '', $post['post_date'] );
467
-
468
- /**
469
- * Filter ID of the existing post corresponding to post currently importing.
470
- *
471
- * Return 0 to force the post to be imported. Filter the ID to be something else
472
- * to override which existing post is mapped to the imported post.
473
- *
474
- * @see post_exists()
475
- * @since 0.6.2
476
- *
477
- * @param int $post_exists Post ID, or 0 if post did not exist.
478
- * @param array $post The post array to be inserted.
479
- */
480
- $post_exists = apply_filters( 'wp_import_existing_post', $post_exists, $post );
481
-
482
- if ( $post_exists && get_post_type( $post_exists ) == $post['post_type'] ) {
483
- printf( __('%s &#8220;%s&#8221; already exists.', 'wordpress-importer'), $post_type_object->labels->singular_name, esc_html($post['post_title']) );
484
- echo '<br />';
485
- $comment_post_ID = $post_id = $post_exists;
486
- $this->processed_posts[ intval( $post['post_id'] ) ] = intval( $post_exists );
487
- } else {
488
- $post_parent = (int) $post['post_parent'];
489
- if ( $post_parent ) {
490
- // if we already know the parent, map it to the new local ID
491
- if ( isset( $this->processed_posts[$post_parent] ) ) {
492
- $post_parent = $this->processed_posts[$post_parent];
493
- // otherwise record the parent for later
494
- } else {
495
- $this->post_orphans[intval($post['post_id'])] = $post_parent;
496
- $post_parent = 0;
497
- }
498
- }
499
-
500
- // map the post author
501
- $author = sanitize_user( $post['post_author'], true );
502
- if ( isset( $this->author_mapping[$author] ) )
503
- $author = $this->author_mapping[$author];
504
- else
505
- $author = (int) get_current_user_id();
506
-
507
- $postdata = array(
508
- 'import_id' => $post['post_id'], 'post_author' => $author, 'post_date' => $post['post_date'],
509
- 'post_date_gmt' => $post['post_date_gmt'], 'post_content' => $post['post_content'],
510
- 'post_excerpt' => $post['post_excerpt'], 'post_title' => $post['post_title'],
511
- 'post_status' => $post['status'], 'post_name' => $post['post_name'],
512
- 'comment_status' => $post['comment_status'], 'ping_status' => $post['ping_status'],
513
- 'guid' => $post['guid'], 'post_parent' => $post_parent, 'menu_order' => $post['menu_order'],
514
- 'post_type' => $post['post_type'], 'post_password' => $post['post_password']
515
- );
516
-
517
- $original_post_ID = $post['post_id'];
518
- $postdata = apply_filters( 'wp_import_post_data_processed', $postdata, $post );
519
-
520
- $postdata = wp_slash( $postdata );
521
-
522
- if ( 'attachment' == $postdata['post_type'] ) {
523
- $remote_url = ! empty($post['attachment_url']) ? $post['attachment_url'] : $post['guid'];
524
-
525
- // try to use _wp_attached file for upload folder placement to ensure the same location as the export site
526
- // e.g. location is 2003/05/image.jpg but the attachment post_date is 2010/09, see media_handle_upload()
527
- $postdata['upload_date'] = $post['post_date'];
528
- if ( isset( $post['postmeta'] ) ) {
529
- foreach( $post['postmeta'] as $meta ) {
530
- if ( $meta['key'] == '_wp_attached_file' ) {
531
- if ( preg_match( '%^[0-9]{4}/[0-9]{2}%', $meta['value'], $matches ) )
532
- $postdata['upload_date'] = $matches[0];
533
- break;
534
- }
535
- }
536
- }
537
-
538
- $comment_post_ID = $post_id = $this->process_attachment( $postdata, $remote_url );
539
- } else {
540
- $comment_post_ID = $post_id = wp_insert_post( $postdata, true );
541
- do_action( 'wp_import_insert_post', $post_id, $original_post_ID, $postdata, $post );
542
- }
543
-
544
- if ( is_wp_error( $post_id ) ) {
545
- printf( __( 'Failed to import %s &#8220;%s&#8221;', 'wordpress-importer' ),
546
- $post_type_object->labels->singular_name, esc_html($post['post_title']) );
547
- if ( defined('IMPORT_DEBUG') && IMPORT_DEBUG )
548
- echo ': ' . $post_id->get_error_message();
549
- echo '<br />';
550
- continue;
551
- }
552
-
553
- if ( $post['is_sticky'] == 1 )
554
- stick_post( $post_id );
555
- }
556
-
557
- // map pre-import ID to local ID
558
- $this->processed_posts[intval($post['post_id'])] = (int) $post_id;
559
-
560
- if ( ! isset( $post['terms'] ) )
561
- $post['terms'] = array();
562
-
563
- $post['terms'] = apply_filters( 'wp_import_post_terms', $post['terms'], $post_id, $post );
564
-
565
- // add categories, tags and other terms
566
- if ( ! empty( $post['terms'] ) ) {
567
- $terms_to_set = array();
568
- foreach ( $post['terms'] as $term ) {
569
- // back compat with WXR 1.0 map 'tag' to 'post_tag'
570
- $taxonomy = ( 'tag' == $term['domain'] ) ? 'post_tag' : $term['domain'];
571
- $term_exists = term_exists( $term['slug'], $taxonomy );
572
- $term_id = is_array( $term_exists ) ? $term_exists['term_id'] : $term_exists;
573
- if ( ! $term_id ) {
574
- $t = wp_insert_term( $term['name'], $taxonomy, array( 'slug' => $term['slug'] ) );
575
- if ( ! is_wp_error( $t ) ) {
576
- $term_id = $t['term_id'];
577
- do_action( 'wp_import_insert_term', $t, $term, $post_id, $post );
578
- } else {
579
- printf( __( 'Failed to import %s %s', 'wordpress-importer' ), esc_html($taxonomy), esc_html($term['name']) );
580
- if ( defined('IMPORT_DEBUG') && IMPORT_DEBUG )
581
- echo ': ' . $t->get_error_message();
582
- echo '<br />';
583
- do_action( 'wp_import_insert_term_failed', $t, $term, $post_id, $post );
584
- continue;
585
- }
586
- }
587
- $terms_to_set[$taxonomy][] = intval( $term_id );
588
- }
589
-
590
- foreach ( $terms_to_set as $tax => $ids ) {
591
- $tt_ids = wp_set_post_terms( $post_id, $ids, $tax );
592
- do_action( 'wp_import_set_post_terms', $tt_ids, $ids, $tax, $post_id, $post );
593
- }
594
- unset( $post['terms'], $terms_to_set );
595
- }
596
-
597
- if ( ! isset( $post['comments'] ) )
598
- $post['comments'] = array();
599
-
600
- $post['comments'] = apply_filters( 'wp_import_post_comments', $post['comments'], $post_id, $post );
601
-
602
- // add/update comments
603
- if ( ! empty( $post['comments'] ) ) {
604
- $num_comments = 0;
605
- $inserted_comments = array();
606
- foreach ( $post['comments'] as $comment ) {
607
- $comment_id = $comment['comment_id'];
608
- $newcomments[$comment_id]['comment_post_ID'] = $comment_post_ID;
609
- $newcomments[$comment_id]['comment_author'] = $comment['comment_author'];
610
- $newcomments[$comment_id]['comment_author_email'] = $comment['comment_author_email'];
611
- $newcomments[$comment_id]['comment_author_IP'] = $comment['comment_author_IP'];
612
- $newcomments[$comment_id]['comment_author_url'] = $comment['comment_author_url'];
613
- $newcomments[$comment_id]['comment_date'] = $comment['comment_date'];
614
- $newcomments[$comment_id]['comment_date_gmt'] = $comment['comment_date_gmt'];
615
- $newcomments[$comment_id]['comment_content'] = $comment['comment_content'];
616
- $newcomments[$comment_id]['comment_approved'] = $comment['comment_approved'];
617
- $newcomments[$comment_id]['comment_type'] = $comment['comment_type'];
618
- $newcomments[$comment_id]['comment_parent'] = $comment['comment_parent'];
619
- $newcomments[$comment_id]['commentmeta'] = isset( $comment['commentmeta'] ) ? $comment['commentmeta'] : array();
620
- if ( isset( $this->processed_authors[$comment['comment_user_id']] ) )
621
- $newcomments[$comment_id]['user_id'] = $this->processed_authors[$comment['comment_user_id']];
622
- }
623
- ksort( $newcomments );
624
-
625
- foreach ( $newcomments as $key => $comment ) {
626
- // if this is a new post we can skip the comment_exists() check
627
- if ( ! $post_exists || ! comment_exists( $comment['comment_author'], $comment['comment_date'] ) ) {
628
- if ( isset( $inserted_comments[$comment['comment_parent']] ) )
629
- $comment['comment_parent'] = $inserted_comments[$comment['comment_parent']];
630
- $comment = wp_filter_comment( $comment );
631
- $inserted_comments[$key] = wp_insert_comment( $comment );
632
- do_action( 'wp_import_insert_comment', $inserted_comments[$key], $comment, $comment_post_ID, $post );
633
-
634
- foreach( $comment['commentmeta'] as $meta ) {
635
- $value = maybe_unserialize( $meta['value'] );
636
- add_comment_meta( $inserted_comments[$key], $meta['key'], $value );
637
- }
638
-
639
- $num_comments++;
640
- }
641
- }
642
- unset( $newcomments, $inserted_comments, $post['comments'] );
643
- }
644
-
645
- if ( ! isset( $post['postmeta'] ) )
646
- $post['postmeta'] = array();
647
-
648
- $post['postmeta'] = apply_filters( 'wp_import_post_meta', $post['postmeta'], $post_id, $post );
649
-
650
- // add/update post meta
651
- if ( ! empty( $post['postmeta'] ) ) {
652
- foreach ( $post['postmeta'] as $meta ) {
653
- $key = apply_filters( 'import_post_meta_key', $meta['key'], $post_id, $post );
654
- $value = false;
655
-
656
- if ( '_edit_last' == $key ) {
657
- if ( isset( $this->processed_authors[intval($meta['value'])] ) )
658
- $value = $this->processed_authors[intval($meta['value'])];
659
- else
660
- $key = false;
661
- }
662
-
663
- if ( $key ) {
664
- // export gets meta straight from the DB so could have a serialized string
665
- if ( ! $value )
666
- $value = maybe_unserialize( $meta['value'] );
667
-
668
- add_post_meta( $post_id, $key, $value );
669
- do_action( 'import_post_meta', $post_id, $key, $value );
670
-
671
- // if the post has a featured image, take note of this in case of remap
672
- if ( '_thumbnail_id' == $key )
673
- $this->featured_images[$post_id] = (int) $value;
674
- }
675
- }
676
- }
677
- }
678
-
679
- unset( $this->posts );
680
- }
681
-
682
- /**
683
- * Attempt to create a new menu item from import data
684
- *
685
- * Fails for draft, orphaned menu items and those without an associated nav_menu
686
- * or an invalid nav_menu term. If the post type or term object which the menu item
687
- * represents doesn't exist then the menu item will not be imported (waits until the
688
- * end of the import to retry again before discarding).
689
- *
690
- * @param array $item Menu item details from WXR file
691
- */
692
- function process_menu_item( $item ) {
693
- // skip draft, orphaned menu items
694
- if ( 'draft' == $item['status'] )
695
- return;
696
-
697
- $menu_slug = false;
698
- if ( isset($item['terms']) ) {
699
- // loop through terms, assume first nav_menu term is correct menu
700
- foreach ( $item['terms'] as $term ) {
701
- if ( 'nav_menu' == $term['domain'] ) {
702
- $menu_slug = $term['slug'];
703
- break;
704
- }
705
- }
706
- }
707
-
708
- // no nav_menu term associated with this menu item
709
- if ( ! $menu_slug ) {
710
- _e( 'Menu item skipped due to missing menu slug', 'wordpress-importer' );
711
- echo '<br />';
712
- return;
713
- }
714
-
715
- $menu_id = term_exists( $menu_slug, 'nav_menu' );
716
- if ( ! $menu_id ) {
717
- printf( __( 'Menu item skipped due to invalid menu slug: %s', 'wordpress-importer' ), esc_html( $menu_slug ) );
718
- echo '<br />';
719
- return;
720
- } else {
721
- $menu_id = is_array( $menu_id ) ? $menu_id['term_id'] : $menu_id;
722
- }
723
-
724
- foreach ( $item['postmeta'] as $meta )
725
- ${$meta['key']} = $meta['value'];
726
-
727
- if ( 'taxonomy' == $_menu_item_type && isset( $this->processed_terms[intval($_menu_item_object_id)] ) ) {
728
- $_menu_item_object_id = $this->processed_terms[intval($_menu_item_object_id)];
729
- } else if ( 'post_type' == $_menu_item_type && isset( $this->processed_posts[intval($_menu_item_object_id)] ) ) {
730
- $_menu_item_object_id = $this->processed_posts[intval($_menu_item_object_id)];
731
- } else if ( 'custom' != $_menu_item_type ) {
732
- // associated object is missing or not imported yet, we'll retry later
733
- $this->missing_menu_items[] = $item;
734
- return;
735
- }
736
-
737
- if ( isset( $this->processed_menu_items[intval($_menu_item_menu_item_parent)] ) ) {
738
- $_menu_item_menu_item_parent = $this->processed_menu_items[intval($_menu_item_menu_item_parent)];
739
- } else if ( $_menu_item_menu_item_parent ) {
740
- $this->menu_item_orphans[intval($item['post_id'])] = (int) $_menu_item_menu_item_parent;
741
- $_menu_item_menu_item_parent = 0;
742
- }
743
-
744
- // wp_update_nav_menu_item expects CSS classes as a space separated string
745
- $_menu_item_classes = maybe_unserialize( $_menu_item_classes );
746
- if ( is_array( $_menu_item_classes ) )
747
- $_menu_item_classes = implode( ' ', $_menu_item_classes );
748
-
749
- $args = array(
750
- 'menu-item-object-id' => $_menu_item_object_id,
751
- 'menu-item-object' => $_menu_item_object,
752
- 'menu-item-parent-id' => $_menu_item_menu_item_parent,
753
- 'menu-item-position' => intval( $item['menu_order'] ),
754
- 'menu-item-type' => $_menu_item_type,
755
- 'menu-item-title' => $item['post_title'],
756
- 'menu-item-url' => $_menu_item_url,
757
- 'menu-item-description' => $item['post_content'],
758
- 'menu-item-attr-title' => $item['post_excerpt'],
759
- 'menu-item-target' => $_menu_item_target,
760
- 'menu-item-classes' => $_menu_item_classes,
761
- 'menu-item-xfn' => $_menu_item_xfn,
762
- 'menu-item-status' => $item['status']
763
- );
764
-
765
- $id = wp_update_nav_menu_item( $menu_id, 0, $args );
766
- if ( $id && ! is_wp_error( $id ) )
767
- $this->processed_menu_items[intval($item['post_id'])] = (int) $id;
768
- }
769
-
770
- /**
771
- * If fetching attachments is enabled then attempt to create a new attachment
772
- *
773
- * @param array $post Attachment post details from WXR
774
- * @param string $url URL to fetch attachment from
775
- * @return int|WP_Error Post ID on success, WP_Error otherwise
776
- */
777
- function process_attachment( $post, $url ) {
778
- if ( ! $this->fetch_attachments )
779
- return new WP_Error( 'attachment_processing_error',
780
- __( 'Fetching attachments is not enabled', 'wordpress-importer' ) );
781
-
782
- // if the URL is absolute, but does not contain address, then upload it assuming base_site_url
783
- if ( preg_match( '|^/[\w\W]+$|', $url ) )
784
- $url = rtrim( $this->base_url, '/' ) . $url;
785
-
786
- $upload = $this->fetch_remote_file( $url, $post );
787
- if ( is_wp_error( $upload ) )
788
- return $upload;
789
-
790
- if ( $info = wp_check_filetype( $upload['file'] ) )
791
- $post['post_mime_type'] = $info['type'];
792
- else
793
- return new WP_Error( 'attachment_processing_error', __('Invalid file type', 'wordpress-importer') );
794
-
795
- $post['guid'] = $upload['url'];
796
-
797
- // as per wp-admin/includes/upload.php
798
- $post_id = wp_insert_attachment( $post, $upload['file'] );
799
- wp_update_attachment_metadata( $post_id, wp_generate_attachment_metadata( $post_id, $upload['file'] ) );
800
-
801
- // remap resized image URLs, works by stripping the extension and remapping the URL stub.
802
- if ( preg_match( '!^image/!', $info['type'] ) ) {
803
- $parts = pathinfo( $url );
804
- $name = basename( $parts['basename'], ".{$parts['extension']}" ); // PATHINFO_FILENAME in PHP 5.2
805
-
806
- $parts_new = pathinfo( $upload['url'] );
807
- $name_new = basename( $parts_new['basename'], ".{$parts_new['extension']}" );
808
-
809
- $this->url_remap[$parts['dirname'] . '/' . $name] = $parts_new['dirname'] . '/' . $name_new;
810
- }
811
-
812
- return $post_id;
813
- }
814
-
815
- /**
816
- * Attempt to download a remote file attachment
817
- *
818
- * @param string $url URL of item to fetch
819
- * @param array $post Attachment details
820
- * @return array|WP_Error Local file location details on success, WP_Error otherwise
821
- */
822
- function fetch_remote_file( $url, $post ) {
823
- // extract the file name and extension from the url
824
- $file_name = basename( $url );
825
-
826
- // get placeholder file in the upload dir with a unique, sanitized filename
827
- $upload = wp_upload_bits( $file_name, 0, '', $post['upload_date'] );
828
- if ( $upload['error'] )
829
- return new WP_Error( 'upload_dir_error', $upload['error'] );
830
-
831
- // fetch the remote url and write it to the placeholder file
832
- /*EDITED CODE START*/
833
- // fetch the remote url and write it to the placeholder file
834
- $response = wp_remote_get( $url, array(
835
- 'stream' => true,
836
- 'filename' => $upload['file'],
837
- ) );
838
-
839
- // request failed
840
- if ( is_wp_error( $response ) ) {
841
- unlink( $upload['file'] );
842
- return $response;
843
- }
844
-
845
- $code = (int) wp_remote_retrieve_response_code( $response );
846
-
847
- // make sure the fetch was successful
848
- if ( $code !== 200 ) {
849
- unlink( $upload['file'] );
850
- return new WP_Error(
851
- 'import_file_error',
852
- sprintf(
853
- __( 'Remote server returned %1$d %2$s for %3$s', 'wordpress-importer' ),
854
- $code,
855
- get_status_header_desc( $code ),
856
- $url
857
- )
858
- );
859
- }
860
-
861
- $filesize = filesize( $upload['file'] );
862
- $headers = wp_remote_retrieve_headers( $response );
863
- /*EDITED CODE END*/
864
-
865
- if ( isset( $headers['content-length'] ) && $filesize != $headers['content-length'] ) {
866
- @unlink( $upload['file'] );
867
- return new WP_Error( 'import_file_error', __('Remote file is incorrect size', 'wordpress-importer') );
868
- }
869
-
870
- if ( 0 == $filesize ) {
871
- @unlink( $upload['file'] );
872
- return new WP_Error( 'import_file_error', __('Zero size file downloaded', 'wordpress-importer') );
873
- }
874
-
875
- $max_size = (int) $this->max_attachment_size();
876
- if ( ! empty( $max_size ) && $filesize > $max_size ) {
877
- @unlink( $upload['file'] );
878
- return new WP_Error( 'import_file_error', sprintf(__('Remote file is too large, limit is %s', 'wordpress-importer'), size_format($max_size) ) );
879
- }
880
-
881
- // keep track of the old and new urls so we can substitute them later
882
- $this->url_remap[$url] = $upload['url'];
883
- $this->url_remap[$post['guid']] = $upload['url']; // r13735, really needed?
884
- // keep track of the destination if the remote url is redirected somewhere else
885
- if ( isset($headers['x-final-location']) && $headers['x-final-location'] != $url )
886
- $this->url_remap[$headers['x-final-location']] = $upload['url'];
887
-
888
- return $upload;
889
- }
890
-
891
- /**
892
- * Attempt to associate posts and menu items with previously missing parents
893
- *
894
- * An imported post's parent may not have been imported when it was first created
895
- * so try again. Similarly for child menu items and menu items which were missing
896
- * the object (e.g. post) they represent in the menu
897
- */
898
- function backfill_parents() {
899
- global $wpdb;
900
-
901
- // find parents for post orphans
902
- foreach ( $this->post_orphans as $child_id => $parent_id ) {
903
- $local_child_id = $local_parent_id = false;
904
- if ( isset( $this->processed_posts[$child_id] ) )
905
- $local_child_id = $this->processed_posts[$child_id];
906
- if ( isset( $this->processed_posts[$parent_id] ) )
907
- $local_parent_id = $this->processed_posts[$parent_id];
908
-
909
- if ( $local_child_id && $local_parent_id )
910
- $wpdb->update( $wpdb->posts, array( 'post_parent' => $local_parent_id ), array( 'ID' => $local_child_id ), '%d', '%d' );
911
- }
912
-
913
- // all other posts/terms are imported, retry menu items with missing associated object
914
- $missing_menu_items = $this->missing_menu_items;
915
- foreach ( $missing_menu_items as $item )
916
- $this->process_menu_item( $item );
917
-
918
- // find parents for menu item orphans
919
- foreach ( $this->menu_item_orphans as $child_id => $parent_id ) {
920
- $local_child_id = $local_parent_id = 0;
921
- if ( isset( $this->processed_menu_items[$child_id] ) )
922
- $local_child_id = $this->processed_menu_items[$child_id];
923
- if ( isset( $this->processed_menu_items[$parent_id] ) )
924
- $local_parent_id = $this->processed_menu_items[$parent_id];
925
-
926
- if ( $local_child_id && $local_parent_id )
927
- update_post_meta( $local_child_id, '_menu_item_menu_item_parent', (int) $local_parent_id );
928
- }
929
- }
930
-
931
- /**
932
- * Use stored mapping information to update old attachment URLs
933
- */
934
- function backfill_attachment_urls() {
935
- global $wpdb;
936
- // make sure we do the longest urls first, in case one is a substring of another
937
- uksort( $this->url_remap, array(&$this, 'cmpr_strlen') );
938
-
939
- foreach ( $this->url_remap as $from_url => $to_url ) {
940
- // remap urls in post_content
941
- $wpdb->query( $wpdb->prepare("UPDATE {$wpdb->posts} SET post_content = REPLACE(post_content, %s, %s)", $from_url, $to_url) );
942
- // remap enclosure urls
943
- $result = $wpdb->query( $wpdb->prepare("UPDATE {$wpdb->postmeta} SET meta_value = REPLACE(meta_value, %s, %s) WHERE meta_key='enclosure'", $from_url, $to_url) );
944
- }
945
- }
946
-
947
- /**
948
- * Update _thumbnail_id meta to new, imported attachment IDs
949
- */
950
- function remap_featured_images() {
951
- // cycle through posts that have a featured image
952
- foreach ( $this->featured_images as $post_id => $value ) {
953
- if ( isset( $this->processed_posts[$value] ) ) {
954
- $new_id = $this->processed_posts[$value];
955
- // only update if there's a difference
956
- if ( $new_id != $value )
957
- update_post_meta( $post_id, '_thumbnail_id', $new_id );
958
- }
959
- }
960
- }
961
-
962
- /**
963
- * Parse a WXR file
964
- *
965
- * @param string $file Path to WXR file for parsing
966
- * @return array Information gathered from the WXR file
967
- */
968
- function parse( $file ) {
969
- $parser = new Acme_Demo_Setup_WXR_Parser();
970
- return $parser->parse( $file );
971
- }
972
-
973
-
974
- /**
975
- * Decide if the given meta key maps to information we will want to import
976
- *
977
- * @param string $key The meta key to check
978
- * @return string|bool The key if we do want to import, false if not
979
- */
980
- function is_valid_meta_key( $key ) {
981
- // skip attachment metadata since we'll regenerate it from scratch
982
- // skip _edit_lock as not relevant for import
983
- if ( in_array( $key, array( '_wp_attached_file', '_wp_attachment_metadata', '_edit_lock' ) ) )
984
- return false;
985
- return $key;
986
- }
987
-
988
- /**
989
- * Decide whether or not the importer is allowed to create users.
990
- * Default is true, can be filtered via import_allow_create_users
991
- *
992
- * @return bool True if creating users is allowed
993
- */
994
- function allow_create_users() {
995
- return apply_filters( 'import_allow_create_users', true );
996
- }
997
-
998
-
999
- /**
1000
- * Decide what the maximum file size for downloaded attachments is.
1001
- * Default is 0 (unlimited), can be filtered via import_attachment_size_limit
1002
- *
1003
- * @return int Maximum attachment file size to import
1004
- */
1005
- function max_attachment_size() {
1006
- return apply_filters( 'import_attachment_size_limit', 0 );
1007
- }
1008
-
1009
- /**
1010
- * Added to http_request_timeout filter to force timeout at 60 seconds during import
1011
- * @return int 300
1012
- */
1013
- function bump_request_timeout( $val ) {
1014
- return 300;
1015
- }
1016
-
1017
- // return the difference in length between two strings
1018
- function cmpr_strlen( $a, $b ) {
1019
- return strlen($b) - strlen($a);
1020
- }
1021
- }
1022
-
1023
- } // class_exists( 'Acme_Demo_Setup_Wp_Import' )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
inc/hooks/after-demo-setup.php DELETED
@@ -1,80 +0,0 @@
1
- <?php
2
- if( !class_exists( 'Acme_Demo_Setup_After_Import') ):
3
-
4
- class Acme_Demo_Setup_After_Import {
5
-
6
- /*update nav menu*/
7
- function update_nav_menu( $acme_demo_setup_nav_data ){
8
- $new_theme_navs = array();
9
- $nav_menus = wp_get_nav_menus();
10
- if ( ! empty( $nav_menus ) ) {
11
- foreach ( $nav_menus as $nav_menu ) {
12
- if ( is_object( $nav_menu ) ) {
13
- foreach ( $acme_demo_setup_nav_data as $location => $location_name ) {
14
- if ( $nav_menu->name == $location_name ) {
15
- $new_theme_navs[ $location ] = $nav_menu->term_id;
16
- }
17
- }
18
- }
19
- }
20
- }
21
- set_theme_mod( 'nav_menu_locations', $new_theme_navs );
22
- }
23
-
24
- /*update WordPRess options for theme*/
25
- function update_wp_options( $wp_options ) {
26
-
27
- if ( ! empty( $wp_options ) ) {
28
-
29
- foreach ( $wp_options as $option_key => $option_value ) {
30
- if ( ! in_array( $option_key, array( 'blogname', 'blogdescription', 'show_on_front', 'page_on_front', 'page_for_posts' ) ) ) {
31
- continue;
32
- }
33
-
34
- // Format the value based on option key.
35
- switch ( $option_key ) {
36
- case 'show_on_front':
37
- if ( in_array( $option_value, array( 'posts', 'page' ) ) ) {
38
- update_option( 'show_on_front', $option_value );
39
- }
40
- break;
41
-
42
- case 'page_on_front':
43
- case 'page_for_posts':
44
- $page = get_page_by_title( $option_value );
45
- if ( is_object( $page ) && $page->ID ) {
46
- update_option( $option_key, $page->ID );
47
- update_option( 'show_on_front', 'page' );
48
- }
49
- break;
50
-
51
- default:
52
- update_option( $option_key, sanitize_text_field( $option_value ) );
53
- break;
54
- }
55
- }
56
- }
57
-
58
- return true;
59
- }
60
-
61
- function after_demo_import(){
62
-
63
- /*update theme options*/
64
- $acme_demo_setup_wp_options_data = apply_filters('acme_demo_setup_wp_options_data',array() );
65
-
66
- if( !empty( $acme_demo_setup_wp_options_data ) ){
67
- $this->update_wp_options( $acme_demo_setup_wp_options_data );
68
- }
69
-
70
- /*update theme menu*/
71
- $acme_demo_setup_nav_data = apply_filters('acme_demo_setup_nav_data',array() );
72
- if( !empty( $acme_demo_setup_nav_data ) ){
73
- $this->update_nav_menu( $acme_demo_setup_nav_data );
74
- }
75
- }
76
-
77
- }
78
- endif;
79
- $Acme_Demo_Setup_After_Import = new Acme_Demo_Setup_After_Import();
80
- add_action( 'acme_demo_setup_after_import', array( $Acme_Demo_Setup_After_Import, 'after_demo_import' ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
inc/hooks/before-demo-setup.php DELETED
@@ -1,44 +0,0 @@
1
- <?php
2
- if( !class_exists( 'Acme_Demo_Setup_Before_Import') ):
3
-
4
- class Acme_Demo_Setup_Before_Import {
5
- /**
6
- * Reset existing active widgets.
7
- */
8
- function reset_widgets() {
9
- $sidebars_widgets = wp_get_sidebars_widgets();
10
-
11
- // Reset active widgets.
12
- foreach ( $sidebars_widgets as $key => $widgets ) {
13
- $sidebars_widgets[ $key ] = array();
14
- }
15
-
16
- wp_set_sidebars_widgets( $sidebars_widgets );
17
- }
18
-
19
- /**
20
- * Delete existing navigation menus.
21
- */
22
- function delete_nav_menus() {
23
- $nav_menus = wp_get_nav_menus();
24
-
25
- // Delete navigation menus.
26
- if ( ! empty( $nav_menus ) ) {
27
- foreach ( $nav_menus as $nav_menu ) {
28
- wp_delete_nav_menu( $nav_menu->slug );
29
- }
30
- }
31
- }
32
-
33
- function before_demo_import() {
34
- $this->reset_widgets();
35
- $this->delete_nav_menus();
36
- /**
37
- * Remove theme modifications option.
38
- */
39
- remove_theme_mods();
40
- }
41
- }
42
- endif;
43
- $Acme_Demo_Setup_Before_Import = new Acme_Demo_Setup_Before_Import();
44
- add_action( 'acme_demo_setup_before_import', array( $Acme_Demo_Setup_Before_Import, 'before_demo_import' ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
inc/info.txt DELETED
@@ -1,14 +0,0 @@
1
- /*What done in this plugin
2
- 1. Renamed CEI_Core to Acme_Demo_Setup_CEI_Core
3
- 2. Modify _import method to pass input of file
4
- 3. Renamed CEI_Option to Acme_Demo_Setup_CEI_Option
5
- 4. Remaning wie_available_widgets to acme_demo_setup_wie_available_widgets
6
- 5. Renaming wie_process_import_file to acme_demo_setup_wie_process_import_file
7
- 6. Renaming wie_import_data to acme_demo_setup_wie_import_data
8
- 7. Renaming WP_Import to Acme_Demo_Setup_Wp_Import
9
- 8. Renaming WXR_Parser to Acme_Demo_Setup_WXR_Parser
10
- 9. Renaming WXR_Parser_SimpleXML to Acme_Demo_Setup_WXR_Parser_SimpleXML
11
- 10. Renaming WXR_Parser_XML to Acme_Demo_Setup_WXR_Parser_XML
12
- 11. Renaming WXR_Parser_Regex to Acme_Demo_Setup_WXR_Parser_Regex
13
- 11. Remove unnecessary methods and functions
14
- */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
inc/init.php DELETED
@@ -1,21 +0,0 @@
1
- <?php
2
- /**
3
- * Load frameworks.
4
- */
5
- /*customizer export import*/
6
- require_once( ACME_DEMO_SETUP_PATH . 'inc/frameworks/customizer-export-import/class-cei-option.php' );
7
- require_once( ACME_DEMO_SETUP_PATH . 'inc/frameworks/customizer-export-import/class-cei-core.php' );
8
-
9
- /*widget importer exporter*/
10
- require_once( ACME_DEMO_SETUP_PATH . 'inc/frameworks/widget-importer-exporter/widgets.php' );
11
- require_once( ACME_DEMO_SETUP_PATH . 'inc/frameworks/widget-importer-exporter/import.php' );
12
-
13
- /*WordPress Importer*/
14
- require_once( ACME_DEMO_SETUP_PATH . 'inc/frameworks/wordpress-importer/wordpress-importer.php' );
15
-
16
- /*plugin hooks*/
17
- require_once( ACME_DEMO_SETUP_PATH . 'inc/hooks/before-demo-setup.php' );
18
- require_once( ACME_DEMO_SETUP_PATH . 'inc/hooks/after-demo-setup.php' );
19
-
20
- /*upload screen*/
21
- require_once( ACME_DEMO_SETUP_PATH . 'inc/admin/upload.php' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/activator.php ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Fired during plugin activation
5
+ *
6
+ * @link https://www.acmethemes.com/
7
+ * @since 1.0.0
8
+ *
9
+ * @package Acme Themes
10
+ * @subpackage Acme_Demo_Setup
11
+ */
12
+
13
+ /**
14
+ * Fired during plugin activation.
15
+ *
16
+ * This class defines all code necessary to run during the plugin's activation.
17
+ *
18
+ * @since 1.0.0
19
+ * @package Acme Themes
20
+ * @subpackage Acme_Demo_Setup
21
+ * @author Acme Themes <info@acmethemes.com>
22
+ */
23
+ class Acme_Demo_Setup_Activator {
24
+
25
+ /**
26
+ * Short Description. (use period)
27
+ *
28
+ * Long Description.
29
+ *
30
+ * @since 1.0.0
31
+ */
32
+ public static function activate() {
33
+ update_option( '__acme_demo_setup_do_redirect', true );
34
+ }
35
+ }
includes/deactivator.php ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Fired during plugin deactivation
5
+ *
6
+ * @link https://www.acmethemes.com/
7
+ * @since 1.0.0
8
+ *
9
+ * @package Acme Themes
10
+ * @subpackage Acme_Demo_Setup
11
+ */
12
+
13
+ /**
14
+ * Fired during plugin deactivation.
15
+ *
16
+ * This class defines all code necessary to run during the plugin's deactivation.
17
+ *
18
+ * @since 1.0.0
19
+ * @package Acme Themes
20
+ * @subpackage Acme_Demo_Setup
21
+ * @author Acme Themes <info@acmethemes.com>
22
+ */
23
+ class Acme_Demo_Setup_Deactivator {
24
+
25
+ /**
26
+ * Short Description. (use period)
27
+ *
28
+ * Long Description.
29
+ *
30
+ * @since 1.0.0
31
+ */
32
+ public static function deactivate() {
33
+ update_option( '__acme_demo_setup_do_redirect', false );
34
+
35
+
36
+ }
37
+
38
+ }
includes/demo-data/acmeblog/demo-1/content.json ADDED
@@ -0,0 +1 @@
 
1
+ {"attachment":[{"type_title":"Media","post_id":73,"post_title":"mercantile-popup","post_status":"inherit","post_name":"mercantile-popup","post_content":"","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2017-01-11 13:30:27","post_date_gmt":"2017-01-11 13:30:27","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/wp-content\/uploads\/2017\/01\/mercantile-popup.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2017\/01\/mercantile-popup.jpg","_wp_attachment_metadata":{"width":700,"height":350,"file":"2017\/01\/mercantile-popup.jpg","sizes":{"thumbnail":{"file":"mercantile-popup-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"mercantile-popup-690x350.jpg","width":690,"height":350,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"mercantile-popup-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":68,"post_title":"acmeblogproads","post_status":"inherit","post_name":"acmeblogproads","post_content":"","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-04-24 09:40:32","post_date_gmt":"2016-04-24 09:40:32","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/wp-content\/uploads\/2016\/04\/acmeblogproads.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/04\/acmeblogproads.jpg","_wp_attachment_metadata":{"width":280,"height":300,"file":"2016\/04\/acmeblogproads.jpg","sizes":{"thumbnail":{"file":"acmeblogproads-280x280.jpg","width":280,"height":280,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"acmeblogproads-280x195.jpg","width":280,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":67,"post_title":"favicon-512-512","post_status":"inherit","post_name":"favicon-512-512","post_content":"","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-04-24 09:39:24","post_date_gmt":"2016-04-24 09:39:24","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/wp-content\/uploads\/2016\/04\/favicon-512-512.png","post_mime_type":"image\/png","meta":{"_wp_attached_file":"2016\/04\/favicon-512-512.png","_wp_attachment_metadata":{"width":512,"height":512,"file":"2016\/04\/favicon-512-512.png","sizes":{"thumbnail":{"file":"favicon-512-512-500x280.png","width":500,"height":280,"mime-type":"image\/png"},"medium":{"file":"favicon-512-512-512x400.png","width":512,"height":400,"mime-type":"image\/png"},"large":{"file":"favicon-512-512-512x480.png","width":512,"height":480,"mime-type":"image\/png"},"post-thumbnail":{"file":"favicon-512-512-330x195.png","width":330,"height":195,"mime-type":"image\/png"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":45,"post_title":"basketball-652459_1920","post_status":"inherit","post_name":"basketball-652459_1920","post_content":"","post_excerpt":"","post_parent":44,"menu_order":0,"post_date":"2016-01-03 16:22:25","post_date_gmt":"2016-01-03 16:22:25","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/wp-content\/uploads\/2016\/01\/basketball-652459_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/basketball-652459_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1420,"file":"2016\/01\/basketball-652459_1920.jpg","sizes":{"thumbnail":{"file":"basketball-652459_1920-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"basketball-652459_1920-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"basketball-652459_1920-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"basketball-652459_1920-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":0,"credit":"","camera":"","caption":"","created_timestamp":0,"copyright":"","focal_length":0,"iso":0,"shutter_speed":0,"title":"","orientation":0,"keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":42,"post_title":"watches-1062994_1920","post_status":"inherit","post_name":"watches-1062994_1920","post_content":"","post_excerpt":"","post_parent":41,"menu_order":0,"post_date":"2016-01-03 16:17:43","post_date_gmt":"2016-01-03 16:17:43","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/wp-content\/uploads\/2016\/01\/watches-1062994_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/watches-1062994_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1277,"file":"2016\/01\/watches-1062994_1920.jpg","sizes":{"thumbnail":{"file":"watches-1062994_1920-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"watches-1062994_1920-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"watches-1062994_1920-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"watches-1062994_1920-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":0,"credit":"","camera":"","caption":"","created_timestamp":0,"copyright":"","focal_length":0,"iso":0,"shutter_speed":0,"title":"","orientation":0,"keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":39,"post_title":"girls-685778_1280","post_status":"inherit","post_name":"girls-685778_1280","post_content":"","post_excerpt":"","post_parent":38,"menu_order":0,"post_date":"2016-01-03 16:13:48","post_date_gmt":"2016-01-03 16:13:48","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/wp-content\/uploads\/2016\/01\/girls-685778_1280.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/girls-685778_1280.jpg","_wp_attachment_metadata":{"width":1280,"height":853,"file":"2016\/01\/girls-685778_1280.jpg","sizes":{"thumbnail":{"file":"girls-685778_1280-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"girls-685778_1280-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"girls-685778_1280-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"girls-685778_1280-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":0,"credit":"","camera":"","caption":"","created_timestamp":0,"copyright":"","focal_length":0,"iso":0,"shutter_speed":0,"title":"","orientation":0,"keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":36,"post_title":"computer-336628_1280","post_status":"inherit","post_name":"computer-336628_1280","post_content":"","post_excerpt":"","post_parent":35,"menu_order":0,"post_date":"2016-01-03 16:09:32","post_date_gmt":"2016-01-03 16:09:32","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/wp-content\/uploads\/2016\/01\/computer-336628_1280.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/computer-336628_1280.jpg","_wp_attachment_metadata":{"width":1280,"height":800,"file":"2016\/01\/computer-336628_1280.jpg","sizes":{"thumbnail":{"file":"computer-336628_1280-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"computer-336628_1280-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"computer-336628_1280-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"computer-336628_1280-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":0,"credit":"","camera":"","caption":"","created_timestamp":0,"copyright":"","focal_length":0,"iso":0,"shutter_speed":0,"title":"","orientation":0,"keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":32,"post_title":"home-office-381229_1920","post_status":"inherit","post_name":"home-office-381229_1920","post_content":"","post_excerpt":"","post_parent":31,"menu_order":0,"post_date":"2016-01-03 16:06:35","post_date_gmt":"2016-01-03 16:06:35","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/wp-content\/uploads\/2016\/01\/home-office-381229_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/home-office-381229_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1271,"file":"2016\/01\/home-office-381229_1920.jpg","sizes":{"thumbnail":{"file":"home-office-381229_1920-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"home-office-381229_1920-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"home-office-381229_1920-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"home-office-381229_1920-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":0,"credit":"","camera":"","caption":"","created_timestamp":0,"copyright":"","focal_length":0,"iso":0,"shutter_speed":0,"title":"","orientation":0,"keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":29,"post_title":"diary-968592_1920","post_status":"inherit","post_name":"diary-968592_1920","post_content":"","post_excerpt":"","post_parent":28,"menu_order":0,"post_date":"2016-01-03 16:02:23","post_date_gmt":"2016-01-03 16:02:23","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/wp-content\/uploads\/2016\/01\/diary-968592_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/diary-968592_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1440,"file":"2016\/01\/diary-968592_1920.jpg","sizes":{"thumbnail":{"file":"diary-968592_1920-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"diary-968592_1920-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"diary-968592_1920-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"diary-968592_1920-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":0,"credit":"","camera":"","caption":"","created_timestamp":0,"copyright":"","focal_length":0,"iso":0,"shutter_speed":0,"title":"","orientation":0,"keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":26,"post_title":"portrait-1072696_1920","post_status":"inherit","post_name":"portrait-1072696_1920","post_content":"","post_excerpt":"","post_parent":25,"menu_order":0,"post_date":"2016-01-03 15:55:26","post_date_gmt":"2016-01-03 15:55:26","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/wp-content\/uploads\/2016\/01\/portrait-1072696_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/portrait-1072696_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1324,"file":"2016\/01\/portrait-1072696_1920.jpg","sizes":{"thumbnail":{"file":"portrait-1072696_1920-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"portrait-1072696_1920-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"portrait-1072696_1920-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"portrait-1072696_1920-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":0,"credit":"","camera":"","caption":"","created_timestamp":0,"copyright":"","focal_length":0,"iso":0,"shutter_speed":0,"title":"","orientation":0,"keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":17,"post_title":"author","post_status":"inherit","post_name":"author","post_content":"","post_excerpt":"","post_parent":9,"menu_order":0,"post_date":"2016-01-03 14:15:14","post_date_gmt":"2016-01-03 14:15:14","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/wp-content\/uploads\/2016\/01\/author.png","post_mime_type":"image\/png","meta":{"_wp_attached_file":"2016\/01\/author.png","_wp_attachment_metadata":{"width":250,"height":250,"file":"2016\/01\/author.png","sizes":{"post-thumbnail":{"file":"author-250x195.png","width":250,"height":195,"mime-type":"image\/png"}},"image_meta":{"aperture":0,"credit":"","camera":"","caption":"","created_timestamp":0,"copyright":"","focal_length":0,"iso":0,"shutter_speed":0,"title":"","orientation":0,"keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":16,"post_title":"coffee-569178_1920","post_status":"inherit","post_name":"coffee-569178_1920","post_content":"","post_excerpt":"","post_parent":15,"menu_order":0,"post_date":"2016-01-03 14:14:00","post_date_gmt":"2016-01-03 14:14:00","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/wp-content\/uploads\/2016\/01\/coffee-569178_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/coffee-569178_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1267,"file":"2016\/01\/coffee-569178_1920.jpg","sizes":{"thumbnail":{"file":"coffee-569178_1920-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"coffee-569178_1920-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"coffee-569178_1920-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"coffee-569178_1920-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":0,"credit":"","camera":"","caption":"","created_timestamp":0,"copyright":"","focal_length":0,"iso":0,"shutter_speed":0,"title":"","orientation":0,"keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":13,"post_title":"navigation-1048294_1920","post_status":"inherit","post_name":"navigation-1048294_1920","post_content":"","post_excerpt":"","post_parent":12,"menu_order":0,"post_date":"2016-01-03 14:11:20","post_date_gmt":"2016-01-03 14:11:20","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/wp-content\/uploads\/2016\/01\/navigation-1048294_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/navigation-1048294_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1440,"file":"2016\/01\/navigation-1048294_1920.jpg","sizes":{"thumbnail":{"file":"navigation-1048294_1920-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"navigation-1048294_1920-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"navigation-1048294_1920-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"navigation-1048294_1920-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":0,"credit":"","camera":"","caption":"","created_timestamp":0,"copyright":"","focal_length":0,"iso":0,"shutter_speed":0,"title":"","orientation":0,"keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":10,"post_title":"pen-926313_1920","post_status":"inherit","post_name":"pen-926313_1920","post_content":"","post_excerpt":"","post_parent":9,"menu_order":0,"post_date":"2016-01-03 14:09:28","post_date_gmt":"2016-01-03 14:09:28","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/wp-content\/uploads\/2016\/01\/pen-926313_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/pen-926313_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1285,"file":"2016\/01\/pen-926313_1920.jpg","sizes":{"thumbnail":{"file":"pen-926313_1920-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"pen-926313_1920-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"pen-926313_1920-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"pen-926313_1920-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":0,"credit":"","camera":"","caption":"","created_timestamp":0,"copyright":"","focal_length":0,"iso":0,"shutter_speed":0,"title":"","orientation":0,"keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":7,"post_title":"man-791049_1920","post_status":"inherit","post_name":"man-791049_1920","post_content":"","post_excerpt":"","post_parent":6,"menu_order":0,"post_date":"2016-01-03 14:05:27","post_date_gmt":"2016-01-03 14:05:27","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/wp-content\/uploads\/2016\/01\/man-791049_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/man-791049_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1280,"file":"2016\/01\/man-791049_1920.jpg","sizes":{"thumbnail":{"file":"man-791049_1920-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"man-791049_1920-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"man-791049_1920-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"man-791049_1920-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":0,"credit":"","camera":"","caption":"","created_timestamp":0,"copyright":"","focal_length":0,"iso":0,"shutter_speed":0,"title":"","orientation":0,"keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}}],"post":[{"type_title":"Posts","post_id":38,"post_title":"Love your best friends","post_status":"publish","post_name":"love-your-best-friends","post_content":"<strong>Lorem Ipsum<\/strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\n<strong>Lorem Ipsum<\/strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\n<strong>Lorem Ipsum<\/strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 16:25:40","post_date_gmt":"2016-01-03 16:25:40","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=38","post_mime_type":"","meta":{"_edit_last":"1","_edit_lock":"1451838268:1","_thumbnail_id":"39"},"terms":{"category":[{"term_id":7,"name":"Entertainment","slug":"entertainment","term_group":0,"term_taxonomy_id":7,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]},{"term_id":6,"name":"Sports","slug":"sports","term_group":0,"term_taxonomy_id":6,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Posts","post_id":41,"post_title":"Watches, Fashion Trends","post_status":"publish","post_name":"watches-fashion-trends","post_content":"\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 16:23:53","post_date_gmt":"2016-01-03 16:23:53","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=41","post_mime_type":"","meta":{"_edit_last":"1","_edit_lock":"1451838318:1","_thumbnail_id":"42"},"terms":{"category":[{"term_id":7,"name":"Entertainment","slug":"entertainment","term_group":0,"term_taxonomy_id":7,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]},{"term_id":6,"name":"Sports","slug":"sports","term_group":0,"term_taxonomy_id":6,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Posts","post_id":44,"post_title":"Winner Reaction","post_status":"publish","post_name":"winner-reaction","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 16:22:47","post_date_gmt":"2016-01-03 16:22:47","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=44","post_mime_type":"","meta":{"_edit_last":"1","_edit_lock":"1451841603:1","_thumbnail_id":"45"},"terms":{"category":[{"term_id":7,"name":"Entertainment","slug":"entertainment","term_group":0,"term_taxonomy_id":7,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]},{"term_id":6,"name":"Sports","slug":"sports","term_group":0,"term_taxonomy_id":6,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Posts","post_id":35,"post_title":"Working is fun","post_status":"publish","post_name":"working-is-fun","post_content":"<strong>Lorem Ipsum<\/strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\n<strong>Lorem Ipsum<\/strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\n<strong>Lorem Ipsum<\/strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 16:09:39","post_date_gmt":"2016-01-03 16:09:39","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=35","post_mime_type":"","meta":{"_edit_last":"1","_edit_lock":"1451837381:1","_thumbnail_id":"36"},"terms":{"category":[{"term_id":5,"name":"Technology","slug":"technology","term_group":0,"term_taxonomy_id":5,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]},{"term_id":4,"name":"Travel","slug":"travel","term_group":0,"term_taxonomy_id":4,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Posts","post_id":31,"post_title":"Office Work","post_status":"publish","post_name":"office-work","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 16:07:19","post_date_gmt":"2016-01-03 16:07:19","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=31","post_mime_type":"","meta":{"_edit_last":"1","_edit_lock":"1451837105:1","_thumbnail_id":"32"},"terms":{"category":[{"term_id":5,"name":"Technology","slug":"technology","term_group":0,"term_taxonomy_id":5,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]},{"term_id":4,"name":"Travel","slug":"travel","term_group":0,"term_taxonomy_id":4,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Posts","post_id":6,"post_title":"Reading touchscreen blog","post_status":"publish","post_name":"reading-touchscreen-blog","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2015-12-19 14:12:42","post_date_gmt":"2015-12-19 14:12:42","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=6","post_mime_type":"","meta":{"_edit_last":"1","_edit_lock":"1451839589:1","_thumbnail_id":"7"},"terms":{"category":[{"term_id":2,"name":"Featured","slug":"featured","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Posts","post_id":12,"post_title":"GPS Car","post_status":"publish","post_name":"gps-car","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2015-12-18 14:11:33","post_date_gmt":"2015-12-18 14:11:33","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=12","post_mime_type":"","meta":{"_edit_last":"1","_edit_lock":"1451841532:1","_thumbnail_id":"13"},"terms":{"category":[{"term_id":2,"name":"Featured","slug":"featured","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]},{"term_id":6,"name":"Sports","slug":"sports","term_group":0,"term_taxonomy_id":6,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Posts","post_id":9,"post_title":"Pen Tablet","post_status":"publish","post_name":"pen-tablet","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2015-12-17 14:09:40","post_date_gmt":"2015-12-17 14:09:40","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=9","post_mime_type":"","meta":{"_edit_last":"1","_edit_lock":"1451841503:1","_thumbnail_id":"10"},"terms":{"category":[{"term_id":2,"name":"Featured","slug":"featured","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]},{"term_id":5,"name":"Technology","slug":"technology","term_group":0,"term_taxonomy_id":5,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Posts","post_id":15,"post_title":"Coffee Time","post_status":"publish","post_name":"coffee-time","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2015-11-03 14:15:32","post_date_gmt":"2015-11-03 14:15:32","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=15","post_mime_type":"","meta":{"_edit_last":"1","_edit_lock":"1451839721:1","_thumbnail_id":"16"},"terms":{"category":[{"term_id":7,"name":"Entertainment","slug":"entertainment","term_group":0,"term_taxonomy_id":7,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Posts","post_id":25,"post_title":"Bird wild predator","post_status":"publish","post_name":"bird-wild-predator","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2015-10-03 15:56:02","post_date_gmt":"2015-10-03 15:56:02","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=25","post_mime_type":"","meta":{"_edit_last":"1","_edit_lock":"1451841567:1","_thumbnail_id":"26"},"terms":{"category":[{"term_id":2,"name":"Featured","slug":"featured","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]},{"term_id":4,"name":"Travel","slug":"travel","term_group":0,"term_taxonomy_id":4,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Posts","post_id":28,"post_title":"Diary writing","post_status":"publish","post_name":"diary-writing","post_content":"Mauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper. Suspendisse tempus nisi utMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper. Suspendisse tempus nisi utMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper. Suspendisse tempus nisi utMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper.\r\n\r\nMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper. Suspendisse tempus nisi utMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper. Suspendisse tempus nisi utMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper. Suspendisse tempus nisi utMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper.\r\n\r\nMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper. Suspendisse tempus nisi utMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper. Suspendisse tempus nisi utMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper. Suspendisse tempus nisi utMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper.\r\n","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2015-09-03 16:02:41","post_date_gmt":"2015-09-03 16:02:41","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=28","post_mime_type":"","meta":{"_edit_last":"1","_edit_lock":"1451839809:1","_thumbnail_id":"29"},"terms":{"category":[{"term_id":5,"name":"Technology","slug":"technology","term_group":0,"term_taxonomy_id":5,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]},{"term_id":4,"name":"Travel","slug":"travel","term_group":0,"term_taxonomy_id":4,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}}],"page":[{"type_title":"Pages","post_id":61,"post_title":"About","post_status":"publish","post_name":"about","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\n","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 16:40:16","post_date_gmt":"2016-01-03 16:40:16","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?page_id=61","post_mime_type":"","meta":{"_edit_last":"1","_edit_lock":"1451839370:1"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Pages","post_id":56,"post_title":"Contact","post_status":"publish","post_name":"contact","post_content":"<strong>Use contact form 7 plugin<\/strong>\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n[contact-form-7 id=\"55\" title=\"Contact form 1\"]","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 16:32:08","post_date_gmt":"2016-01-03 16:32:08","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?page_id=56","post_mime_type":"","meta":{"_edit_last":"1","_edit_lock":"1451839051:1"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Pages","post_id":21,"post_title":"Blog","post_status":"publish","post_name":"blog","post_content":"","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 15:16:47","post_date_gmt":"2016-01-03 15:16:47","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?page_id=21","post_mime_type":"","meta":{"_edit_last":"1","_edit_lock":"1451834568:1"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Pages","post_id":19,"post_title":"Home","post_status":"publish","post_name":"home","post_content":"","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 14:41:20","post_date_gmt":"2016-01-03 14:41:20","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?page_id=19","post_mime_type":"","meta":{"_edit_last":"1","_edit_lock":"1451834050:1"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Pages","post_id":2,"post_title":"Sample Page","post_status":"publish","post_name":"sample-page","post_content":"This is an example page. It's different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n<blockquote>Hi there! I'm a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin' caught in the rain.)<\/blockquote>\n\n...or something like this:\n\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.<\/blockquote>\n\nAs a new WordPress user, you should go to <a href=\"http:\/\/www.demo.acmethemes.com\/acmeblog\/wp-admin\/\">your dashboard<\/a> to delete this page and create new pages for your content. Have fun!","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 13:21:12","post_date_gmt":"2016-01-03 13:21:12","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?page_id=2","post_mime_type":"","meta":{"_wp_page_template":"default"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}}],"custom_css":[],"wp_block":[],"wpcf7_contact_form":[{"type_title":"Contact Forms","post_id":55,"post_title":"Contact form 1","post_status":"publish","post_name":"contact-form-1","post_content":"<p>Your Name (required)<br \/>\r\n [text* your-name] <\/p>\r\n\r\n<p>Your Email (required)<br \/>\r\n [email* your-email] <\/p>\r\n\r\n<p>Subject<br \/>\r\n [text your-subject] <\/p>\r\n\r\n<p>Your Message<br \/>\r\n [textarea your-message] <\/p>\r\n\r\n<p>[submit \"Send\"]<\/p>\n1\nSubject\n[your-name] <wordpress@demo.acmethemes.com>\nacmethemes@gmail.com\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on AcmeBlog (http:\/\/www.demo.acmethemes.com\/acmeblog)\nReply-To: [your-email]\n\n\n\n\n[your-subject]\nAcmeBlog <wordpress@demo.acmethemes.com>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on AcmeBlog (http:\/\/www.demo.acmethemes.com\/acmeblog)\nReply-To: acmethemes@gmail.com\n\n\n\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill in the required field.\nThis input is too long.\nThis input is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 16:31:24","post_date_gmt":"2016-01-03 16:31:24","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?post_type=wpcf7_contact_form&#038;p=55","post_mime_type":"","meta":{"_form":"<p>Your Name (required)<br \/>\n [text* your-name] <\/p>\n\n<p>Your Email (required)<br \/>\n [email* your-email] <\/p>\n\n<p>Subject<br \/>\n [text your-subject] <\/p>\n\n<p>Your Message<br \/>\n [textarea your-message] <\/p>\n\n<p>[submit \"Send\"]<\/p>","_mail":{"active":true,"subject":"Subject","sender":"[your-name] <wordpress@demo.acmethemes.com>","recipient":"acmethemes@gmail.com","body":"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on AcmeBlog (http:\/\/www.demo.acmethemes.com\/acmeblog)","additional_headers":"Reply-To: [your-email]","attachments":"","use_html":false,"exclude_blank":false},"_mail_2":{"active":false,"subject":"[your-subject]","sender":"AcmeBlog <wordpress@demo.acmethemes.com>","recipient":"[your-email]","body":"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on AcmeBlog (http:\/\/www.demo.acmethemes.com\/acmeblog)","additional_headers":"Reply-To: acmethemes@gmail.com","attachments":"","use_html":false,"exclude_blank":false},"_messages":{"mail_sent_ok":"Your message was sent successfully. Thanks.","mail_sent_ng":"Failed to send your message. Please try later or contact the administrator by another method.","validation_error":"Validation errors occurred. Please confirm the fields and submit it again.","spam":"Failed to send your message. Please try later or contact the administrator by another method.","accept_terms":"Please accept the terms to proceed.","invalid_required":"Please fill in the required field.","invalid_too_long":"This input is too long.","invalid_too_short":"This input is too short.","invalid_date":"The date format is incorrect.","date_too_early":"The date is before the earliest one allowed.","date_too_late":"The date is after the latest one allowed.","upload_failed":"There was an unknown error uploading the file.","upload_file_type_invalid":"You are not allowed to upload files of this type.","upload_file_too_large":"The file is too big.","upload_failed_php_error":"There was an error uploading the file.","invalid_number":"The number format is invalid.","number_too_small":"The number is smaller than the minimum allowed.","number_too_large":"The number is larger than the maximum allowed.","quiz_answer_not_correct":"The answer to the quiz is incorrect.","captcha_not_match":"Your entered code is incorrect.","invalid_email":"The e-mail address entered is invalid.","invalid_url":"The URL is invalid.","invalid_tel":"The telephone number is invalid."},"_additional_settings":"","_locale":"en_US"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}}],"nav_menu_item":[{"type_title":"Navigation Menu Items","post_id":64,"post_title":"","post_status":"publish","post_name":"64","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":9,"post_date":"2016-01-03 16:54:45","post_date_gmt":"2016-01-03 16:54:45","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=64","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"0","_menu_item_object_id":"61","_menu_item_object":"page","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":3,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":3,"taxonomy":"nav_menu","description":"","parent":0,"count":10,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":65,"post_title":"","post_status":"publish","post_name":"65","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":10,"post_date":"2016-01-03 16:54:45","post_date_gmt":"2016-01-03 16:54:45","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=65","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"0","_menu_item_object_id":"56","_menu_item_object":"page","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":3,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":3,"taxonomy":"nav_menu","description":"","parent":0,"count":10,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":51,"post_title":"","post_status":"publish","post_name":"51","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":3,"post_date":"2016-01-03 16:28:38","post_date_gmt":"2016-01-03 16:28:38","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/2016\/01\/03\/51\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"47","_menu_item_object_id":"44","_menu_item_object":"post","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":3,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":3,"taxonomy":"nav_menu","description":"","parent":0,"count":10,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":53,"post_title":"","post_status":"publish","post_name":"53","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":7,"post_date":"2016-01-03 16:28:38","post_date_gmt":"2016-01-03 16:28:38","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/2016\/01\/03\/53\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"50","_menu_item_object_id":"25","_menu_item_object":"post","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":3,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":3,"taxonomy":"nav_menu","description":"","parent":0,"count":10,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":54,"post_title":"","post_status":"publish","post_name":"54","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":8,"post_date":"2016-01-03 16:28:38","post_date_gmt":"2016-01-03 16:28:38","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/2016\/01\/03\/54\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"50","_menu_item_object_id":"12","_menu_item_object":"post","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":3,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":3,"taxonomy":"nav_menu","description":"","parent":0,"count":10,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":47,"post_title":"","post_status":"publish","post_name":"47","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":2,"post_date":"2016-01-03 16:27:21","post_date_gmt":"2016-01-03 16:27:21","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/2016\/01\/03\/47\/","post_mime_type":"","meta":{"_menu_item_type":"taxonomy","_menu_item_menu_item_parent":"0","_menu_item_object_id":"6","_menu_item_object":"category","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":3,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":3,"taxonomy":"nav_menu","description":"","parent":0,"count":10,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":48,"post_title":"","post_status":"publish","post_name":"48","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":4,"post_date":"2016-01-03 16:27:21","post_date_gmt":"2016-01-03 16:27:21","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/2016\/01\/03\/48\/","post_mime_type":"","meta":{"_menu_item_type":"taxonomy","_menu_item_menu_item_parent":"0","_menu_item_object_id":"7","_menu_item_object":"category","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":3,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":3,"taxonomy":"nav_menu","description":"","parent":0,"count":10,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":49,"post_title":"","post_status":"publish","post_name":"49","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":5,"post_date":"2016-01-03 16:27:21","post_date_gmt":"2016-01-03 16:27:21","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/2016\/01\/03\/49\/","post_mime_type":"","meta":{"_menu_item_type":"taxonomy","_menu_item_menu_item_parent":"0","_menu_item_object_id":"5","_menu_item_object":"category","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":3,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":3,"taxonomy":"nav_menu","description":"","parent":0,"count":10,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":50,"post_title":"","post_status":"publish","post_name":"50","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":6,"post_date":"2016-01-03 16:27:21","post_date_gmt":"2016-01-03 16:27:21","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/2016\/01\/03\/50\/","post_mime_type":"","meta":{"_menu_item_type":"taxonomy","_menu_item_menu_item_parent":"0","_menu_item_object_id":"4","_menu_item_object":"category","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":3,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":3,"taxonomy":"nav_menu","description":"","parent":0,"count":10,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":23,"post_title":"Home","post_status":"publish","post_name":"home","post_content":"","post_excerpt":"","post_parent":0,"menu_order":1,"post_date":"2016-01-03 15:18:57","post_date_gmt":"2016-01-03 15:18:57","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/2016\/01\/03\/home\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"23","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.demo.acmethemes.com\/acmeblog"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":3,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":3,"taxonomy":"nav_menu","description":"","parent":0,"count":10,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}}]}
includes/demo-data/acmeblog/demo-1/options.json ADDED
@@ -0,0 +1 @@
 
1
+ {"menu":{"primary":3},"options":{"blogname":"AcmeBlog","blogname-child":"AcmeBlog","blogdescription":"A Professional Blog Theme","blogdescription-child":"A Professional Blog Theme","posts_per_page":"10","posts_per_page-child":"10","date_format":"F j, Y","date_format-child":"F j, Y","time_format":"g:i a","time_format-child":"g:i a","show_on_front":"posts","show_on_front-child":"posts","thumbnail_size_w":"500","thumbnail_size_w-child":"500","thumbnail_size_h":"280","thumbnail_size_h-child":"280","thumbnail_crop":"1","thumbnail_crop-child":"1","medium_size_w":"690","medium_size_w-child":"690","medium_size_h":"400","medium_size_h-child":"400","avatar_default":"mystery","avatar_default-child":"mystery","large_size_w":"840","large_size_w-child":"840","large_size_h":"480","large_size_h-child":"480","page_for_posts":"21","page_for_posts-child":"21","page_on_front":"19","page_on_front-child":"19","medium_large_size_w":"0","medium_large_size_w-child":"0","medium_large_size_h":"0","medium_large_size_h-child":"0","theme_mods_acmeblog":{"0":false,"acmeblog_theme_options":{"acmeblog-feature-cat":"2","acmeblog-feature-post-one":9,"acmeblog-feature-post-two":12,"acmeblog-enable-feature":true,"acmeblog-facebook-url":"https:\/\/www.facebook.com\/acmethemes\/","acmeblog-twitter-url":"https:\/\/twitter.com\/acme_themes","acmeblog-youtube-url":"https:\/\/www.youtube.com\/","acmeblog-enable-social":true,"acmeblog-show-breadcrumb":true,"acmeblog-default-layout":"boxed","acmeblog-custom-css":".popup-wrap .popup-content { height: 300px; } .sticky-popup{ width:265px!important }"},"acme_popup_options":{"popup-display-options":"image","popup-image":"http:\/\/www.demo.acmethemes.com\/acmeblog\/wp-content\/uploads\/2017\/01\/mercantile-popup.jpg","popup-image-link":"https:\/\/www.acmethemes.com\/themes\/mercantile\/","popup-new-tab":1},"custom_css_post_id":-1},"theme_mods_acmeblog-child":{"0":false,"acmeblog_theme_options":{"acmeblog-feature-cat":"2","acmeblog-feature-post-one":9,"acmeblog-feature-post-two":12,"acmeblog-enable-feature":true,"acmeblog-facebook-url":"https:\/\/www.facebook.com\/acmethemes\/","acmeblog-twitter-url":"https:\/\/twitter.com\/acme_themes","acmeblog-youtube-url":"https:\/\/www.youtube.com\/","acmeblog-enable-social":true,"acmeblog-show-breadcrumb":true,"acmeblog-default-layout":"boxed","acmeblog-custom-css":".popup-wrap .popup-content { height: 300px; } .sticky-popup{ width:265px!important }"},"nav_menu_locations":{"primary":3},"acme_popup_options":{"popup-display-options":"image","popup-image":"http:\/\/www.demo.acmethemes.com\/acmeblog\/wp-content\/uploads\/2017\/01\/mercantile-popup.jpg","popup-image-link":"https:\/\/www.acmethemes.com\/themes\/mercantile\/","popup-new-tab":1},"custom_css_post_id":-1}}}
includes/demo-data/acmeblog/demo-1/screenshot.jpg ADDED
Binary file
includes/demo-data/acmeblog/demo-1/widgets.json ADDED
@@ -0,0 +1 @@
 
1
+ {"widget_positions":{"wp_inactive_widgets":[],"acmeblog-sidebar":["acmeblog_author-2","recent-posts-2","recent-comments-2","archives-2","categories-2"],"array_version":3},"widget_options":{"acmeblog_author":{"2":{"acmeblog_author_title":"Author","acmeblog_author_image":"http:\/\/www.demo.acmethemes.com\/acmeblog\/wp-content\/uploads\/2016\/01\/author.png","acmeblog_author_link":"http:\/\/www.acmethemes.com\/","acmeblog_author_short_disc":"<h3>AcmeThemes<\/h3>\r\nDetails About Awesome Writer Lorem Ipsum is simply dummy text of the printing and typesetting industry.","acmeblog_author_new_window":1},"_multiwidget":1},"recent-posts":{"2":{"title":"","number":5},"_multiwidget":1},"recent-comments":{"2":{"title":"","number":5},"_multiwidget":1},"archives":{"2":{"title":"","count":0,"dropdown":0},"_multiwidget":1},"categories":{"2":{"title":"","count":0,"hierarchical":0,"dropdown":0},"_multiwidget":1}}}
includes/demo-data/acmeblogpro/demo-1/content.json ADDED
@@ -0,0 +1 @@
 
1
+ {"attachment":[{"type_title":"Media","post_id":93,"post_title":"Everest","post_status":"inherit","post_name":"everest","post_content":"","post_excerpt":"","post_parent":91,"menu_order":0,"post_date":"2016-02-13 10:47:38","post_date_gmt":"2016-02-13 10:47:38","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/wp-content\/uploads\/2016\/02\/Everest.png","post_mime_type":"image\/png","meta":{"_wp_attached_file":"2016\/02\/Everest.png","_wp_attachment_metadata":{"width":840,"height":480,"file":"2016\/02\/Everest.png","sizes":{"thumbnail":{"file":"Everest-500x280.png","width":500,"height":280,"mime-type":"image\/png"},"medium":{"file":"Everest-690x400.png","width":690,"height":400,"mime-type":"image\/png"},"post-thumbnail":{"file":"Everest-330x195.png","width":330,"height":195,"mime-type":"image\/png"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":45,"post_title":"basketball-652459_1920","post_status":"inherit","post_name":"basketball-652459_1920","post_content":"","post_excerpt":"","post_parent":44,"menu_order":0,"post_date":"2016-01-03 16:22:25","post_date_gmt":"2016-01-03 16:22:25","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/wp-content\/uploads\/2016\/01\/basketball-652459_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/basketball-652459_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1420,"hwstring_small":"height='96' width='128'","file":"2016\/01\/basketball-652459_1920.jpg","sizes":{"thumbnail":{"file":"basketball-652459_1920-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"basketball-652459_1920-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"basketball-652459_1920-1080x530.jpg","width":1080,"height":530,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"basketball-652459_1920-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":42,"post_title":"watches-1062994_1920","post_status":"inherit","post_name":"watches-1062994_1920","post_content":"","post_excerpt":"","post_parent":41,"menu_order":0,"post_date":"2016-01-03 16:17:43","post_date_gmt":"2016-01-03 16:17:43","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/wp-content\/uploads\/2016\/01\/watches-1062994_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/watches-1062994_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1277,"hwstring_small":"height='85' width='128'","file":"2016\/01\/watches-1062994_1920.jpg","sizes":{"thumbnail":{"file":"watches-1062994_1920-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"watches-1062994_1920-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"watches-1062994_1920-1080x530.jpg","width":1080,"height":530,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"watches-1062994_1920-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":39,"post_title":"girls-685778_1280","post_status":"inherit","post_name":"girls-685778_1280","post_content":"","post_excerpt":"","post_parent":38,"menu_order":0,"post_date":"2016-01-03 16:13:48","post_date_gmt":"2016-01-03 16:13:48","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/wp-content\/uploads\/2016\/01\/girls-685778_1280.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/girls-685778_1280.jpg","_wp_attachment_metadata":{"width":1280,"height":853,"hwstring_small":"height='85' width='128'","file":"2016\/01\/girls-685778_1280.jpg","sizes":{"thumbnail":{"file":"girls-685778_1280-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"girls-685778_1280-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"girls-685778_1280-1080x530.jpg","width":1080,"height":530,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"girls-685778_1280-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":36,"post_title":"computer-336628_1280","post_status":"inherit","post_name":"computer-336628_1280","post_content":"","post_excerpt":"","post_parent":35,"menu_order":0,"post_date":"2016-01-03 16:09:32","post_date_gmt":"2016-01-03 16:09:32","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/wp-content\/uploads\/2016\/01\/computer-336628_1280.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/computer-336628_1280.jpg","_wp_attachment_metadata":{"width":1280,"height":800,"hwstring_small":"height='80' width='128'","file":"2016\/01\/computer-336628_1280.jpg","sizes":{"thumbnail":{"file":"computer-336628_1280-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"computer-336628_1280-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"computer-336628_1280-1080x530.jpg","width":1080,"height":530,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"computer-336628_1280-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":32,"post_title":"home-office-381229_1920","post_status":"inherit","post_name":"home-office-381229_1920","post_content":"","post_excerpt":"","post_parent":31,"menu_order":0,"post_date":"2016-01-03 16:06:35","post_date_gmt":"2016-01-03 16:06:35","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/wp-content\/uploads\/2016\/01\/home-office-381229_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/home-office-381229_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1271,"hwstring_small":"height='85' width='128'","file":"2016\/01\/home-office-381229_1920.jpg","sizes":{"thumbnail":{"file":"home-office-381229_1920-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"home-office-381229_1920-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"home-office-381229_1920-1080x530.jpg","width":1080,"height":530,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"home-office-381229_1920-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":29,"post_title":"diary-968592_1920","post_status":"inherit","post_name":"diary-968592_1920","post_content":"","post_excerpt":"","post_parent":28,"menu_order":0,"post_date":"2016-01-03 16:02:23","post_date_gmt":"2016-01-03 16:02:23","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/wp-content\/uploads\/2016\/01\/diary-968592_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/diary-968592_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1440,"hwstring_small":"height='96' width='128'","file":"2016\/01\/diary-968592_1920.jpg","sizes":{"thumbnail":{"file":"diary-968592_1920-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"diary-968592_1920-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"diary-968592_1920-1080x530.jpg","width":1080,"height":530,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"diary-968592_1920-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":26,"post_title":"portrait-1072696_1920","post_status":"inherit","post_name":"portrait-1072696_1920","post_content":"","post_excerpt":"","post_parent":25,"menu_order":0,"post_date":"2016-01-03 15:55:26","post_date_gmt":"2016-01-03 15:55:26","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/wp-content\/uploads\/2016\/01\/portrait-1072696_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/portrait-1072696_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1324,"hwstring_small":"height='88' width='128'","file":"2016\/01\/portrait-1072696_1920.jpg","sizes":{"thumbnail":{"file":"portrait-1072696_1920-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"portrait-1072696_1920-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"portrait-1072696_1920-1080x530.jpg","width":1080,"height":530,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"portrait-1072696_1920-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":17,"post_title":"author","post_status":"inherit","post_name":"author","post_content":"","post_excerpt":"","post_parent":9,"menu_order":0,"post_date":"2016-01-03 14:15:14","post_date_gmt":"2016-01-03 14:15:14","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/wp-content\/uploads\/2016\/01\/author.png","post_mime_type":"image\/png","meta":{"_wp_attached_file":"2016\/01\/author.png","_wp_attachment_metadata":{"width":250,"height":250,"hwstring_small":"height='96' width='96'","file":"2016\/01\/author.png","sizes":{"post-thumbnail":{"file":"author-250x195.png","width":250,"height":195,"mime-type":"image\/png"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":16,"post_title":"coffee-569178_1920","post_status":"inherit","post_name":"coffee-569178_1920","post_content":"","post_excerpt":"","post_parent":15,"menu_order":0,"post_date":"2016-01-03 14:14:00","post_date_gmt":"2016-01-03 14:14:00","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/wp-content\/uploads\/2016\/01\/coffee-569178_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/coffee-569178_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1267,"hwstring_small":"height='84' width='128'","file":"2016\/01\/coffee-569178_1920.jpg","sizes":{"thumbnail":{"file":"coffee-569178_1920-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"coffee-569178_1920-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"coffee-569178_1920-1080x530.jpg","width":1080,"height":530,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"coffee-569178_1920-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":13,"post_title":"navigation-1048294_1920","post_status":"inherit","post_name":"navigation-1048294_1920","post_content":"","post_excerpt":"","post_parent":12,"menu_order":0,"post_date":"2016-01-03 14:11:20","post_date_gmt":"2016-01-03 14:11:20","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/wp-content\/uploads\/2016\/01\/navigation-1048294_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/navigation-1048294_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1440,"hwstring_small":"height='96' width='128'","file":"2016\/01\/navigation-1048294_1920.jpg","sizes":{"thumbnail":{"file":"navigation-1048294_1920-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"navigation-1048294_1920-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"navigation-1048294_1920-1080x530.jpg","width":1080,"height":530,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"navigation-1048294_1920-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":10,"post_title":"pen-926313_1920","post_status":"inherit","post_name":"pen-926313_1920","post_content":"","post_excerpt":"","post_parent":9,"menu_order":0,"post_date":"2016-01-03 14:09:28","post_date_gmt":"2016-01-03 14:09:28","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/wp-content\/uploads\/2016\/01\/pen-926313_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/pen-926313_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1285,"hwstring_small":"height='86' width='128'","file":"2016\/01\/pen-926313_1920.jpg","sizes":{"thumbnail":{"file":"pen-926313_1920-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"pen-926313_1920-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"pen-926313_1920-1080x530.jpg","width":1080,"height":530,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"pen-926313_1920-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":7,"post_title":"man-791049_1920","post_status":"inherit","post_name":"man-791049_1920","post_content":"","post_excerpt":"","post_parent":51,"menu_order":0,"post_date":"2016-01-03 14:05:27","post_date_gmt":"2016-01-03 14:05:27","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/wp-content\/uploads\/2016\/01\/man-791049_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/man-791049_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1280,"hwstring_small":"height='85' width='128'","file":"2016\/01\/man-791049_1920.jpg","sizes":{"thumbnail":{"file":"man-791049_1920-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"man-791049_1920-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"man-791049_1920-1080x530.jpg","width":1080,"height":530,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"man-791049_1920-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}}],"post":[{"type_title":"Posts","post_id":38,"post_title":"Love your best friends","post_status":"publish","post_name":"love-your-best-friends","post_content":"<strong>Lorem Ipsum<\/strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\n<strong>Lorem Ipsum<\/strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\n<strong>Lorem Ipsum<\/strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 16:25:40","post_date_gmt":"2016-01-03 16:25:40","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=38","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"39","acmeblog_post_views_count":"895","_edit_lock":"1455359274:1","acmeblog_sidebar_layout":"default-sidebar","acmeblog-related-posts-display":"left-related-posts","acmeblog-related-posts-show-image":"1","acmeblog-related-posts-first-featured":"0","acmeblog-related-posts-show-categories":"1","acmeblog-related-posts-show-date":"1","acmeblog-related-posts-show-author":"1","acmeblog-related-posts-show-comments":"1","acmeblog-related-posts-number":"3","acmeblog-related-posts-content-words":"9","acmeblog-related-title":"Related posts","acmeblog-related-posts-column-number":"3","acmeblog_replace_featured_image":"","acmeblog_video_autoplay":""},"terms":{"category":[{"term_id":2,"name":"Entertainment","slug":"entertainment","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]},{"term_id":4,"name":"Sports","slug":"sports","term_group":0,"term_taxonomy_id":4,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Posts","post_id":41,"post_title":"Watches, Fashion Trends","post_status":"publish","post_name":"watches-fashion-trends","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 16:23:53","post_date_gmt":"2016-01-03 16:23:53","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=41","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"42","acmeblog_post_views_count":"967","_edit_lock":"1455359420:1","acmeblog_sidebar_layout":"default-sidebar","acmeblog-related-posts-display":"right-related-posts","acmeblog-related-posts-show-image":"1","acmeblog-related-posts-first-featured":"0","acmeblog-related-posts-show-categories":"1","acmeblog-related-posts-show-date":"1","acmeblog-related-posts-show-author":"1","acmeblog-related-posts-show-comments":"1","acmeblog-related-posts-number":"3","acmeblog-related-posts-content-words":"9","acmeblog-related-title":"Related posts","acmeblog-related-posts-column-number":"3","acmeblog_replace_featured_image":"","acmeblog_video_autoplay":""},"terms":{"category":[{"term_id":2,"name":"Entertainment","slug":"entertainment","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]},{"term_id":4,"name":"Sports","slug":"sports","term_group":0,"term_taxonomy_id":4,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Posts","post_id":44,"post_title":"Winner Reaction","post_status":"publish","post_name":"winner-reaction","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 16:22:47","post_date_gmt":"2016-01-03 16:22:47","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=44","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"45","acmeblog_post_views_count":"934","_edit_lock":"1455360600:1","acmeblog_sidebar_layout":"default-sidebar","acmeblog-related-posts-display":"below-related-posts","acmeblog-related-posts-show-image":"1","acmeblog-related-posts-first-featured":"1","acmeblog-related-posts-show-categories":"1","acmeblog-related-posts-show-date":"1","acmeblog-related-posts-show-author":"1","acmeblog-related-posts-show-comments":"1","acmeblog-related-posts-number":"4","acmeblog-related-posts-content-words":"9","acmeblog-related-title":"Related posts","acmeblog-related-posts-column-number":"3","acmeblog_replace_featured_image":"","acmeblog_video_autoplay":""},"terms":{"category":[{"term_id":2,"name":"Entertainment","slug":"entertainment","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]},{"term_id":4,"name":"Sports","slug":"sports","term_group":0,"term_taxonomy_id":4,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Posts","post_id":35,"post_title":"Working is fun","post_status":"publish","post_name":"working-is-fun","post_content":"<strong>Lorem Ipsum<\/strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\n<strong>Lorem Ipsum<\/strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\n<strong>Lorem Ipsum<\/strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 16:09:39","post_date_gmt":"2016-01-03 16:09:39","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=35","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"36","acmeblog_post_views_count":"532"},"terms":{"category":[{"term_id":5,"name":"Technology","slug":"technology","term_group":0,"term_taxonomy_id":5,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]},{"term_id":6,"name":"Travel","slug":"travel","term_group":0,"term_taxonomy_id":6,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Posts","post_id":31,"post_title":"Office Work","post_status":"publish","post_name":"office-work","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 16:07:19","post_date_gmt":"2016-01-03 16:07:19","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=31","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"32","acmeblog_post_views_count":"588"},"terms":{"category":[{"term_id":5,"name":"Technology","slug":"technology","term_group":0,"term_taxonomy_id":5,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]},{"term_id":6,"name":"Travel","slug":"travel","term_group":0,"term_taxonomy_id":6,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Posts","post_id":91,"post_title":"Video Post","post_status":"publish","post_name":"video-post","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-02 10:38:18","post_date_gmt":"2016-01-02 10:38:18","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/?p=91","post_mime_type":"","meta":{"_edit_lock":"1455360716:1","_edit_last":"1","acmeblog_sidebar_layout":"default-sidebar","acmeblog-related-posts-display":"default-related-posts","acmeblog-related-posts-show-image":"1","acmeblog-related-posts-first-featured":"0","acmeblog-related-posts-show-categories":"1","acmeblog-related-posts-show-date":"1","acmeblog-related-posts-show-author":"1","acmeblog-related-posts-show-comments":"1","acmeblog-related-posts-number":"3","acmeblog-related-posts-content-words":"9","acmeblog-related-title":"Related posts","acmeblog-related-posts-column-number":"3","acmeblog_replace_featured_image":"1","acmeblog_video_autoplay":"1","_thumbnail_id":"93","acmeblog_video_url":"https:\/\/www.youtube.com\/embed\/79Q2rrQlPW4","acmeblog_post_views_count":"764"},"terms":{"category":[{"term_id":2,"name":"Entertainment","slug":"entertainment","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]},{"term_id":5,"name":"Technology","slug":"technology","term_group":0,"term_taxonomy_id":5,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]},{"term_id":6,"name":"Travel","slug":"travel","term_group":0,"term_taxonomy_id":6,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Posts","post_id":51,"post_title":"Reading touchscreen blog","post_status":"publish","post_name":"reading-touchscreen-blog","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2015-12-19 14:12:42","post_date_gmt":"2015-12-19 14:12:42","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=6","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"7","acmeblog_post_views_count":"1171","_edit_lock":"1455359604:1","acmeblog_sidebar_layout":"right-sidebar","acmeblog-related-posts-display":"default-related-posts","acmeblog-related-posts-show-image":"1","acmeblog-related-posts-first-featured":"1","acmeblog-related-posts-show-categories":"1","acmeblog-related-posts-show-date":"1","acmeblog-related-posts-show-author":"1","acmeblog-related-posts-show-comments":"1","acmeblog-related-posts-number":"3","acmeblog-related-posts-content-words":"9","acmeblog-related-title":"Related posts","acmeblog-related-posts-column-number":"3","acmeblog_replace_featured_image":"","acmeblog_video_autoplay":""},"terms":{"category":[{"term_id":3,"name":"Featured","slug":"featured","term_group":0,"term_taxonomy_id":3,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Posts","post_id":12,"post_title":"GPS Car","post_status":"publish","post_name":"gps-car","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2015-12-18 14:11:33","post_date_gmt":"2015-12-18 14:11:33","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=12","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"13","acmeblog_post_views_count":"1440","_edit_lock":"1455358357:1","acmeblog_sidebar_layout":"left-sidebar","acmeblog-related-posts-display":"default-related-posts","acmeblog-related-posts-show-image":"1","acmeblog-related-posts-first-featured":"0","acmeblog-related-posts-show-categories":"1","acmeblog-related-posts-show-date":"1","acmeblog-related-posts-show-author":"1","acmeblog-related-posts-show-comments":"1","acmeblog-related-posts-number":"3","acmeblog-related-posts-content-words":"9","acmeblog-related-title":"Related posts","acmeblog-related-posts-column-number":"3","acmeblog_replace_featured_image":"","acmeblog_video_autoplay":""},"terms":{"category":[{"term_id":3,"name":"Featured","slug":"featured","term_group":0,"term_taxonomy_id":3,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]},{"term_id":4,"name":"Sports","slug":"sports","term_group":0,"term_taxonomy_id":4,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Posts","post_id":9,"post_title":"Pen Tablet","post_status":"publish","post_name":"pen-tablet","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2015-12-17 14:09:40","post_date_gmt":"2015-12-17 14:09:40","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=9","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"10","acmeblog_post_views_count":"928","_edit_lock":"1455358905:1","acmeblog_sidebar_layout":"both-sidebar","acmeblog-related-posts-display":"default-related-posts","acmeblog-related-posts-show-image":"1","acmeblog-related-posts-first-featured":"0","acmeblog-related-posts-show-categories":"1","acmeblog-related-posts-show-date":"1","acmeblog-related-posts-show-author":"1","acmeblog-related-posts-show-comments":"1","acmeblog-related-posts-number":"3","acmeblog-related-posts-content-words":"9","acmeblog-related-title":"Related posts","acmeblog-related-posts-column-number":"3","acmeblog_replace_featured_image":"","acmeblog_video_autoplay":""},"terms":{"category":[{"term_id":3,"name":"Featured","slug":"featured","term_group":0,"term_taxonomy_id":3,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]},{"term_id":5,"name":"Technology","slug":"technology","term_group":0,"term_taxonomy_id":5,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Posts","post_id":15,"post_title":"Coffee Time","post_status":"publish","post_name":"coffee-time","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2015-11-03 14:15:32","post_date_gmt":"2015-11-03 14:15:32","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=15","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"16","acmeblog_post_views_count":"954","_edit_lock":"1455359063:1","acmeblog_sidebar_layout":"no-sidebar","acmeblog-related-posts-display":"default-related-posts","acmeblog-related-posts-show-image":"1","acmeblog-related-posts-first-featured":"0","acmeblog-related-posts-show-categories":"1","acmeblog-related-posts-show-date":"1","acmeblog-related-posts-show-author":"1","acmeblog-related-posts-show-comments":"1","acmeblog-related-posts-number":"3","acmeblog-related-posts-content-words":"9","acmeblog-related-title":"Related posts","acmeblog-related-posts-column-number":"3","acmeblog_replace_featured_image":"","acmeblog_video_autoplay":""},"terms":{"category":[{"term_id":2,"name":"Entertainment","slug":"entertainment","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Posts","post_id":25,"post_title":"Bird wild predator","post_status":"publish","post_name":"bird-wild-predator","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2015-10-03 15:56:02","post_date_gmt":"2015-10-03 15:56:02","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=25","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"26","acmeblog_post_views_count":"694"},"terms":{"category":[{"term_id":3,"name":"Featured","slug":"featured","term_group":0,"term_taxonomy_id":3,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]},{"term_id":6,"name":"Travel","slug":"travel","term_group":0,"term_taxonomy_id":6,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Posts","post_id":28,"post_title":"Diary writing","post_status":"publish","post_name":"diary-writing","post_content":"Mauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper. Suspendisse tempus nisi utMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper. Suspendisse tempus nisi utMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper. Suspendisse tempus nisi utMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper.\n\nMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper. Suspendisse tempus nisi utMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper. Suspendisse tempus nisi utMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper. Suspendisse tempus nisi utMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper.\n\nMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper. Suspendisse tempus nisi utMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper. Suspendisse tempus nisi utMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper. Suspendisse tempus nisi utMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper.\n","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2015-09-03 16:02:41","post_date_gmt":"2015-09-03 16:02:41","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=28","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"29","acmeblog_post_views_count":"412"},"terms":{"category":[{"term_id":5,"name":"Technology","slug":"technology","term_group":0,"term_taxonomy_id":5,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]},{"term_id":6,"name":"Travel","slug":"travel","term_group":0,"term_taxonomy_id":6,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}}],"page":[{"type_title":"Pages","post_id":2,"post_title":"Sample Page","post_status":"publish","post_name":"sample-page","post_content":"This is an example page. It's different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n<blockquote>Hi there! I'm a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin' caught in the rain.)<\/blockquote>\n\n...or something like this:\n\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.<\/blockquote>\n\nAs a new WordPress user, you should go to <a href=\"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/wp-admin\/\">your dashboard<\/a> to delete this page and create new pages for your content. Have fun!","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-02-13 05:21:16","post_date_gmt":"2016-02-13 05:21:16","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/?page_id=2","post_mime_type":"","meta":{"_wp_page_template":"default"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Pages","post_id":61,"post_title":"About","post_status":"publish","post_name":"about","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\n","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 16:40:16","post_date_gmt":"2016-01-03 16:40:16","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?page_id=61","post_mime_type":"","meta":{"_edit_last":"1","acmeblog_post_views_count":"763"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Pages","post_id":56,"post_title":"Contact","post_status":"publish","post_name":"contact","post_content":"<strong>Use contact form 7 plugin<\/strong>\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n[contact-form-7 id=\"55\" title=\"Contact form 1\"]","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 16:32:08","post_date_gmt":"2016-01-03 16:32:08","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?page_id=56","post_mime_type":"","meta":{"_edit_last":"1","acmeblog_post_views_count":"3455"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Pages","post_id":21,"post_title":"Blog","post_status":"publish","post_name":"blog","post_content":"","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 15:16:47","post_date_gmt":"2016-01-03 15:16:47","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?page_id=21","post_mime_type":"","meta":{"_edit_last":"1","acmeblog_post_views_count":"138"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Pages","post_id":19,"post_title":"Home","post_status":"publish","post_name":"home","post_content":"","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 14:41:20","post_date_gmt":"2016-01-03 14:41:20","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?page_id=19","post_mime_type":"","meta":{"_edit_last":"1"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Pages","post_id":50,"post_title":"Sample Page","post_status":"publish","post_name":"sample-page-2","post_content":"This is an example page. It's different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n<blockquote>Hi there! I'm a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin' caught in the rain.)<\/blockquote>\n\n...or something like this:\n\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.<\/blockquote>\n\nAs a new WordPress user, you should go to <a href=\"http:\/\/www.demo.acmethemes.com\/acmeblog\/wp-admin\/\">your dashboard<\/a> to delete this page and create new pages for your content. Have fun!","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 13:21:12","post_date_gmt":"2016-01-03 13:21:12","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?page_id=2","post_mime_type":"","meta":{"_wp_page_template":"default"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}}],"custom_css":[],"wp_block":[],"wpcf7_contact_form":[{"type_title":"Contact Forms","post_id":97,"post_title":"Contact form 1","post_status":"publish","post_name":"contact-form-1","post_content":"<p>Your Name (required)<br \/>\r\n [text* your-name] <\/p>\r\n\r\n<p>Your Email (required)<br \/>\r\n [email* your-email] <\/p>\r\n\r\n<p>Subject<br \/>\r\n [text your-subject] <\/p>\r\n\r\n<p>Your Message<br \/>\r\n [textarea your-message] <\/p>\r\n\r\n<p>[submit \"Send\"]<\/p>\n1\nSubject\n[your-name] <wordpress@demo.acmethemes.com>\nacmethemes@gmail.com\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on AcmeBlog Pro (http:\/\/www.demo.acmethemes.com\/acmeblogpro)\nReply-To: [your-email]\n\n\n\n\n[your-subject]\nAcmeBlog Pro <wordpress@demo.acmethemes.com>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on AcmeBlog Pro (http:\/\/www.demo.acmethemes.com\/acmeblogpro)\nReply-To: acmethemes@gmail.com\n\n\n\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill in the required field.\nThis input is too long.\nThis input is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-02-13 11:58:01","post_date_gmt":"2016-02-13 11:58:01","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/?post_type=wpcf7_contact_form&#038;p=97","post_mime_type":"","meta":{"_form":"<p>Your Name (required)<br \/>\n [text* your-name] <\/p>\n\n<p>Your Email (required)<br \/>\n [email* your-email] <\/p>\n\n<p>Subject<br \/>\n [text your-subject] <\/p>\n\n<p>Your Message<br \/>\n [textarea your-message] <\/p>\n\n<p>[submit \"Send\"]<\/p>","_mail":{"active":true,"subject":"Subject","sender":"[your-name] <wordpress@demo.acmethemes.com>","recipient":"acmethemes@gmail.com","body":"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on AcmeBlog Pro (http:\/\/www.demo.acmethemes.com\/acmeblogpro)","additional_headers":"Reply-To: [your-email]","attachments":"","use_html":false,"exclude_blank":false},"_mail_2":{"active":false,"subject":"[your-subject]","sender":"AcmeBlog Pro <wordpress@demo.acmethemes.com>","recipient":"[your-email]","body":"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on AcmeBlog Pro (http:\/\/www.demo.acmethemes.com\/acmeblogpro)","additional_headers":"Reply-To: acmethemes@gmail.com","attachments":"","use_html":false,"exclude_blank":false},"_messages":{"mail_sent_ok":"Your message was sent successfully. Thanks.","mail_sent_ng":"Failed to send your message. Please try later or contact the administrator by another method.","validation_error":"Validation errors occurred. Please confirm the fields and submit it again.","spam":"Failed to send your message. Please try later or contact the administrator by another method.","accept_terms":"Please accept the terms to proceed.","invalid_required":"Please fill in the required field.","invalid_too_long":"This input is too long.","invalid_too_short":"This input is too short.","invalid_date":"The date format is incorrect.","date_too_early":"The date is before the earliest one allowed.","date_too_late":"The date is after the latest one allowed.","upload_failed":"There was an unknown error uploading the file.","upload_file_type_invalid":"You are not allowed to upload files of this type.","upload_file_too_large":"The file is too big.","upload_failed_php_error":"There was an error uploading the file.","invalid_number":"The number format is invalid.","number_too_small":"The number is smaller than the minimum allowed.","number_too_large":"The number is larger than the maximum allowed.","quiz_answer_not_correct":"The answer to the quiz is incorrect.","captcha_not_match":"Your entered code is incorrect.","invalid_email":"The e-mail address entered is invalid.","invalid_url":"The URL is invalid.","invalid_tel":"The telephone number is invalid."},"_additional_settings":"","_locale":"en_US"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}}],"nav_menu_item":[{"type_title":"Navigation Menu Items","post_id":101,"post_title":"Home 3","post_status":"publish","post_name":"home-3","post_content":"","post_excerpt":"","post_parent":0,"menu_order":4,"post_date":"2016-05-13 11:29:04","post_date_gmt":"2016-05-13 11:29:04","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/?p=101","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"18","_menu_item_object_id":"101","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-3\/"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":7,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":7,"taxonomy":"nav_menu","description":"","parent":0,"count":20,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":99,"post_title":"Home 2","post_status":"publish","post_name":"home-2","post_content":"","post_excerpt":"","post_parent":0,"menu_order":3,"post_date":"2016-04-24 07:49:09","post_date_gmt":"2016-04-24 07:49:09","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/blog\/2016\/04\/24\/home-2\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"18","_menu_item_object_id":"99","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":7,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":7,"taxonomy":"nav_menu","description":"","parent":0,"count":20,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":96,"post_title":"Home-1","post_status":"publish","post_name":"home-1","post_content":"","post_excerpt":"","post_parent":0,"menu_order":2,"post_date":"2016-02-13 11:20:16","post_date_gmt":"2016-02-13 11:20:16","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/?p=96","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"18","_menu_item_object_id":"96","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":7,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":7,"taxonomy":"nav_menu","description":"","parent":0,"count":20,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":94,"post_title":"","post_status":"publish","post_name":"94","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":13,"post_date":"2016-02-13 10:49:48","post_date_gmt":"2016-02-13 10:49:48","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/blog\/2016\/02\/13\/94\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"76","_menu_item_object_id":"91","_menu_item_object":"post","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":7,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":7,"taxonomy":"nav_menu","description":"","parent":0,"count":20,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":90,"post_title":"Related Post Featured","post_status":"publish","post_name":"related-post-featured","post_content":"","post_excerpt":"","post_parent":0,"menu_order":12,"post_date":"2016-02-13 10:35:56","post_date_gmt":"2016-02-13 10:35:56","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/blog\/2016\/02\/13\/related-post-featured\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"76","_menu_item_object_id":"44","_menu_item_object":"post","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":7,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":7,"taxonomy":"nav_menu","description":"","parent":0,"count":20,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":88,"post_title":"Related Post Right","post_status":"publish","post_name":"related-post-right","post_content":"","post_excerpt":"","post_parent":0,"menu_order":11,"post_date":"2016-02-13 10:31:48","post_date_gmt":"2016-02-13 10:31:48","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/blog\/2016\/02\/13\/related-post-right\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"76","_menu_item_object_id":"41","_menu_item_object":"post","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":7,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":7,"taxonomy":"nav_menu","description":"","parent":0,"count":20,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":86,"post_title":"Related Post Left","post_status":"publish","post_name":"related-post-left","post_content":"","post_excerpt":"","post_parent":0,"menu_order":10,"post_date":"2016-02-13 10:30:11","post_date_gmt":"2016-02-13 10:30:11","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/blog\/2016\/02\/13\/related-post-left\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"76","_menu_item_object_id":"38","_menu_item_object":"post","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":7,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":7,"taxonomy":"nav_menu","description":"","parent":0,"count":20,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":84,"post_title":"No Sidebar","post_status":"publish","post_name":"no-sidebar","post_content":"","post_excerpt":"","post_parent":0,"menu_order":9,"post_date":"2016-02-13 10:26:37","post_date_gmt":"2016-02-13 10:26:37","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/blog\/2016\/02\/13\/no-sidebar\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"76","_menu_item_object_id":"15","_menu_item_object":"post","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":7,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":7,"taxonomy":"nav_menu","description":"","parent":0,"count":20,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":81,"post_title":"Both Sidebar","post_status":"publish","post_name":"both-sidebar","post_content":"","post_excerpt":"","post_parent":0,"menu_order":8,"post_date":"2016-02-13 10:24:06","post_date_gmt":"2016-02-13 10:24:06","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/blog\/2016\/02\/13\/both-sidebar\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"76","_menu_item_object_id":"9","_menu_item_object":"post","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":7,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":7,"taxonomy":"nav_menu","description":"","parent":0,"count":20,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":79,"post_title":"Left Sidebar","post_status":"publish","post_name":"left-sidebar","post_content":"","post_excerpt":"","post_parent":0,"menu_order":7,"post_date":"2016-02-13 10:14:56","post_date_gmt":"2016-02-13 10:14:56","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/blog\/2016\/02\/13\/left-sidebar\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"76","_menu_item_object_id":"12","_menu_item_object":"post","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":7,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":7,"taxonomy":"nav_menu","description":"","parent":0,"count":20,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":76,"post_title":"Features","post_status":"publish","post_name":"features","post_content":"","post_excerpt":"","post_parent":0,"menu_order":5,"post_date":"2016-02-13 10:13:45","post_date_gmt":"2016-02-13 10:13:45","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/blog\/2016\/02\/13\/features\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"76","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"#"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":7,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":7,"taxonomy":"nav_menu","description":"","parent":0,"count":20,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":77,"post_title":"Right Sidebar","post_status":"publish","post_name":"right-sidebar","post_content":"","post_excerpt":"","post_parent":0,"menu_order":6,"post_date":"2016-02-13 10:13:45","post_date_gmt":"2016-02-13 10:13:45","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/blog\/2016\/02\/13\/right-sidebar\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"76","_menu_item_object_id":"51","_menu_item_object":"post","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":7,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":7,"taxonomy":"nav_menu","description":"","parent":0,"count":20,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":71,"post_title":"AcmeThemes","post_status":"publish","post_name":"acmethemes-2","post_content":"","post_excerpt":"","post_parent":0,"menu_order":1,"post_date":"2016-02-13 09:34:09","post_date_gmt":"2016-02-13 09:34:09","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/blog\/2016\/02\/13\/acmethemes-2\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"71","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.acmethemes.com\/"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":9,"name":"Links (2)","slug":"links-2","term_group":0,"term_taxonomy_id":9,"taxonomy":"nav_menu","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":72,"post_title":"Themes","post_status":"publish","post_name":"themes-2","post_content":"","post_excerpt":"","post_parent":0,"menu_order":2,"post_date":"2016-02-13 09:34:09","post_date_gmt":"2016-02-13 09:34:09","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/blog\/2016\/02\/13\/themes-2\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"72","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.acmethemes.com\/themes\/"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":9,"name":"Links (2)","slug":"links-2","term_group":0,"term_taxonomy_id":9,"taxonomy":"nav_menu","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":73,"post_title":"Supports","post_status":"publish","post_name":"supports-2","post_content":"","post_excerpt":"","post_parent":0,"menu_order":3,"post_date":"2016-02-13 09:34:09","post_date_gmt":"2016-02-13 09:34:09","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/blog\/2016\/02\/13\/supports-2\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"73","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.acmethemes.com\/supports\/"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":9,"name":"Links (2)","slug":"links-2","term_group":0,"term_taxonomy_id":9,"taxonomy":"nav_menu","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":74,"post_title":"Contact","post_status":"publish","post_name":"contact-2","post_content":"","post_excerpt":"","post_parent":0,"menu_order":4,"post_date":"2016-02-13 09:34:09","post_date_gmt":"2016-02-13 09:34:09","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/blog\/2016\/02\/13\/contact-2\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"74","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.acmethemes.com\/contact\/"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":9,"name":"Links (2)","slug":"links-2","term_group":0,"term_taxonomy_id":9,"taxonomy":"nav_menu","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":67,"post_title":"AcmeThemes","post_status":"publish","post_name":"acmethemes","post_content":"","post_excerpt":"","post_parent":0,"menu_order":1,"post_date":"2016-02-13 09:34:08","post_date_gmt":"2016-02-13 09:34:08","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/blog\/2016\/02\/13\/acmethemes\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"67","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.acmethemes.com\/"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":8,"name":"Links","slug":"links","term_group":0,"term_taxonomy_id":8,"taxonomy":"nav_menu","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":68,"post_title":"Themes","post_status":"publish","post_name":"themes","post_content":"","post_excerpt":"","post_parent":0,"menu_order":2,"post_date":"2016-02-13 09:34:08","post_date_gmt":"2016-02-13 09:34:08","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/blog\/2016\/02\/13\/themes\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"68","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.acmethemes.com\/themes\/"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":8,"name":"Links","slug":"links","term_group":0,"term_taxonomy_id":8,"taxonomy":"nav_menu","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":69,"post_title":"Supports","post_status":"publish","post_name":"supports","post_content":"","post_excerpt":"","post_parent":0,"menu_order":3,"post_date":"2016-02-13 09:34:08","post_date_gmt":"2016-02-13 09:34:08","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/blog\/2016\/02\/13\/supports\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"69","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.acmethemes.com\/supports\/"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":8,"name":"Links","slug":"links","term_group":0,"term_taxonomy_id":8,"taxonomy":"nav_menu","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":70,"post_title":"Contact","post_status":"publish","post_name":"contact","post_content":"","post_excerpt":"","post_parent":0,"menu_order":4,"post_date":"2016-02-13 09:34:08","post_date_gmt":"2016-02-13 09:34:08","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/blog\/2016\/02\/13\/contact\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"70","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.acmethemes.com\/contact\/"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":8,"name":"Links","slug":"links","term_group":0,"term_taxonomy_id":8,"taxonomy":"nav_menu","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":46,"post_title":"","post_status":"publish","post_name":"46","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":14,"post_date":"2016-02-13 06:20:32","post_date_gmt":"2016-02-13 06:20:32","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/blog\/2016\/02\/13\/","post_mime_type":"","meta":{"_menu_item_type":"taxonomy","_menu_item_menu_item_parent":"0","_menu_item_object_id":"4","_menu_item_object":"category","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":7,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":7,"taxonomy":"nav_menu","description":"","parent":0,"count":20,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":49,"post_title":"","post_status":"publish","post_name":"49","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":16,"post_date":"2016-02-13 06:20:32","post_date_gmt":"2016-02-13 06:20:32","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/blog\/2016\/02\/13\/","post_mime_type":"","meta":{"_menu_item_type":"taxonomy","_menu_item_menu_item_parent":"0","_menu_item_object_id":"6","_menu_item_object":"category","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":7,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":7,"taxonomy":"nav_menu","description":"","parent":0,"count":20,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":62,"post_title":"","post_status":"publish","post_name":"62","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":19,"post_date":"2016-02-13 06:20:32","post_date_gmt":"2016-02-13 06:20:32","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/blog\/2016\/02\/13\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"0","_menu_item_object_id":"61","_menu_item_object":"page","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":7,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":7,"taxonomy":"nav_menu","description":"","parent":0,"count":20,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":63,"post_title":"","post_status":"publish","post_name":"63","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":20,"post_date":"2016-02-13 06:20:32","post_date_gmt":"2016-02-13 06:20:32","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/blog\/2016\/02\/13\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"0","_menu_item_object_id":"56","_menu_item_object":"page","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":7,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":7,"taxonomy":"nav_menu","description":"","parent":0,"count":20,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":64,"post_title":"","post_status":"publish","post_name":"64","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":15,"post_date":"2016-02-13 06:20:32","post_date_gmt":"2016-02-13 06:20:32","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/blog\/2016\/02\/13\/64\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"46","_menu_item_object_id":"44","_menu_item_object":"post","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":7,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":7,"taxonomy":"nav_menu","description":"","parent":0,"count":20,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":65,"post_title":"","post_status":"publish","post_name":"65","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":17,"post_date":"2016-02-13 06:20:32","post_date_gmt":"2016-02-13 06:20:32","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/blog\/2016\/02\/13\/65\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"49","_menu_item_object_id":"25","_menu_item_object":"post","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":7,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":7,"taxonomy":"nav_menu","description":"","parent":0,"count":20,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":66,"post_title":"","post_status":"publish","post_name":"66","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":18,"post_date":"2016-02-13 06:20:32","post_date_gmt":"2016-02-13 06:20:32","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/blog\/2016\/02\/13\/66\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"49","_menu_item_object_id":"12","_menu_item_object":"post","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":7,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":7,"taxonomy":"nav_menu","description":"","parent":0,"count":20,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":18,"post_title":"Home","post_status":"publish","post_name":"home","post_content":"","post_excerpt":"","post_parent":0,"menu_order":1,"post_date":"2016-02-13 06:20:28","post_date_gmt":"2016-02-13 06:20:28","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/blog\/2016\/02\/13\/home\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"18","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":7,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":7,"taxonomy":"nav_menu","description":"","parent":0,"count":20,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}}]}
includes/demo-data/acmeblogpro/demo-1/options.json ADDED
@@ -0,0 +1 @@
 
1
+ {"menu":{"primary":7},"options":{"blogname":"AcmeBlog Pro","blogname-child":"AcmeBlog Pro","blogdescription":"Premium Blog Theme","blogdescription-child":"Premium Blog Theme","posts_per_page":"10","posts_per_page-child":"10","date_format":"F j, Y","date_format-child":"F j, Y","time_format":"g:i a","time_format-child":"g:i a","show_on_front":"posts","show_on_front-child":"posts","thumbnail_size_w":"500","thumbnail_size_w-child":"500","thumbnail_size_h":"280","thumbnail_size_h-child":"280","thumbnail_crop":"1","thumbnail_crop-child":"1","medium_size_w":"690","medium_size_w-child":"690","medium_size_h":"400","medium_size_h-child":"400","avatar_default":"mystery","avatar_default-child":"mystery","large_size_w":"1080","large_size_w-child":"1080","large_size_h":"530","large_size_h-child":"530","page_for_posts":"0","page_for_posts-child":"0","page_on_front":"0","page_on_front-child":"0","medium_large_size_w":"0","medium_large_size_w-child":"0","medium_large_size_h":"0","medium_large_size_h-child":"0","theme_mods_acmeblogpro":{"0":false,"acmeblog_theme_options":{"acmeblog-slider-selection-from":"from-category","acmeblog-slider-from-category":"3","acmeblog-enable-feature":true,"acmeblog-feature-post-one":"9","acmeblog-feature-post-two":"12","acmeblog-facebook-url":"https:\/\/www.facebook.com\/acmethemes\/","acmeblog-twitter-url":"https:\/\/twitter.com\/acme_themes","acmeblog-linkedin-url":"https:\/\/www.linkedin.com\/in\/acmethemes","acmeblog-youtube-url":"","acmeblog-enable-social":true,"acmeblog-show-time":false,"acmeblog-default-layout":"boxed","acmeblog-site-tagline-fm":"Oswald:300,400,700","acmeblog-footer-widgets-number":"4","acmeblog-disable-shadow":false,"acmeblog-footer-widget-box-disable":"","acmeblog-pagination-option":"numeric","acmeblog-enable-sticky-sidebar":true},"custom_css_post_id":-1},"theme_mods_acmeblogpro-child":{"0":false,"acmeblog_theme_options":{"acmeblog-slider-selection-from":"from-category","acmeblog-slider-from-category":"3","acmeblog-enable-feature":true,"acmeblog-feature-post-one":"9","acmeblog-feature-post-two":"12","acmeblog-facebook-url":"https:\/\/www.facebook.com\/acmethemes\/","acmeblog-twitter-url":"https:\/\/twitter.com\/acme_themes","acmeblog-linkedin-url":"https:\/\/www.linkedin.com\/in\/acmethemes","acmeblog-youtube-url":"","acmeblog-enable-social":true,"acmeblog-show-time":false,"acmeblog-default-layout":"boxed","acmeblog-site-tagline-fm":"Oswald:300,400,700","acmeblog-footer-widgets-number":"4","acmeblog-disable-shadow":false,"acmeblog-footer-widget-box-disable":"","acmeblog-pagination-option":"numeric","acmeblog-enable-sticky-sidebar":true},"nav_menu_locations":{"primary":7},"custom_css_post_id":-1},"woocommerce_shop_page_id":"","woocommerce_shop_page_id-child":"","woocommerce_cart_page_id":"","woocommerce_cart_page_id-child":"","woocommerce_checkout_page_id":"","woocommerce_checkout_page_id-child":"","woocommerce_myaccount_page_id":"","woocommerce_myaccount_page_id-child":""}}
includes/demo-data/acmeblogpro/demo-1/screenshot.jpg ADDED
Binary file
includes/demo-data/acmeblogpro/demo-1/widgets.json ADDED
@@ -0,0 +1 @@
 
1
+ {"widget_positions":{"wp_inactive_widgets":[],"acmeblog-sidebar":["acmeblog_author-3","acmeblog_popular_posts-3","acmeblog_news_ticker-3","acmeblog_slider-3","acmeblog_tabbed-3","search-2","recent-posts-2","recent-comments-2","archives-2","categories-2","meta-2"],"acmeblog-sidebar-left":["acmeblog_ad-2","acmeblog_news_ticker-4","acmeblog_posts_col_pro-2","acmeblog_tabbed-4"],"footer-top-col-one":["categories-4"],"footer-top-col-two":["recent-posts-4"],"footer-top-col-three":["nav_menu-3"],"footer-top-col-four":["archives-4"],"array_version":3},"widget_options":{"acmeblog_author":{"_multiwidget":1,"3":{"acmeblog_author_title":"","acmeblog_author_image":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/wp-content\/uploads\/2016\/01\/author.png","acmeblog_author_link":"http:\/\/www.acmethemes.com\/","acmeblog_author_short_disc":"<h3>AcmeThemes<\/h3>\r\nDetails About Awesome Writer Lorem Ipsum is simply dummy text of the printing and typesetting industry.","acmeblog_author_new_window":1}},"acmeblog_popular_posts":{"_multiwidget":1,"3":{"acmeblog_cat_title":"Popular Posts","acmeblog_cat":"-1","acmeblog_enable_title_link":0,"acmeblog_enable_first_featured":1,"acmeblog_number":4,"acmeblog_column_number":3,"acmeblog_show_image":1,"acmeblog_show_cat":0,"acmeblog_show_date":1,"acmeblog_show_author":0,"acmeblog_show_comment":0,"acmeblog_content_words":0}},"acmeblog_news_ticker":{"3":{"acmeblog_cat_title":"Recent Posts","acmeblog_cat":"-1","acmeblog_enable_title_link":0,"acmeblog_number":6,"acmeblog_column_number":3,"acmeblog_slide_mode":"vertical","acmeblog_show_image":1,"acmeblog_show_cat":0,"acmeblog_show_date":1,"acmeblog_show_author":1,"acmeblog_show_comment":1,"acmeblog_content_words":0,"acmeblog_slider_speed":12000},"4":{"acmeblog_cat_title":"Recent Posts","acmeblog_cat":"-1","acmeblog_enable_title_link":1,"acmeblog_number":6,"acmeblog_column_number":2,"acmeblog_slide_mode":"horizontal","acmeblog_show_image":1,"acmeblog_show_cat":0,"acmeblog_show_date":0,"acmeblog_show_author":0,"acmeblog_show_comment":0,"acmeblog_content_words":0,"acmeblog_slider_speed":12000},"_multiwidget":1},"acmeblog_slider":{"3":{"acmeblog_cat_title":"Slider","acmeblog_cat":"3","acmeblog_number":2,"acmeblog_slider_speed":2000,"acmeblog_slider_pause":4000,"acmeblog_enable_title_link":0,"acmeblog_show_title":1,"acmeblog_show_desc":0,"acmeblog_show_cat":0,"acmeblog_show_date":0,"acmeblog_show_author":0,"acmeblog_show_comment":0,"acmeblog_slider_auto":1,"acmeblog_slider_controls":1},"_multiwidget":1},"acmeblog_tabbed":{"3":{"acmeblog_p_title":"Popular","acmeblog_p_cat":-1,"acmeblog_p_enable_first_featured":0,"acmeblog_p_number":5,"acmeblog_p_column_number":3,"acmeblog_p_show_image":1,"acmeblog_p_show_cat":0,"acmeblog_p_show_date":1,"acmeblog_p_show_author":1,"acmeblog_p_show_comment":0,"acmeblog_p_content_words":0,"acmeblog_popular_show":0,"acmeblog_r_title":"Recent","acmeblog_r_cat":-1,"acmeblog_r_enable_first_featured":0,"acmeblog_r_number":5,"acmeblog_r_column_number":3,"acmeblog_r_show_image":1,"acmeblog_r_show_cat":0,"acmeblog_r_show_date":1,"acmeblog_r_show_author":1,"acmeblog_r_show_comment":0,"acmeblog_r_content_words":0,"acmeblog_recent_show":1,"acmeblog_c_title":"Comments","acmeblog_c_number":5,"acmeblog_c_column_number":3,"acmeblog_c_show_avatar":1,"acmeblog_c_show_post_title":1,"acmeblog_c_show_date":1,"acmeblog_c_content_words":10,"acmeblog_comment_show":1},"4":{"acmeblog_p_title":"Popular","acmeblog_p_cat":-1,"acmeblog_p_enable_first_featured":0,"acmeblog_p_number":5,"acmeblog_p_column_number":3,"acmeblog_p_show_image":1,"acmeblog_p_show_cat":0,"acmeblog_p_show_date":1,"acmeblog_p_show_author":1,"acmeblog_p_show_comment":0,"acmeblog_p_content_words":0,"acmeblog_popular_show":0,"acmeblog_r_title":"Recent","acmeblog_r_cat":-1,"acmeblog_r_enable_first_featured":0,"acmeblog_r_number":5,"acmeblog_r_column_number":3,"acmeblog_r_show_image":1,"acmeblog_r_show_cat":0,"acmeblog_r_show_date":1,"acmeblog_r_show_author":1,"acmeblog_r_show_comment":0,"acmeblog_r_content_words":0,"acmeblog_recent_show":0,"acmeblog_c_title":"Comments","acmeblog_c_number":5,"acmeblog_c_column_number":3,"acmeblog_c_show_avatar":1,"acmeblog_c_show_post_title":1,"acmeblog_c_show_date":1,"acmeblog_c_content_words":10,"acmeblog_comment_show":1},"_multiwidget":1},"search":{"2":{"title":""},"_multiwidget":1},"recent-posts":{"2":{"title":"","number":5},"_multiwidget":1,"4":{"title":"Recent Posts","number":5,"show_date":false}},"recent-comments":{"2":{"title":"","number":5},"_multiwidget":1},"archives":{"2":{"title":"","count":0,"dropdown":0},"_multiwidget":1,"4":{"title":"Archives","count":0,"dropdown":0}},"categories":{"2":{"title":"","count":0,"hierarchical":0,"dropdown":0},"_multiwidget":1,"4":{"title":"Catogories","count":0,"hierarchical":0,"dropdown":0}},"meta":{"2":{"title":""},"_multiwidget":1},"acmeblog_ad":{"2":{"acmeblog_ad_title":"Advertisement","acmeblog_ad_code":"","acmeblog_ad_image":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/wp-content\/uploads\/2016\/01\/watches-1062994_1920.jpg","acmeblog_ad_link":"http:\/\/www.acmethemes.com\/themes\/acmeblogpro","acmeblog_ad_img_alt":"","acmeblog_ad_new_window":1,"acmeblog_ad_display_option":"both"},"_multiwidget":1},"acmeblog_posts_col_pro":{"2":{"acmeblog_cat_title":"Featured Posts","acmeblog_cat":"-1","acmeblog_enable_title_link":0,"acmeblog_enable_first_featured":0,"acmeblog_number":4,"acmeblog_column_number":3,"acmeblog_show_image":1,"acmeblog_show_cat":0,"acmeblog_show_date":0,"acmeblog_show_author":0,"acmeblog_show_comment":0,"acmeblog_content_words":0},"_multiwidget":1},"nav_menu":{"_multiwidget":1,"3":{"title":"Quick Links","nav_menu":8}}}}
includes/demo-data/acmeblogpro/demo-2/content.json ADDED
@@ -0,0 +1 @@
 
1
+ {"attachment":[{"type_title":"Media","post_id":93,"post_title":"Everest","post_status":"inherit","post_name":"everest","post_content":"","post_excerpt":"","post_parent":91,"menu_order":0,"post_date":"2016-02-13 10:47:38","post_date_gmt":"2016-02-13 10:47:38","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/wp-content\/uploads\/sites\/2\/2016\/02\/Everest.png","post_mime_type":"image\/png","meta":{"_wp_attached_file":"2016\/02\/Everest.png","_wp_attachment_metadata":{"width":840,"height":480,"hwstring_small":"height='73' width='128'","file":"2016\/02\/Everest.png","sizes":{"thumbnail":{"file":"Everest-500x280.png","width":500,"height":280,"mime-type":"image\/png"},"medium":{"file":"Everest-690x400.png","width":690,"height":400,"mime-type":"image\/png"},"post-thumbnail":{"file":"Everest-330x195.png","width":330,"height":195,"mime-type":"image\/png"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":45,"post_title":"basketball-652459_1920","post_status":"inherit","post_name":"basketball-652459_1920","post_content":"","post_excerpt":"","post_parent":44,"menu_order":0,"post_date":"2016-01-03 16:22:25","post_date_gmt":"2016-01-03 16:22:25","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/wp-content\/uploads\/sites\/2\/2016\/01\/basketball-652459_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/basketball-652459_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1420,"hwstring_small":"height='96' width='128'","file":"2016\/01\/basketball-652459_1920.jpg","sizes":{"thumbnail":{"file":"basketball-652459_1920-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"basketball-652459_1920-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"basketball-652459_1920-1080x530.jpg","width":1080,"height":530,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"basketball-652459_1920-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":42,"post_title":"watches-1062994_1920","post_status":"inherit","post_name":"watches-1062994_1920","post_content":"","post_excerpt":"","post_parent":41,"menu_order":0,"post_date":"2016-01-03 16:17:43","post_date_gmt":"2016-01-03 16:17:43","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/wp-content\/uploads\/sites\/2\/2016\/01\/watches-1062994_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/watches-1062994_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1277,"hwstring_small":"height='85' width='128'","file":"2016\/01\/watches-1062994_1920.jpg","sizes":{"thumbnail":{"file":"watches-1062994_1920-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"watches-1062994_1920-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"watches-1062994_1920-1080x530.jpg","width":1080,"height":530,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"watches-1062994_1920-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":39,"post_title":"girls-685778_1280","post_status":"inherit","post_name":"girls-685778_1280","post_content":"","post_excerpt":"","post_parent":38,"menu_order":0,"post_date":"2016-01-03 16:13:48","post_date_gmt":"2016-01-03 16:13:48","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/wp-content\/uploads\/sites\/2\/2016\/01\/girls-685778_1280.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/girls-685778_1280.jpg","_wp_attachment_metadata":{"width":1280,"height":853,"hwstring_small":"height='85' width='128'","file":"2016\/01\/girls-685778_1280.jpg","sizes":{"thumbnail":{"file":"girls-685778_1280-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"girls-685778_1280-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"girls-685778_1280-1080x530.jpg","width":1080,"height":530,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"girls-685778_1280-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":36,"post_title":"computer-336628_1280","post_status":"inherit","post_name":"computer-336628_1280","post_content":"","post_excerpt":"","post_parent":35,"menu_order":0,"post_date":"2016-01-03 16:09:32","post_date_gmt":"2016-01-03 16:09:32","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/wp-content\/uploads\/sites\/2\/2016\/01\/computer-336628_1280.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/computer-336628_1280.jpg","_wp_attachment_metadata":{"width":1280,"height":800,"hwstring_small":"height='80' width='128'","file":"2016\/01\/computer-336628_1280.jpg","sizes":{"thumbnail":{"file":"computer-336628_1280-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"computer-336628_1280-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"computer-336628_1280-1080x530.jpg","width":1080,"height":530,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"computer-336628_1280-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":32,"post_title":"home-office-381229_1920","post_status":"inherit","post_name":"home-office-381229_1920","post_content":"","post_excerpt":"","post_parent":31,"menu_order":0,"post_date":"2016-01-03 16:06:35","post_date_gmt":"2016-01-03 16:06:35","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/wp-content\/uploads\/sites\/2\/2016\/01\/home-office-381229_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/home-office-381229_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1271,"hwstring_small":"height='85' width='128'","file":"2016\/01\/home-office-381229_1920.jpg","sizes":{"thumbnail":{"file":"home-office-381229_1920-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"home-office-381229_1920-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"home-office-381229_1920-1080x530.jpg","width":1080,"height":530,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"home-office-381229_1920-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":29,"post_title":"diary-968592_1920","post_status":"inherit","post_name":"diary-968592_1920","post_content":"","post_excerpt":"","post_parent":28,"menu_order":0,"post_date":"2016-01-03 16:02:23","post_date_gmt":"2016-01-03 16:02:23","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/wp-content\/uploads\/sites\/2\/2016\/01\/diary-968592_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/diary-968592_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1440,"hwstring_small":"height='96' width='128'","file":"2016\/01\/diary-968592_1920.jpg","sizes":{"thumbnail":{"file":"diary-968592_1920-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"diary-968592_1920-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"diary-968592_1920-1080x530.jpg","width":1080,"height":530,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"diary-968592_1920-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":26,"post_title":"portrait-1072696_1920","post_status":"inherit","post_name":"portrait-1072696_1920","post_content":"","post_excerpt":"","post_parent":25,"menu_order":0,"post_date":"2016-01-03 15:55:26","post_date_gmt":"2016-01-03 15:55:26","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/wp-content\/uploads\/sites\/2\/2016\/01\/portrait-1072696_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/portrait-1072696_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1324,"hwstring_small":"height='88' width='128'","file":"2016\/01\/portrait-1072696_1920.jpg","sizes":{"thumbnail":{"file":"portrait-1072696_1920-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"portrait-1072696_1920-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"portrait-1072696_1920-1080x530.jpg","width":1080,"height":530,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"portrait-1072696_1920-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":17,"post_title":"author","post_status":"inherit","post_name":"author","post_content":"","post_excerpt":"","post_parent":9,"menu_order":0,"post_date":"2016-01-03 14:15:14","post_date_gmt":"2016-01-03 14:15:14","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/wp-content\/uploads\/sites\/2\/2016\/01\/author.png","post_mime_type":"image\/png","meta":{"_wp_attached_file":"2016\/01\/author.png","_wp_attachment_metadata":{"width":250,"height":250,"hwstring_small":"height='96' width='96'","file":"2016\/01\/author.png","sizes":{"post-thumbnail":{"file":"author-250x195.png","width":250,"height":195,"mime-type":"image\/png"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":16,"post_title":"coffee-569178_1920","post_status":"inherit","post_name":"coffee-569178_1920","post_content":"","post_excerpt":"","post_parent":15,"menu_order":0,"post_date":"2016-01-03 14:14:00","post_date_gmt":"2016-01-03 14:14:00","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/wp-content\/uploads\/sites\/2\/2016\/01\/coffee-569178_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/coffee-569178_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1267,"hwstring_small":"height='84' width='128'","file":"2016\/01\/coffee-569178_1920.jpg","sizes":{"thumbnail":{"file":"coffee-569178_1920-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"coffee-569178_1920-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"coffee-569178_1920-1080x530.jpg","width":1080,"height":530,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"coffee-569178_1920-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":13,"post_title":"navigation-1048294_1920","post_status":"inherit","post_name":"navigation-1048294_1920","post_content":"","post_excerpt":"","post_parent":12,"menu_order":0,"post_date":"2016-01-03 14:11:20","post_date_gmt":"2016-01-03 14:11:20","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/wp-content\/uploads\/sites\/2\/2016\/01\/navigation-1048294_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/navigation-1048294_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1440,"hwstring_small":"height='96' width='128'","file":"2016\/01\/navigation-1048294_1920.jpg","sizes":{"thumbnail":{"file":"navigation-1048294_1920-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"navigation-1048294_1920-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"navigation-1048294_1920-1080x530.jpg","width":1080,"height":530,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"navigation-1048294_1920-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":10,"post_title":"pen-926313_1920","post_status":"inherit","post_name":"pen-926313_1920","post_content":"","post_excerpt":"","post_parent":9,"menu_order":0,"post_date":"2016-01-03 14:09:28","post_date_gmt":"2016-01-03 14:09:28","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/wp-content\/uploads\/sites\/2\/2016\/01\/pen-926313_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/pen-926313_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1285,"hwstring_small":"height='86' width='128'","file":"2016\/01\/pen-926313_1920.jpg","sizes":{"thumbnail":{"file":"pen-926313_1920-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"pen-926313_1920-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"pen-926313_1920-1080x530.jpg","width":1080,"height":530,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"pen-926313_1920-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":7,"post_title":"man-791049_1920","post_status":"inherit","post_name":"man-791049_1920","post_content":"","post_excerpt":"","post_parent":51,"menu_order":0,"post_date":"2016-01-03 14:05:27","post_date_gmt":"2016-01-03 14:05:27","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/wp-content\/uploads\/sites\/2\/2016\/01\/man-791049_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/man-791049_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1280,"hwstring_small":"height='85' width='128'","file":"2016\/01\/man-791049_1920.jpg","sizes":{"thumbnail":{"file":"man-791049_1920-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"man-791049_1920-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"man-791049_1920-1080x530.jpg","width":1080,"height":530,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"man-791049_1920-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}}],"post":[{"type_title":"Posts","post_id":38,"post_title":"Love your best friends","post_status":"publish","post_name":"love-your-best-friends","post_content":"<strong>Lorem Ipsum<\/strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\n<strong>Lorem Ipsum<\/strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\n<strong>Lorem Ipsum<\/strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 16:25:40","post_date_gmt":"2016-01-03 16:25:40","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=38","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"39","acmeblog_post_views_count":"323","acmeblog_sidebar_layout":"default-sidebar","acmeblog-related-posts-display":"left-related-posts","acmeblog-related-posts-show-image":"1","acmeblog-related-posts-first-featured":"0","acmeblog-related-posts-show-categories":"1","acmeblog-related-posts-show-date":"1","acmeblog-related-posts-show-author":"1","acmeblog-related-posts-show-comments":"1","acmeblog-related-posts-number":"3","acmeblog-related-posts-content-words":"9","acmeblog-related-title":"Related posts","acmeblog-related-posts-column-number":"3","acmeblog_replace_featured_image":"","acmeblog_video_autoplay":""},"terms":{"category":[{"term_id":2,"name":"Entertainment","slug":"entertainment","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]},{"term_id":4,"name":"Sports","slug":"sports","term_group":0,"term_taxonomy_id":4,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Posts","post_id":41,"post_title":"Watches, Fashion Trends","post_status":"publish","post_name":"watches-fashion-trends","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 16:23:53","post_date_gmt":"2016-01-03 16:23:53","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=41","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"42","acmeblog_post_views_count":"368","acmeblog_sidebar_layout":"default-sidebar","acmeblog-related-posts-display":"right-related-posts","acmeblog-related-posts-show-image":"1","acmeblog-related-posts-first-featured":"0","acmeblog-related-posts-show-categories":"1","acmeblog-related-posts-show-date":"1","acmeblog-related-posts-show-author":"1","acmeblog-related-posts-show-comments":"1","acmeblog-related-posts-number":"3","acmeblog-related-posts-content-words":"9","acmeblog-related-title":"Related posts","acmeblog-related-posts-column-number":"3","acmeblog_replace_featured_image":"","acmeblog_video_autoplay":""},"terms":{"category":[{"term_id":2,"name":"Entertainment","slug":"entertainment","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]},{"term_id":4,"name":"Sports","slug":"sports","term_group":0,"term_taxonomy_id":4,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Posts","post_id":44,"post_title":"Winner Reaction","post_status":"publish","post_name":"winner-reaction","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 16:22:47","post_date_gmt":"2016-01-03 16:22:47","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=44","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"45","acmeblog_post_views_count":"345","acmeblog_sidebar_layout":"default-sidebar","acmeblog-related-posts-display":"below-related-posts","acmeblog-related-posts-show-image":"1","acmeblog-related-posts-first-featured":"1","acmeblog-related-posts-show-categories":"1","acmeblog-related-posts-show-date":"1","acmeblog-related-posts-show-author":"1","acmeblog-related-posts-show-comments":"1","acmeblog-related-posts-number":"4","acmeblog-related-posts-content-words":"9","acmeblog-related-title":"Related posts","acmeblog-related-posts-column-number":"3","acmeblog_replace_featured_image":"","acmeblog_video_autoplay":""},"terms":{"category":[{"term_id":2,"name":"Entertainment","slug":"entertainment","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]},{"term_id":4,"name":"Sports","slug":"sports","term_group":0,"term_taxonomy_id":4,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Posts","post_id":35,"post_title":"Working is fun","post_status":"publish","post_name":"working-is-fun","post_content":"<strong>Lorem Ipsum<\/strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\n<strong>Lorem Ipsum<\/strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\n<strong>Lorem Ipsum<\/strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 16:09:39","post_date_gmt":"2016-01-03 16:09:39","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=35","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"36","acmeblog_post_views_count":"289"},"terms":{"category":[{"term_id":5,"name":"Technology","slug":"technology","term_group":0,"term_taxonomy_id":5,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]},{"term_id":6,"name":"Travel","slug":"travel","term_group":0,"term_taxonomy_id":6,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Posts","post_id":31,"post_title":"Office Work","post_status":"publish","post_name":"office-work","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 16:07:19","post_date_gmt":"2016-01-03 16:07:19","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=31","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"32","acmeblog_post_views_count":"270"},"terms":{"category":[{"term_id":5,"name":"Technology","slug":"technology","term_group":0,"term_taxonomy_id":5,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]},{"term_id":6,"name":"Travel","slug":"travel","term_group":0,"term_taxonomy_id":6,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Posts","post_id":91,"post_title":"Video Post","post_status":"publish","post_name":"video-post","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-02 10:38:18","post_date_gmt":"2016-01-02 10:38:18","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/?p=91","post_mime_type":"","meta":{"_edit_last":"1","acmeblog_sidebar_layout":"default-sidebar","acmeblog-related-posts-display":"default-related-posts","acmeblog-related-posts-show-image":"1","acmeblog-related-posts-first-featured":"0","acmeblog-related-posts-show-categories":"1","acmeblog-related-posts-show-date":"1","acmeblog-related-posts-show-author":"1","acmeblog-related-posts-show-comments":"1","acmeblog-related-posts-number":"3","acmeblog-related-posts-content-words":"9","acmeblog-related-title":"Related posts","acmeblog-related-posts-column-number":"3","acmeblog_replace_featured_image":"1","acmeblog_video_autoplay":"1","_thumbnail_id":"93","acmeblog_video_url":"https:\/\/www.youtube.com\/embed\/79Q2rrQlPW4","acmeblog_post_views_count":"390"},"terms":{"category":[{"term_id":2,"name":"Entertainment","slug":"entertainment","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]},{"term_id":5,"name":"Technology","slug":"technology","term_group":0,"term_taxonomy_id":5,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]},{"term_id":6,"name":"Travel","slug":"travel","term_group":0,"term_taxonomy_id":6,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Posts","post_id":51,"post_title":"Reading touchscreen blog","post_status":"publish","post_name":"reading-touchscreen-blog","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2015-12-19 14:12:42","post_date_gmt":"2015-12-19 14:12:42","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=6","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"7","acmeblog_post_views_count":"530","acmeblog_sidebar_layout":"right-sidebar","acmeblog-related-posts-display":"default-related-posts","acmeblog-related-posts-show-image":"1","acmeblog-related-posts-first-featured":"1","acmeblog-related-posts-show-categories":"1","acmeblog-related-posts-show-date":"1","acmeblog-related-posts-show-author":"1","acmeblog-related-posts-show-comments":"1","acmeblog-related-posts-number":"3","acmeblog-related-posts-content-words":"9","acmeblog-related-title":"Related posts","acmeblog-related-posts-column-number":"3","acmeblog_replace_featured_image":"","acmeblog_video_autoplay":""},"terms":{"category":[{"term_id":3,"name":"Featured","slug":"featured","term_group":0,"term_taxonomy_id":3,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Posts","post_id":12,"post_title":"GPS Car","post_status":"publish","post_name":"gps-car","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2015-12-18 14:11:33","post_date_gmt":"2015-12-18 14:11:33","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=12","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"13","acmeblog_post_views_count":"322","acmeblog_sidebar_layout":"left-sidebar","acmeblog-related-posts-display":"default-related-posts","acmeblog-related-posts-show-image":"1","acmeblog-related-posts-first-featured":"0","acmeblog-related-posts-show-categories":"1","acmeblog-related-posts-show-date":"1","acmeblog-related-posts-show-author":"1","acmeblog-related-posts-show-comments":"1","acmeblog-related-posts-number":"3","acmeblog-related-posts-content-words":"9","acmeblog-related-title":"Related posts","acmeblog-related-posts-column-number":"3","acmeblog_replace_featured_image":"","acmeblog_video_autoplay":""},"terms":{"category":[{"term_id":3,"name":"Featured","slug":"featured","term_group":0,"term_taxonomy_id":3,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]},{"term_id":4,"name":"Sports","slug":"sports","term_group":0,"term_taxonomy_id":4,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Posts","post_id":9,"post_title":"Pen Tablet","post_status":"publish","post_name":"pen-tablet","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2015-12-17 14:09:40","post_date_gmt":"2015-12-17 14:09:40","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=9","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"10","acmeblog_post_views_count":"343","acmeblog_sidebar_layout":"both-sidebar","acmeblog-related-posts-display":"default-related-posts","acmeblog-related-posts-show-image":"1","acmeblog-related-posts-first-featured":"0","acmeblog-related-posts-show-categories":"1","acmeblog-related-posts-show-date":"1","acmeblog-related-posts-show-author":"1","acmeblog-related-posts-show-comments":"1","acmeblog-related-posts-number":"3","acmeblog-related-posts-content-words":"9","acmeblog-related-title":"Related posts","acmeblog-related-posts-column-number":"3","acmeblog_replace_featured_image":"","acmeblog_video_autoplay":""},"terms":{"category":[{"term_id":3,"name":"Featured","slug":"featured","term_group":0,"term_taxonomy_id":3,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]},{"term_id":5,"name":"Technology","slug":"technology","term_group":0,"term_taxonomy_id":5,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Posts","post_id":15,"post_title":"Coffee Time","post_status":"publish","post_name":"coffee-time","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2015-11-03 14:15:32","post_date_gmt":"2015-11-03 14:15:32","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=15","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"16","acmeblog_post_views_count":"419","acmeblog_sidebar_layout":"no-sidebar","acmeblog-related-posts-display":"default-related-posts","acmeblog-related-posts-show-image":"1","acmeblog-related-posts-first-featured":"0","acmeblog-related-posts-show-categories":"1","acmeblog-related-posts-show-date":"1","acmeblog-related-posts-show-author":"1","acmeblog-related-posts-show-comments":"1","acmeblog-related-posts-number":"3","acmeblog-related-posts-content-words":"9","acmeblog-related-title":"Related posts","acmeblog-related-posts-column-number":"3","acmeblog_replace_featured_image":"","acmeblog_video_autoplay":""},"terms":{"category":[{"term_id":2,"name":"Entertainment","slug":"entertainment","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Posts","post_id":25,"post_title":"Bird wild predator","post_status":"publish","post_name":"bird-wild-predator","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2015-10-03 15:56:02","post_date_gmt":"2015-10-03 15:56:02","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=25","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"26","acmeblog_post_views_count":"264"},"terms":{"category":[{"term_id":3,"name":"Featured","slug":"featured","term_group":0,"term_taxonomy_id":3,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]},{"term_id":6,"name":"Travel","slug":"travel","term_group":0,"term_taxonomy_id":6,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Posts","post_id":28,"post_title":"Diary writing","post_status":"publish","post_name":"diary-writing","post_content":"Mauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper. Suspendisse tempus nisi utMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper. Suspendisse tempus nisi utMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper. Suspendisse tempus nisi utMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper.\n\nMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper. Suspendisse tempus nisi utMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper. Suspendisse tempus nisi utMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper. Suspendisse tempus nisi utMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper.\n\nMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper. Suspendisse tempus nisi utMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper. Suspendisse tempus nisi utMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper. Suspendisse tempus nisi utMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper.\n","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2015-09-03 16:02:41","post_date_gmt":"2015-09-03 16:02:41","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=28","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"29","acmeblog_post_views_count":"289"},"terms":{"category":[{"term_id":5,"name":"Technology","slug":"technology","term_group":0,"term_taxonomy_id":5,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]},{"term_id":6,"name":"Travel","slug":"travel","term_group":0,"term_taxonomy_id":6,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}}],"page":[{"type_title":"Pages","post_id":2,"post_title":"Sample Page","post_status":"publish","post_name":"sample-page","post_content":"This is an example page. It's different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n<blockquote>Hi there! I'm a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin' caught in the rain.)<\/blockquote>\n\n...or something like this:\n\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.<\/blockquote>\n\nAs a new WordPress user, you should go to <a href=\"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/wp-admin\/\">your dashboard<\/a> to delete this page and create new pages for your content. Have fun!","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-02-13 10:55:26","post_date_gmt":"2016-02-13 10:55:26","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/?page_id=2","post_mime_type":"","meta":{"_wp_page_template":"default"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Pages","post_id":104,"post_title":"Sample Page","post_status":"publish","post_name":"sample-page-3","post_content":"This is an example page. It's different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n<blockquote>Hi there! I'm a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin' caught in the rain.)<\/blockquote>\n\n...or something like this:\n\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.<\/blockquote>\n\nAs a new WordPress user, you should go to <a href=\"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/wp-admin\/\">your dashboard<\/a> to delete this page and create new pages for your content. Have fun!","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-02-13 05:21:16","post_date_gmt":"2016-02-13 05:21:16","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/?page_id=2","post_mime_type":"","meta":{"_wp_page_template":"default"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Pages","post_id":61,"post_title":"About","post_status":"publish","post_name":"about","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\n","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 16:40:16","post_date_gmt":"2016-01-03 16:40:16","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?page_id=61","post_mime_type":"","meta":{"_edit_last":"1","acmeblog_post_views_count":"403"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Pages","post_id":56,"post_title":"Contact","post_status":"publish","post_name":"contact","post_content":"<strong>Use contact form 7 plugin<\/strong>\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n[contact-form-7 id=\"55\" title=\"Contact form 1\"]","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 16:32:08","post_date_gmt":"2016-01-03 16:32:08","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?page_id=56","post_mime_type":"","meta":{"_edit_last":"1","acmeblog_post_views_count":"1176"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Pages","post_id":21,"post_title":"Blog","post_status":"publish","post_name":"blog","post_content":"","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 15:16:47","post_date_gmt":"2016-01-03 15:16:47","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?page_id=21","post_mime_type":"","meta":{"_edit_last":"1"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Pages","post_id":19,"post_title":"Home","post_status":"publish","post_name":"home","post_content":"","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 14:41:20","post_date_gmt":"2016-01-03 14:41:20","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?page_id=19","post_mime_type":"","meta":{"_edit_last":"1"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Pages","post_id":50,"post_title":"Sample Page","post_status":"publish","post_name":"sample-page-2","post_content":"This is an example page. It's different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n<blockquote>Hi there! I'm a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin' caught in the rain.)<\/blockquote>\n\n...or something like this:\n\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.<\/blockquote>\n\nAs a new WordPress user, you should go to <a href=\"http:\/\/www.demo.acmethemes.com\/acmeblog\/wp-admin\/\">your dashboard<\/a> to delete this page and create new pages for your content. Have fun!","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 13:21:12","post_date_gmt":"2016-01-03 13:21:12","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?page_id=2","post_mime_type":"","meta":{"_wp_page_template":"default"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}}],"custom_css":[],"wp_block":[],"wpcf7_contact_form":[{"type_title":"Contact Forms","post_id":121,"post_title":"Contact form 1","post_status":"publish","post_name":"contact-form-1","post_content":"<p>Your Name (required)<br \/>\r\n [text* your-name] <\/p>\r\n\r\n<p>Your Email (required)<br \/>\r\n [email* your-email] <\/p>\r\n\r\n<p>Subject<br \/>\r\n [text your-subject] <\/p>\r\n\r\n<p>Your Message<br \/>\r\n [textarea your-message] <\/p>\r\n\r\n<p>[submit \"Send\"]<\/p>\n1\nSite Contact Form\n[your-name] <wordpress@demo.acmethemes.com>\nacmethemes@gmail.com\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on AcmeBlog Pro (http:\/\/www.demo.acmethemes.com\/acmeblogpro)\nReply-To: [your-email]\n\n\n\n\n[your-subject]\nAcmeBlog Pro <wordpress@demo.acmethemes.com>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on AcmeBlog Pro (http:\/\/www.demo.acmethemes.com\/acmeblogpro)\nReply-To: acmethemes@gmail.com\n\n\n\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill in the required field.\nThis input is too long.\nThis input is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-02-13 11:58:01","post_date_gmt":"2016-02-13 11:58:01","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/?post_type=wpcf7_contact_form&#038;p=97","post_mime_type":"","meta":{"_form":"<p>Your Name (required)<br \/>\n [text* your-name] <\/p>\n\n<p>Your Email (required)<br \/>\n [email* your-email] <\/p>\n\n<p>Subject<br \/>\n [text your-subject] <\/p>\n\n<p>Your Message<br \/>\n [textarea your-message] <\/p>\n\n<p>[submit \"Send\"]<\/p>","_mail":{"active":true,"subject":"Site Contact Form","sender":"[your-name] <wordpress@demo.acmethemes.com>","recipient":"acmethemes@gmail.com","body":"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on AcmeBlog Pro (http:\/\/www.demo.acmethemes.com\/acmeblogpro)","additional_headers":"Reply-To: [your-email]","attachments":"","use_html":false,"exclude_blank":false},"_mail_2":{"active":false,"subject":"[your-subject]","sender":"AcmeBlog Pro <wordpress@demo.acmethemes.com>","recipient":"[your-email]","body":"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on AcmeBlog Pro (http:\/\/www.demo.acmethemes.com\/acmeblogpro)","additional_headers":"Reply-To: acmethemes@gmail.com","attachments":"","use_html":false,"exclude_blank":false},"_messages":{"mail_sent_ok":"Your message was sent successfully. Thanks.","mail_sent_ng":"Failed to send your message. Please try later or contact the administrator by another method.","validation_error":"Validation errors occurred. Please confirm the fields and submit it again.","spam":"Failed to send your message. Please try later or contact the administrator by another method.","accept_terms":"Please accept the terms to proceed.","invalid_required":"Please fill in the required field.","invalid_too_long":"This input is too long.","invalid_too_short":"This input is too short.","invalid_date":"The date format is incorrect.","date_too_early":"The date is before the earliest one allowed.","date_too_late":"The date is after the latest one allowed.","upload_failed":"There was an unknown error uploading the file.","upload_file_type_invalid":"You are not allowed to upload files of this type.","upload_file_too_large":"The file is too big.","upload_failed_php_error":"There was an error uploading the file.","invalid_number":"The number format is invalid.","number_too_small":"The number is smaller than the minimum allowed.","number_too_large":"The number is larger than the maximum allowed.","quiz_answer_not_correct":"The answer to the quiz is incorrect.","captcha_not_match":"Your entered code is incorrect.","invalid_email":"The e-mail address entered is invalid.","invalid_url":"The URL is invalid.","invalid_tel":"The telephone number is invalid."},"_additional_settings":"","_locale":"en_US"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}}],"nav_menu_item":[{"type_title":"Navigation Menu Items","post_id":123,"post_title":"Home 3","post_status":"publish","post_name":"home-3","post_content":"","post_excerpt":"","post_parent":0,"menu_order":4,"post_date":"2016-05-13 11:30:04","post_date_gmt":"2016-05-13 11:30:04","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/?p=123","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"118","_menu_item_object_id":"123","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-3\/"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":9,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":9,"taxonomy":"nav_menu","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":122,"post_title":"Home 2","post_status":"publish","post_name":"home-2-2","post_content":"","post_excerpt":"","post_parent":0,"menu_order":3,"post_date":"2016-04-24 07:36:59","post_date_gmt":"2016-04-24 07:36:59","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/2016\/04\/24\/home-2-2\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"118","_menu_item_object_id":"122","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":9,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":9,"taxonomy":"nav_menu","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":118,"post_title":"Home","post_status":"publish","post_name":"home-2","post_content":"","post_excerpt":"","post_parent":0,"menu_order":1,"post_date":"2016-02-13 11:32:51","post_date_gmt":"2016-02-13 11:32:51","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/2016\/02\/13\/home-2\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"118","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":9,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":9,"taxonomy":"nav_menu","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":105,"post_title":"","post_status":"publish","post_name":"105","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":20,"post_date":"2016-02-13 11:10:15","post_date_gmt":"2016-02-13 11:10:15","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/2016\/02\/13\/105\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"0","_menu_item_object_id":"61","_menu_item_object":"page","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":9,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":9,"taxonomy":"nav_menu","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":106,"post_title":"","post_status":"publish","post_name":"106","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":21,"post_date":"2016-02-13 11:10:15","post_date_gmt":"2016-02-13 11:10:15","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/2016\/02\/13\/106\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"0","_menu_item_object_id":"56","_menu_item_object":"page","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":9,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":9,"taxonomy":"nav_menu","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":107,"post_title":"","post_status":"publish","post_name":"107","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":15,"post_date":"2016-02-13 11:10:15","post_date_gmt":"2016-02-13 11:10:15","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/2016\/02\/13\/107\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"46","_menu_item_object_id":"44","_menu_item_object":"post","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":9,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":9,"taxonomy":"nav_menu","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":108,"post_title":"","post_status":"publish","post_name":"108","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":18,"post_date":"2016-02-13 11:10:15","post_date_gmt":"2016-02-13 11:10:15","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/2016\/02\/13\/108\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"48","_menu_item_object_id":"25","_menu_item_object":"post","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":9,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":9,"taxonomy":"nav_menu","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":109,"post_title":"","post_status":"publish","post_name":"109","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":19,"post_date":"2016-02-13 11:10:15","post_date_gmt":"2016-02-13 11:10:15","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/2016\/02\/13\/109\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"48","_menu_item_object_id":"12","_menu_item_object":"post","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":9,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":9,"taxonomy":"nav_menu","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":110,"post_title":"Right Sidebar","post_status":"publish","post_name":"right-sidebar","post_content":"","post_excerpt":"","post_parent":0,"menu_order":6,"post_date":"2016-02-13 11:10:15","post_date_gmt":"2016-02-13 11:10:15","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/2016\/02\/13\/right-sidebar\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"102","_menu_item_object_id":"51","_menu_item_object":"post","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":9,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":9,"taxonomy":"nav_menu","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":111,"post_title":"Left Sidebar","post_status":"publish","post_name":"left-sidebar","post_content":"","post_excerpt":"","post_parent":0,"menu_order":7,"post_date":"2016-02-13 11:10:15","post_date_gmt":"2016-02-13 11:10:15","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/2016\/02\/13\/left-sidebar\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"102","_menu_item_object_id":"12","_menu_item_object":"post","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":9,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":9,"taxonomy":"nav_menu","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":112,"post_title":"Both Sidebar","post_status":"publish","post_name":"both-sidebar","post_content":"","post_excerpt":"","post_parent":0,"menu_order":8,"post_date":"2016-02-13 11:10:15","post_date_gmt":"2016-02-13 11:10:15","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/2016\/02\/13\/both-sidebar\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"102","_menu_item_object_id":"9","_menu_item_object":"post","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":9,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":9,"taxonomy":"nav_menu","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":113,"post_title":"No Sidebar","post_status":"publish","post_name":"no-sidebar","post_content":"","post_excerpt":"","post_parent":0,"menu_order":9,"post_date":"2016-02-13 11:10:15","post_date_gmt":"2016-02-13 11:10:15","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/2016\/02\/13\/no-sidebar\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"102","_menu_item_object_id":"15","_menu_item_object":"post","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":9,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":9,"taxonomy":"nav_menu","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":114,"post_title":"Related Post Left","post_status":"publish","post_name":"related-post-left","post_content":"","post_excerpt":"","post_parent":0,"menu_order":10,"post_date":"2016-02-13 11:10:15","post_date_gmt":"2016-02-13 11:10:15","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/2016\/02\/13\/related-post-left\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"102","_menu_item_object_id":"38","_menu_item_object":"post","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":9,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":9,"taxonomy":"nav_menu","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":115,"post_title":"Related Post Right","post_status":"publish","post_name":"related-post-right","post_content":"","post_excerpt":"","post_parent":0,"menu_order":11,"post_date":"2016-02-13 11:10:15","post_date_gmt":"2016-02-13 11:10:15","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/2016\/02\/13\/related-post-right\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"102","_menu_item_object_id":"41","_menu_item_object":"post","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":9,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":9,"taxonomy":"nav_menu","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":116,"post_title":"Related Post Featured","post_status":"publish","post_name":"related-post-featured","post_content":"","post_excerpt":"","post_parent":0,"menu_order":12,"post_date":"2016-02-13 11:10:15","post_date_gmt":"2016-02-13 11:10:15","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/2016\/02\/13\/related-post-featured\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"102","_menu_item_object_id":"44","_menu_item_object":"post","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":9,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":9,"taxonomy":"nav_menu","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":117,"post_title":"","post_status":"publish","post_name":"117","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":13,"post_date":"2016-02-13 11:10:15","post_date_gmt":"2016-02-13 11:10:15","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/2016\/02\/13\/117\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"102","_menu_item_object_id":"91","_menu_item_object":"post","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":9,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":9,"taxonomy":"nav_menu","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":46,"post_title":"","post_status":"publish","post_name":"46","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":14,"post_date":"2016-02-13 11:10:14","post_date_gmt":"2016-02-13 11:10:14","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/2016\/02\/13\/","post_mime_type":"","meta":{"_menu_item_type":"taxonomy","_menu_item_menu_item_parent":"0","_menu_item_object_id":"4","_menu_item_object":"category","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":9,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":9,"taxonomy":"nav_menu","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":47,"post_title":"","post_status":"publish","post_name":"47","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":16,"post_date":"2016-02-13 11:10:14","post_date_gmt":"2016-02-13 11:10:14","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/2016\/02\/13\/","post_mime_type":"","meta":{"_menu_item_type":"taxonomy","_menu_item_menu_item_parent":"0","_menu_item_object_id":"5","_menu_item_object":"category","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":9,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":9,"taxonomy":"nav_menu","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":48,"post_title":"","post_status":"publish","post_name":"48","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":17,"post_date":"2016-02-13 11:10:14","post_date_gmt":"2016-02-13 11:10:14","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/2016\/02\/13\/","post_mime_type":"","meta":{"_menu_item_type":"taxonomy","_menu_item_menu_item_parent":"0","_menu_item_object_id":"6","_menu_item_object":"category","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":9,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":9,"taxonomy":"nav_menu","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":94,"post_title":"AcmeThemes","post_status":"publish","post_name":"acmethemes","post_content":"","post_excerpt":"","post_parent":0,"menu_order":1,"post_date":"2016-02-13 11:10:14","post_date_gmt":"2016-02-13 11:10:14","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/2016\/02\/13\/acmethemes\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"94","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.acmethemes.com\/"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":7,"name":"Links","slug":"links","term_group":0,"term_taxonomy_id":7,"taxonomy":"nav_menu","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":95,"post_title":"Themes","post_status":"publish","post_name":"themes","post_content":"","post_excerpt":"","post_parent":0,"menu_order":2,"post_date":"2016-02-13 11:10:14","post_date_gmt":"2016-02-13 11:10:14","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/2016\/02\/13\/themes\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"95","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.acmethemes.com\/themes\/"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":7,"name":"Links","slug":"links","term_group":0,"term_taxonomy_id":7,"taxonomy":"nav_menu","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":96,"post_title":"Supports","post_status":"publish","post_name":"supports","post_content":"","post_excerpt":"","post_parent":0,"menu_order":3,"post_date":"2016-02-13 11:10:14","post_date_gmt":"2016-02-13 11:10:14","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/2016\/02\/13\/supports\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"96","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.acmethemes.com\/supports\/"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":7,"name":"Links","slug":"links","term_group":0,"term_taxonomy_id":7,"taxonomy":"nav_menu","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":97,"post_title":"Contact","post_status":"publish","post_name":"contact","post_content":"","post_excerpt":"","post_parent":0,"menu_order":4,"post_date":"2016-02-13 11:10:14","post_date_gmt":"2016-02-13 11:10:14","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/2016\/02\/13\/contact\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"97","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.acmethemes.com\/contact\/"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":7,"name":"Links","slug":"links","term_group":0,"term_taxonomy_id":7,"taxonomy":"nav_menu","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":98,"post_title":"AcmeThemes","post_status":"publish","post_name":"acmethemes-2","post_content":"","post_excerpt":"","post_parent":0,"menu_order":1,"post_date":"2016-02-13 11:10:14","post_date_gmt":"2016-02-13 11:10:14","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/2016\/02\/13\/acmethemes-2\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"98","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.acmethemes.com\/"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":8,"name":"Links (2)","slug":"links-2","term_group":0,"term_taxonomy_id":8,"taxonomy":"nav_menu","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":99,"post_title":"Themes","post_status":"publish","post_name":"themes-2","post_content":"","post_excerpt":"","post_parent":0,"menu_order":2,"post_date":"2016-02-13 11:10:14","post_date_gmt":"2016-02-13 11:10:14","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/2016\/02\/13\/themes-2\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"99","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.acmethemes.com\/themes\/"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":8,"name":"Links (2)","slug":"links-2","term_group":0,"term_taxonomy_id":8,"taxonomy":"nav_menu","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":100,"post_title":"Supports","post_status":"publish","post_name":"supports-2","post_content":"","post_excerpt":"","post_parent":0,"menu_order":3,"post_date":"2016-02-13 11:10:14","post_date_gmt":"2016-02-13 11:10:14","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/2016\/02\/13\/supports-2\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"100","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.acmethemes.com\/supports\/"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":8,"name":"Links (2)","slug":"links-2","term_group":0,"term_taxonomy_id":8,"taxonomy":"nav_menu","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":101,"post_title":"Contact","post_status":"publish","post_name":"contact-2","post_content":"","post_excerpt":"","post_parent":0,"menu_order":4,"post_date":"2016-02-13 11:10:14","post_date_gmt":"2016-02-13 11:10:14","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/2016\/02\/13\/contact-2\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"101","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.acmethemes.com\/contact\/"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":8,"name":"Links (2)","slug":"links-2","term_group":0,"term_taxonomy_id":8,"taxonomy":"nav_menu","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":102,"post_title":"Features","post_status":"publish","post_name":"features","post_content":"","post_excerpt":"","post_parent":0,"menu_order":5,"post_date":"2016-02-13 11:10:14","post_date_gmt":"2016-02-13 11:10:14","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/2016\/02\/13\/features\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"102","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"#"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":9,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":9,"taxonomy":"nav_menu","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":18,"post_title":"Home-1","post_status":"publish","post_name":"home","post_content":"","post_excerpt":"","post_parent":0,"menu_order":2,"post_date":"2016-02-13 11:10:10","post_date_gmt":"2016-02-13 11:10:10","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/2016\/02\/13\/home\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"118","_menu_item_object_id":"18","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":9,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":9,"taxonomy":"nav_menu","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}}]}
includes/demo-data/acmeblogpro/demo-2/options.json ADDED
@@ -0,0 +1 @@
 
1
+ {"menu":{"primary":9},"options":{"blogname":"AcmeBlogPro","blogname-child":"AcmeBlogPro","blogdescription":"Just another AcmeBlog Pro site","blogdescription-child":"Just another AcmeBlog Pro site","posts_per_page":"10","posts_per_page-child":"10","date_format":"F j, Y","date_format-child":"F j, Y","time_format":"g:i a","time_format-child":"g:i a","show_on_front":"posts","show_on_front-child":"posts","thumbnail_size_w":"500","thumbnail_size_w-child":"500","thumbnail_size_h":"280","thumbnail_size_h-child":"280","thumbnail_crop":"1","thumbnail_crop-child":"1","medium_size_w":"690","medium_size_w-child":"690","medium_size_h":"400","medium_size_h-child":"400","avatar_default":"mystery","avatar_default-child":"mystery","large_size_w":"1080","large_size_w-child":"1080","large_size_h":"530","large_size_h-child":"530","page_for_posts":"0","page_for_posts-child":"0","page_on_front":"0","page_on_front-child":"0","medium_large_size_w":"0","medium_large_size_w-child":"0","medium_large_size_h":"0","medium_large_size_h-child":"0","theme_mods_acmeblogpro":{"0":false,"acmeblog_theme_options":{"acmeblog-slider-selection-from":"from-category","acmeblog-enable-feature":true,"acmeblog-slider-from-category":"3","acmeblog-feature-side-display-options":"bottom","acmeblog-feature-side-top-bottom-options":"post-3","acmeblog-feature-post-one":"9","acmeblog-feature-post-two":"12","acmeblog-feature-post-three":"15","acmeblog-default-layout":"fullwidth","acmeblog-disable-shadow":true,"acmeblog-footer-widgets-number":"4","acmeblog-facebook-url":"https:\/\/www.facebook.com\/acmethemes\/","acmeblog-twitter-url":"http:\/\/twitter.com\/acme_themes","acmeblog-linkedin-url":"https:\/\/www.linkedin.com\/in\/acmethemes","acmeblog-instagram-url":"https:\/\/www.instagram.com\/acmethemes\/","acmeblog-youtube-url":"https:\/\/www.youtube.com\/","acmeblog-google-plus-url":"https:\/\/plus.google.com\/","acmeblog-pinterest-url":"https:\/\/www.pinterest.com\/","acmeblog-flickr-url":"#","acmeblog-tumblr-url":"#","acmeblog-enable-social":true,"acmeblog-show-author-info":true,"acmeblog-enable-sticky-sidebar":true},"custom_css_post_id":-1},"theme_mods_acmeblogpro-child":{"0":false,"acmeblog_theme_options":{"acmeblog-slider-selection-from":"from-category","acmeblog-enable-feature":true,"acmeblog-slider-from-category":"3","acmeblog-feature-side-display-options":"bottom","acmeblog-feature-side-top-bottom-options":"post-3","acmeblog-feature-post-one":"9","acmeblog-feature-post-two":"12","acmeblog-feature-post-three":"15","acmeblog-default-layout":"fullwidth","acmeblog-disable-shadow":true,"acmeblog-footer-widgets-number":"4","acmeblog-facebook-url":"https:\/\/www.facebook.com\/acmethemes\/","acmeblog-twitter-url":"http:\/\/twitter.com\/acme_themes","acmeblog-linkedin-url":"https:\/\/www.linkedin.com\/in\/acmethemes","acmeblog-instagram-url":"https:\/\/www.instagram.com\/acmethemes\/","acmeblog-youtube-url":"https:\/\/www.youtube.com\/","acmeblog-google-plus-url":"https:\/\/plus.google.com\/","acmeblog-pinterest-url":"https:\/\/www.pinterest.com\/","acmeblog-flickr-url":"#","acmeblog-tumblr-url":"#","acmeblog-enable-social":true,"acmeblog-show-author-info":true,"acmeblog-enable-sticky-sidebar":true},"nav_menu_locations":{"primary":9},"custom_css_post_id":-1}}}
includes/demo-data/acmeblogpro/demo-2/screenshot.jpg ADDED
Binary file
includes/demo-data/acmeblogpro/demo-2/widgets.json ADDED
@@ -0,0 +1 @@
 
1
+ {"widget_positions":{"wp_inactive_widgets":[],"acmeblog-sidebar":["acmeblog_author-2","acmeblog_popular_posts-2","acmeblog_news_ticker-2","acmeblog_slider-2","acmeblog_tabbed-2","recent-posts-2","recent-comments-2","archives-2","categories-2","meta-2"],"acmeblog-sidebar-left":["acmeblog_ad-2","acmeblog_news_ticker-3","acmeblog_posts_col_pro-2","acmeblog_tabbed-3"],"footer-top-col-one":["categories-3"],"footer-top-col-two":["recent-posts-3"],"footer-top-col-three":["nav_menu-2"],"footer-top-col-four":["archives-3"],"array_version":3},"widget_options":{"acmeblog_author":{"2":{"acmeblog_author_title":"","acmeblog_author_image":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/wp-content\/uploads\/sites\/2\/2016\/01\/author.png","acmeblog_author_link":"http:\/\/www.acmethemes.com\/","acmeblog_author_short_disc":"<h3>AcmeThemes<\/h3>\r\nDetails About Awesome Writer Lorem Ipsum is simply dummy text of the printing and typesetting industry.","acmeblog_author_new_window":1},"_multiwidget":1},"acmeblog_popular_posts":{"2":{"acmeblog_cat_title":"Popular Posts","acmeblog_cat":"-1","acmeblog_enable_title_link":0,"acmeblog_enable_first_featured":1,"acmeblog_number":4,"acmeblog_column_number":3,"acmeblog_show_image":1,"acmeblog_show_cat":0,"acmeblog_show_date":1,"acmeblog_show_author":1,"acmeblog_show_comment":1,"acmeblog_content_words":0},"_multiwidget":1},"acmeblog_news_ticker":{"2":{"acmeblog_cat_title":"Recent Posts","acmeblog_cat":"-1","acmeblog_enable_title_link":0,"acmeblog_number":6,"acmeblog_column_number":3,"acmeblog_slide_mode":"vertical","acmeblog_show_image":1,"acmeblog_show_cat":0,"acmeblog_show_date":1,"acmeblog_show_author":1,"acmeblog_show_comment":1,"acmeblog_content_words":0,"acmeblog_slider_speed":12000},"3":{"acmeblog_cat_title":"Recent Posts","acmeblog_cat":"-1","acmeblog_enable_title_link":0,"acmeblog_number":6,"acmeblog_column_number":2,"acmeblog_slide_mode":"horizontal","acmeblog_show_image":1,"acmeblog_show_cat":0,"acmeblog_show_date":0,"acmeblog_show_author":0,"acmeblog_show_comment":0,"acmeblog_content_words":0,"acmeblog_slider_speed":12000},"_multiwidget":1},"acmeblog_slider":{"2":{"acmeblog_cat_title":"Slider","acmeblog_cat":"-1","acmeblog_number":2,"acmeblog_slider_speed":2000,"acmeblog_slider_pause":4000,"acmeblog_enable_title_link":0,"acmeblog_show_title":1,"acmeblog_show_desc":0,"acmeblog_show_cat":0,"acmeblog_show_date":0,"acmeblog_show_author":0,"acmeblog_show_comment":0,"acmeblog_slider_auto":1,"acmeblog_slider_controls":0},"_multiwidget":1},"acmeblog_tabbed":{"2":{"acmeblog_p_title":"Popular","acmeblog_p_cat":-1,"acmeblog_p_enable_first_featured":0,"acmeblog_p_number":5,"acmeblog_p_column_number":3,"acmeblog_p_show_image":1,"acmeblog_p_show_cat":0,"acmeblog_p_show_date":1,"acmeblog_p_show_author":1,"acmeblog_p_show_comment":0,"acmeblog_p_content_words":0,"acmeblog_popular_show":1,"acmeblog_r_title":"Recent","acmeblog_r_cat":-1,"acmeblog_r_enable_first_featured":0,"acmeblog_r_number":5,"acmeblog_r_column_number":3,"acmeblog_r_show_image":1,"acmeblog_r_show_cat":0,"acmeblog_r_show_date":1,"acmeblog_r_show_author":1,"acmeblog_r_show_comment":0,"acmeblog_r_content_words":0,"acmeblog_recent_show":0,"acmeblog_c_title":"Comments","acmeblog_c_number":5,"acmeblog_c_column_number":3,"acmeblog_c_show_avatar":1,"acmeblog_c_show_post_title":1,"acmeblog_c_show_date":1,"acmeblog_c_content_words":10,"acmeblog_comment_show":1},"3":{"acmeblog_p_title":"Popular","acmeblog_p_cat":-1,"acmeblog_p_enable_first_featured":0,"acmeblog_p_number":5,"acmeblog_p_column_number":3,"acmeblog_p_show_image":1,"acmeblog_p_show_cat":0,"acmeblog_p_show_date":1,"acmeblog_p_show_author":1,"acmeblog_p_show_comment":0,"acmeblog_p_content_words":0,"acmeblog_popular_show":0,"acmeblog_r_title":"Recent","acmeblog_r_cat":-1,"acmeblog_r_enable_first_featured":0,"acmeblog_r_number":5,"acmeblog_r_column_number":3,"acmeblog_r_show_image":1,"acmeblog_r_show_cat":0,"acmeblog_r_show_date":1,"acmeblog_r_show_author":1,"acmeblog_r_show_comment":0,"acmeblog_r_content_words":0,"acmeblog_recent_show":1,"acmeblog_c_title":"Comments","acmeblog_c_number":5,"acmeblog_c_column_number":3,"acmeblog_c_show_avatar":1,"acmeblog_c_show_post_title":1,"acmeblog_c_show_date":1,"acmeblog_c_content_words":10,"acmeblog_comment_show":1},"_multiwidget":1},"recent-posts":{"2":{"title":"","number":5},"3":{"title":"Recent Posts","number":5,"show_date":false},"_multiwidget":1},"recent-comments":{"2":{"title":"","number":5},"_multiwidget":1},"archives":{"2":{"title":"","count":0,"dropdown":0},"3":{"title":"Archives","count":0,"dropdown":0},"_multiwidget":1},"categories":{"2":{"title":"","count":0,"hierarchical":0,"dropdown":0},"3":{"title":"Categories","count":0,"hierarchical":0,"dropdown":0},"_multiwidget":1},"meta":{"2":{"title":""},"_multiwidget":1},"acmeblog_ad":{"2":{"acmeblog_ad_title":"Advertisement","acmeblog_ad_code":"","acmeblog_ad_image":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/wp-content\/uploads\/sites\/2\/2016\/01\/watches-1062994_1920.jpg","acmeblog_ad_link":"http:\/\/www.acmethemes.com\/themes\/acmeblogpro","acmeblog_ad_img_alt":"","acmeblog_ad_new_window":1,"acmeblog_ad_display_option":"image-only"},"_multiwidget":1},"acmeblog_posts_col_pro":{"2":{"acmeblog_cat_title":"Featured Posts","acmeblog_cat":"-1","acmeblog_enable_title_link":0,"acmeblog_enable_first_featured":0,"acmeblog_number":4,"acmeblog_column_number":3,"acmeblog_show_image":1,"acmeblog_show_cat":0,"acmeblog_show_date":0,"acmeblog_show_author":0,"acmeblog_show_comment":0,"acmeblog_content_words":0},"_multiwidget":1},"nav_menu":{"2":{"title":"Quick Links","nav_menu":7},"_multiwidget":1}}}
includes/demo-data/acmeblogpro/demo-3/content.json ADDED
@@ -0,0 +1 @@
 
1
+ {"attachment":[{"type_title":"Media","post_id":164,"post_title":"woocommerce-placeholder","post_status":"inherit","post_name":"woocommerce-placeholder","post_content":"","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2019-05-09 01:17:15","post_date_gmt":"2019-05-09 01:17:15","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2019\/05\/woocommerce-placeholder.png","post_mime_type":"image\/png","meta":{"_wp_attached_file":"woocommerce-placeholder.png","_wp_attachment_metadata":{"width":1200,"height":1200,"file":"woocommerce-placeholder.png","sizes":{"thumbnail":{"file":"woocommerce-placeholder-500x280.png","width":500,"height":280,"mime-type":"image\/png"},"medium":{"file":"woocommerce-placeholder-690x400.png","width":690,"height":400,"mime-type":"image\/png"},"large":{"file":"woocommerce-placeholder-840x480.png","width":840,"height":480,"mime-type":"image\/png"},"post-thumbnail":{"file":"woocommerce-placeholder-330x195.png","width":330,"height":195,"mime-type":"image\/png"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":93,"post_title":"Everest","post_status":"inherit","post_name":"everest","post_content":"","post_excerpt":"","post_parent":91,"menu_order":0,"post_date":"2016-02-13 10:47:38","post_date_gmt":"2016-02-13 10:47:38","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2016\/02\/Everest.png","post_mime_type":"image\/png","meta":{"_wp_attached_file":"2016\/02\/Everest.png","_wp_attachment_metadata":{"width":840,"height":480,"file":"2016\/02\/Everest.png","sizes":{"thumbnail":{"file":"Everest-500x280.png","width":500,"height":280,"mime-type":"image\/png"},"medium":{"file":"Everest-690x400.png","width":690,"height":400,"mime-type":"image\/png"},"shop_thumbnail":{"file":"Everest-180x180.png","width":180,"height":180,"mime-type":"image\/png"},"shop_catalog":{"file":"Everest-300x300.png","width":300,"height":300,"mime-type":"image\/png"},"shop_single":{"file":"Everest-600x480.png","width":600,"height":480,"mime-type":"image\/png"},"post-thumbnail":{"file":"Everest-330x195.png","width":330,"height":195,"mime-type":"image\/png"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":45,"post_title":"basketball-652459_1920","post_status":"inherit","post_name":"basketball-652459_1920","post_content":"","post_excerpt":"","post_parent":44,"menu_order":0,"post_date":"2016-01-03 16:22:25","post_date_gmt":"2016-01-03 16:22:25","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2016\/01\/basketball-652459_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/basketball-652459_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1420,"file":"2016\/01\/basketball-652459_1920.jpg","sizes":{"thumbnail":{"file":"basketball-652459_1920-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"basketball-652459_1920-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"basketball-652459_1920-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"basketball-652459_1920-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"basketball-652459_1920-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"basketball-652459_1920-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"basketball-652459_1920-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":42,"post_title":"watches-1062994_1920","post_status":"inherit","post_name":"watches-1062994_1920","post_content":"","post_excerpt":"","post_parent":41,"menu_order":0,"post_date":"2016-01-03 16:17:43","post_date_gmt":"2016-01-03 16:17:43","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2016\/01\/watches-1062994_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/watches-1062994_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1277,"file":"2016\/01\/watches-1062994_1920.jpg","sizes":{"thumbnail":{"file":"watches-1062994_1920-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"watches-1062994_1920-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"watches-1062994_1920-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"watches-1062994_1920-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"watches-1062994_1920-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"watches-1062994_1920-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"watches-1062994_1920-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":39,"post_title":"girls-685778_1280","post_status":"inherit","post_name":"girls-685778_1280","post_content":"","post_excerpt":"","post_parent":38,"menu_order":0,"post_date":"2016-01-03 16:13:48","post_date_gmt":"2016-01-03 16:13:48","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2016\/01\/girls-685778_1280.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/girls-685778_1280.jpg","_wp_attachment_metadata":{"width":1280,"height":853,"file":"2016\/01\/girls-685778_1280.jpg","sizes":{"thumbnail":{"file":"girls-685778_1280-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"girls-685778_1280-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"girls-685778_1280-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"girls-685778_1280-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"girls-685778_1280-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"girls-685778_1280-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"girls-685778_1280-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":36,"post_title":"computer-336628_1280","post_status":"inherit","post_name":"computer-336628_1280","post_content":"","post_excerpt":"","post_parent":35,"menu_order":0,"post_date":"2016-01-03 16:09:32","post_date_gmt":"2016-01-03 16:09:32","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2016\/01\/computer-336628_1280.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/computer-336628_1280.jpg","_wp_attachment_metadata":{"width":1280,"height":800,"file":"2016\/01\/computer-336628_1280.jpg","sizes":{"thumbnail":{"file":"computer-336628_1280-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"computer-336628_1280-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"computer-336628_1280-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"computer-336628_1280-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"computer-336628_1280-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"computer-336628_1280-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"computer-336628_1280-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":32,"post_title":"home-office-381229_1920","post_status":"inherit","post_name":"home-office-381229_1920","post_content":"","post_excerpt":"","post_parent":31,"menu_order":0,"post_date":"2016-01-03 16:06:35","post_date_gmt":"2016-01-03 16:06:35","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2016\/01\/home-office-381229_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/home-office-381229_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1271,"file":"2016\/01\/home-office-381229_1920.jpg","sizes":{"thumbnail":{"file":"home-office-381229_1920-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"home-office-381229_1920-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"home-office-381229_1920-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"home-office-381229_1920-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"home-office-381229_1920-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"home-office-381229_1920-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"home-office-381229_1920-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":29,"post_title":"diary-968592_1920","post_status":"inherit","post_name":"diary-968592_1920","post_content":"","post_excerpt":"","post_parent":28,"menu_order":0,"post_date":"2016-01-03 16:02:23","post_date_gmt":"2016-01-03 16:02:23","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2016\/01\/diary-968592_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/diary-968592_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1440,"file":"2016\/01\/diary-968592_1920.jpg","sizes":{"thumbnail":{"file":"diary-968592_1920-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"diary-968592_1920-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"diary-968592_1920-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"diary-968592_1920-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"diary-968592_1920-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"diary-968592_1920-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"diary-968592_1920-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":26,"post_title":"portrait-1072696_1920","post_status":"inherit","post_name":"portrait-1072696_1920","post_content":"","post_excerpt":"","post_parent":25,"menu_order":0,"post_date":"2016-01-03 15:55:26","post_date_gmt":"2016-01-03 15:55:26","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2016\/01\/portrait-1072696_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/portrait-1072696_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1324,"file":"2016\/01\/portrait-1072696_1920.jpg","sizes":{"thumbnail":{"file":"portrait-1072696_1920-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"portrait-1072696_1920-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"portrait-1072696_1920-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"portrait-1072696_1920-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"portrait-1072696_1920-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"portrait-1072696_1920-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"portrait-1072696_1920-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":16,"post_title":"coffee-569178_1920","post_status":"inherit","post_name":"coffee-569178_1920","post_content":"","post_excerpt":"","post_parent":15,"menu_order":0,"post_date":"2016-01-03 14:14:00","post_date_gmt":"2016-01-03 14:14:00","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2016\/01\/coffee-569178_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/coffee-569178_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1267,"file":"2016\/01\/coffee-569178_1920.jpg","sizes":{"thumbnail":{"file":"coffee-569178_1920-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"coffee-569178_1920-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"coffee-569178_1920-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"coffee-569178_1920-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"coffee-569178_1920-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"coffee-569178_1920-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"coffee-569178_1920-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":13,"post_title":"navigation-1048294_1920","post_status":"inherit","post_name":"navigation-1048294_1920","post_content":"","post_excerpt":"","post_parent":12,"menu_order":0,"post_date":"2016-01-03 14:11:20","post_date_gmt":"2016-01-03 14:11:20","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2016\/01\/navigation-1048294_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/navigation-1048294_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1440,"file":"2016\/01\/navigation-1048294_1920.jpg","sizes":{"thumbnail":{"file":"navigation-1048294_1920-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"navigation-1048294_1920-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"navigation-1048294_1920-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"navigation-1048294_1920-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"navigation-1048294_1920-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"navigation-1048294_1920-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"navigation-1048294_1920-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":11,"post_title":"pen-926313_1920","post_status":"inherit","post_name":"pen-926313_1920","post_content":"","post_excerpt":"","post_parent":105,"menu_order":0,"post_date":"2016-01-03 14:09:28","post_date_gmt":"2016-01-03 14:09:28","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2016\/01\/pen-926313_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/pen-926313_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1285,"file":"2016\/01\/pen-926313_1920.jpg","sizes":{"thumbnail":{"file":"pen-926313_1920-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"pen-926313_1920-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"pen-926313_1920-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"pen-926313_1920-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"pen-926313_1920-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"pen-926313_1920-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"pen-926313_1920-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":10,"post_title":"man-791049_1920","post_status":"inherit","post_name":"man-791049_1920","post_content":"","post_excerpt":"","post_parent":51,"menu_order":0,"post_date":"2016-01-03 14:05:27","post_date_gmt":"2016-01-03 14:05:27","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2016\/01\/man-791049_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/man-791049_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1280,"file":"2016\/01\/man-791049_1920.jpg","sizes":{"thumbnail":{"file":"man-791049_1920-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"man-791049_1920-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"man-791049_1920-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"man-791049_1920-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"man-791049_1920-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"man-791049_1920-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"man-791049_1920-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":148,"post_title":"cd_6_flat","post_status":"inherit","post_name":"cd_6_flat","post_content":"","post_excerpt":"","post_parent":158,"menu_order":0,"post_date":"2013-06-07 11:38:03","post_date_gmt":"2013-06-07 11:38:03","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/cd_6_flat.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/cd_6_flat.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/cd_6_flat.jpg","sizes":{"thumbnail":{"file":"cd_6_flat-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"cd_6_flat-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"cd_6_flat-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"cd_6_flat-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"cd_6_flat-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"cd_6_flat-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"cd_6_flat-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":147,"post_title":"cd_6_angle","post_status":"inherit","post_name":"cd_6_angle","post_content":"","post_excerpt":"","post_parent":158,"menu_order":0,"post_date":"2013-06-07 11:37:51","post_date_gmt":"2013-06-07 11:37:51","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/cd_6_angle.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/cd_6_angle.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/cd_6_angle.jpg","sizes":{"thumbnail":{"file":"cd_6_angle-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"cd_6_angle-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"cd_6_angle-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"cd_6_angle-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"cd_6_angle-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"cd_6_angle-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"cd_6_angle-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":146,"post_title":"cd_5_flat","post_status":"inherit","post_name":"cd_5_flat","post_content":"","post_excerpt":"","post_parent":157,"menu_order":0,"post_date":"2013-06-07 11:37:17","post_date_gmt":"2013-06-07 11:37:17","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/cd_5_flat.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/cd_5_flat.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/cd_5_flat.jpg","sizes":{"thumbnail":{"file":"cd_5_flat-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"cd_5_flat-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"cd_5_flat-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"cd_5_flat-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"cd_5_flat-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"cd_5_flat-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"cd_5_flat-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":145,"post_title":"cd_5_angle","post_status":"inherit","post_name":"cd_5_angle","post_content":"","post_excerpt":"","post_parent":157,"menu_order":0,"post_date":"2013-06-07 11:37:04","post_date_gmt":"2013-06-07 11:37:04","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/cd_5_angle.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/cd_5_angle.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/cd_5_angle.jpg","sizes":{"thumbnail":{"file":"cd_5_angle-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"cd_5_angle-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"cd_5_angle-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"cd_5_angle-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"cd_5_angle-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"cd_5_angle-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"cd_5_angle-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":144,"post_title":"cd_4_angle","post_status":"inherit","post_name":"cd_4_angle","post_content":"","post_excerpt":"","post_parent":156,"menu_order":0,"post_date":"2013-06-07 11:36:22","post_date_gmt":"2013-06-07 11:36:22","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/cd_4_angle.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/cd_4_angle.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/cd_4_angle.jpg","sizes":{"thumbnail":{"file":"cd_4_angle-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"cd_4_angle-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"cd_4_angle-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"cd_4_angle-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"cd_4_angle-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"cd_4_angle-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"cd_4_angle-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":143,"post_title":"cd_4_flat","post_status":"inherit","post_name":"cd_4_flat","post_content":"","post_excerpt":"","post_parent":156,"menu_order":0,"post_date":"2013-06-07 11:36:10","post_date_gmt":"2013-06-07 11:36:10","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/cd_4_flat.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/cd_4_flat.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/cd_4_flat.jpg","sizes":{"thumbnail":{"file":"cd_4_flat-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"cd_4_flat-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"cd_4_flat-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"cd_4_flat-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"cd_4_flat-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"cd_4_flat-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"cd_4_flat-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":92,"post_title":"cd_3_flat","post_status":"inherit","post_name":"cd_3_flat","post_content":"","post_excerpt":"","post_parent":90,"menu_order":0,"post_date":"2013-06-07 11:35:10","post_date_gmt":"2013-06-07 11:35:10","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/cd_3_flat.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/cd_3_flat.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/cd_3_flat.jpg","sizes":{"thumbnail":{"file":"cd_3_flat-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"cd_3_flat-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"cd_3_flat-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"cd_3_flat-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"cd_3_flat-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"cd_3_flat-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"cd_3_flat-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":142,"post_title":"cd_3_angle","post_status":"inherit","post_name":"cd_3_angle","post_content":"","post_excerpt":"","post_parent":90,"menu_order":0,"post_date":"2013-06-07 11:34:58","post_date_gmt":"2013-06-07 11:34:58","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/cd_3_angle.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/cd_3_angle.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/cd_3_angle.jpg","sizes":{"thumbnail":{"file":"cd_3_angle-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"cd_3_angle-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"cd_3_angle-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"cd_3_angle-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"cd_3_angle-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"cd_3_angle-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"cd_3_angle-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":89,"post_title":"cd_2_flat","post_status":"inherit","post_name":"cd_2_flat","post_content":"","post_excerpt":"","post_parent":87,"menu_order":0,"post_date":"2013-06-07 11:34:07","post_date_gmt":"2013-06-07 11:34:07","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/cd_2_flat.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/cd_2_flat.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/cd_2_flat.jpg","sizes":{"thumbnail":{"file":"cd_2_flat-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"cd_2_flat-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"cd_2_flat-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"cd_2_flat-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"cd_2_flat-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"cd_2_flat-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"cd_2_flat-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":88,"post_title":"cd_2_angle","post_status":"inherit","post_name":"cd_2_angle","post_content":"","post_excerpt":"","post_parent":87,"menu_order":0,"post_date":"2013-06-07 11:33:53","post_date_gmt":"2013-06-07 11:33:53","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/cd_2_angle.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/cd_2_angle.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/cd_2_angle.jpg","sizes":{"thumbnail":{"file":"cd_2_angle-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"cd_2_angle-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"cd_2_angle-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"cd_2_angle-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"cd_2_angle-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"cd_2_angle-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"cd_2_angle-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":85,"post_title":"cd_1_flat","post_status":"inherit","post_name":"cd_1_flat","post_content":"","post_excerpt":"","post_parent":83,"menu_order":0,"post_date":"2013-06-07 11:32:57","post_date_gmt":"2013-06-07 11:32:57","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/cd_1_flat.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/cd_1_flat.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/cd_1_flat.jpg","sizes":{"thumbnail":{"file":"cd_1_flat-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"cd_1_flat-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"cd_1_flat-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"cd_1_flat-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"cd_1_flat-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"cd_1_flat-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"cd_1_flat-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":84,"post_title":"cd_1_angle","post_status":"inherit","post_name":"cd_1_angle","post_content":"","post_excerpt":"","post_parent":83,"menu_order":0,"post_date":"2013-06-07 11:32:44","post_date_gmt":"2013-06-07 11:32:44","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/cd_1_angle.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/cd_1_angle.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/cd_1_angle.jpg","sizes":{"thumbnail":{"file":"cd_1_angle-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"cd_1_angle-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"cd_1_angle-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"cd_1_angle-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"cd_1_angle-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"cd_1_angle-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"cd_1_angle-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":81,"post_title":"Poster_5_flat","post_status":"inherit","post_name":"poster_5_flat","post_content":"","post_excerpt":"","post_parent":79,"menu_order":0,"post_date":"2013-06-07 11:29:37","post_date_gmt":"2013-06-07 11:29:37","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/Poster_5_flat.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/Poster_5_flat.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/Poster_5_flat.jpg","sizes":{"thumbnail":{"file":"Poster_5_flat-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"Poster_5_flat-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"Poster_5_flat-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"Poster_5_flat-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"Poster_5_flat-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"Poster_5_flat-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"Poster_5_flat-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":80,"post_title":"poster_5_up","post_status":"inherit","post_name":"poster_5_up","post_content":"","post_excerpt":"","post_parent":79,"menu_order":0,"post_date":"2013-06-07 11:29:26","post_date_gmt":"2013-06-07 11:29:26","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/poster_5_up.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/poster_5_up.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/poster_5_up.jpg","sizes":{"thumbnail":{"file":"poster_5_up-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"poster_5_up-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"poster_5_up-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"poster_5_up-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"poster_5_up-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"poster_5_up-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"poster_5_up-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":78,"post_title":"Poster_4_flat","post_status":"inherit","post_name":"poster_4_flat","post_content":"","post_excerpt":"","post_parent":76,"menu_order":0,"post_date":"2013-06-07 11:28:20","post_date_gmt":"2013-06-07 11:28:20","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/Poster_4_flat.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/Poster_4_flat.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/Poster_4_flat.jpg","sizes":{"thumbnail":{"file":"Poster_4_flat-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"Poster_4_flat-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"Poster_4_flat-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"Poster_4_flat-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"Poster_4_flat-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"Poster_4_flat-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"Poster_4_flat-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":77,"post_title":"poster_4_up","post_status":"inherit","post_name":"poster_4_up","post_content":"","post_excerpt":"","post_parent":76,"menu_order":0,"post_date":"2013-06-07 11:28:07","post_date_gmt":"2013-06-07 11:28:07","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/poster_4_up.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/poster_4_up.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/poster_4_up.jpg","sizes":{"thumbnail":{"file":"poster_4_up-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"poster_4_up-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"poster_4_up-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"poster_4_up-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"poster_4_up-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"poster_4_up-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"poster_4_up-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":75,"post_title":"Poster_3_flat","post_status":"inherit","post_name":"poster_3_flat","post_content":"","post_excerpt":"","post_parent":73,"menu_order":0,"post_date":"2013-06-07 11:27:31","post_date_gmt":"2013-06-07 11:27:31","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/Poster_3_flat.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/Poster_3_flat.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/Poster_3_flat.jpg","sizes":{"thumbnail":{"file":"Poster_3_flat-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"Poster_3_flat-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"Poster_3_flat-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"Poster_3_flat-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"Poster_3_flat-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"Poster_3_flat-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"Poster_3_flat-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":74,"post_title":"poster_3_up","post_status":"inherit","post_name":"poster_3_up","post_content":"","post_excerpt":"","post_parent":73,"menu_order":0,"post_date":"2013-06-07 11:26:47","post_date_gmt":"2013-06-07 11:26:47","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/poster_3_up.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/poster_3_up.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/poster_3_up.jpg","sizes":{"thumbnail":{"file":"poster_3_up-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"poster_3_up-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"poster_3_up-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"poster_3_up-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"poster_3_up-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"poster_3_up-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"poster_3_up-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":72,"post_title":"Poster_2_flat","post_status":"inherit","post_name":"poster_2_flat","post_content":"","post_excerpt":"","post_parent":70,"menu_order":0,"post_date":"2013-06-07 11:24:47","post_date_gmt":"2013-06-07 11:24:47","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/Poster_2_flat.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/Poster_2_flat.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/Poster_2_flat.jpg","sizes":{"thumbnail":{"file":"Poster_2_flat-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"Poster_2_flat-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"Poster_2_flat-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"Poster_2_flat-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"Poster_2_flat-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"Poster_2_flat-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"Poster_2_flat-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":71,"post_title":"poster_2_up","post_status":"inherit","post_name":"poster_2_up","post_content":"","post_excerpt":"","post_parent":70,"menu_order":0,"post_date":"2013-06-07 11:24:19","post_date_gmt":"2013-06-07 11:24:19","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/poster_2_up.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/poster_2_up.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/poster_2_up.jpg","sizes":{"thumbnail":{"file":"poster_2_up-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"poster_2_up-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"poster_2_up-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"poster_2_up-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"poster_2_up-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"poster_2_up-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"poster_2_up-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":69,"post_title":"Poster_1_flat","post_status":"inherit","post_name":"poster_1_flat","post_content":"","post_excerpt":"","post_parent":67,"menu_order":0,"post_date":"2013-06-07 11:22:05","post_date_gmt":"2013-06-07 11:22:05","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/Poster_1_flat.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/Poster_1_flat.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/Poster_1_flat.jpg","sizes":{"thumbnail":{"file":"Poster_1_flat-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"Poster_1_flat-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"Poster_1_flat-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"Poster_1_flat-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"Poster_1_flat-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"Poster_1_flat-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"Poster_1_flat-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":68,"post_title":"poster_1_up","post_status":"inherit","post_name":"poster_1_up","post_content":"","post_excerpt":"","post_parent":67,"menu_order":0,"post_date":"2013-06-07 11:21:34","post_date_gmt":"2013-06-07 11:21:34","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/poster_1_up.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/poster_1_up.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/poster_1_up.jpg","sizes":{"thumbnail":{"file":"poster_1_up-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"poster_1_up-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"poster_1_up-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"poster_1_up-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"poster_1_up-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"poster_1_up-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"poster_1_up-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":62,"post_title":"hoodie_6_back","post_status":"inherit","post_name":"hoodie_6_back","post_content":"","post_excerpt":"","post_parent":60,"menu_order":0,"post_date":"2013-06-07 11:12:16","post_date_gmt":"2013-06-07 11:12:16","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/hoodie_6_back.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/hoodie_6_back.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/hoodie_6_back.jpg","sizes":{"thumbnail":{"file":"hoodie_6_back-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"hoodie_6_back-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"hoodie_6_back-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"hoodie_6_back-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"hoodie_6_back-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"hoodie_6_back-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"hoodie_6_back-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":141,"post_title":"hoodie_6_front","post_status":"inherit","post_name":"hoodie_6_front","post_content":"","post_excerpt":"","post_parent":60,"menu_order":0,"post_date":"2013-06-07 11:12:02","post_date_gmt":"2013-06-07 11:12:02","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/hoodie_6_front.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/hoodie_6_front.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/hoodie_6_front.jpg","sizes":{"thumbnail":{"file":"hoodie_6_front-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"hoodie_6_front-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"hoodie_6_front-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"hoodie_6_front-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"hoodie_6_front-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"hoodie_6_front-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"hoodie_6_front-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":58,"post_title":"hoodie_5_back","post_status":"inherit","post_name":"hoodie_5_back","post_content":"","post_excerpt":"","post_parent":153,"menu_order":0,"post_date":"2013-06-07 11:07:10","post_date_gmt":"2013-06-07 11:07:10","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/hoodie_5_back.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/hoodie_5_back.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/hoodie_5_back.jpg","sizes":{"thumbnail":{"file":"hoodie_5_back-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"hoodie_5_back-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"hoodie_5_back-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"hoodie_5_back-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"hoodie_5_back-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"hoodie_5_back-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"hoodie_5_back-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":57,"post_title":"hoodie_5_front","post_status":"inherit","post_name":"hoodie_5_front","post_content":"","post_excerpt":"","post_parent":153,"menu_order":0,"post_date":"2013-06-07 11:06:32","post_date_gmt":"2013-06-07 11:06:32","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/hoodie_5_front.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/hoodie_5_front.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/hoodie_5_front.jpg","sizes":{"thumbnail":{"file":"hoodie_5_front-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"hoodie_5_front-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"hoodie_5_front-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"hoodie_5_front-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"hoodie_5_front-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"hoodie_5_front-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"hoodie_5_front-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":55,"post_title":"hoodie_4_back","post_status":"inherit","post_name":"hoodie_4_back","post_content":"","post_excerpt":"","post_parent":53,"menu_order":0,"post_date":"2013-06-07 11:05:13","post_date_gmt":"2013-06-07 11:05:13","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/hoodie_4_back.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/hoodie_4_back.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/hoodie_4_back.jpg","sizes":{"thumbnail":{"file":"hoodie_4_back-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"hoodie_4_back-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"hoodie_4_back-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"hoodie_4_back-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"hoodie_4_back-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"hoodie_4_back-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"hoodie_4_back-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":54,"post_title":"hoodie_4_front","post_status":"inherit","post_name":"hoodie_4_front","post_content":"","post_excerpt":"","post_parent":53,"menu_order":0,"post_date":"2013-06-07 11:05:03","post_date_gmt":"2013-06-07 11:05:03","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/hoodie_4_front.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/hoodie_4_front.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/hoodie_4_front.jpg","sizes":{"thumbnail":{"file":"hoodie_4_front-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"hoodie_4_front-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"hoodie_4_front-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"hoodie_4_front-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"hoodie_4_front-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"hoodie_4_front-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"hoodie_4_front-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":52,"post_title":"hoodie_3_back","post_status":"inherit","post_name":"hoodie_3_back","post_content":"","post_excerpt":"","post_parent":50,"menu_order":0,"post_date":"2013-06-07 11:03:50","post_date_gmt":"2013-06-07 11:03:50","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/hoodie_3_back.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/hoodie_3_back.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/hoodie_3_back.jpg","sizes":{"thumbnail":{"file":"hoodie_3_back-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"hoodie_3_back-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"hoodie_3_back-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"hoodie_3_back-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"hoodie_3_back-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"hoodie_3_back-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"hoodie_3_back-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":140,"post_title":"hoodie_3_front","post_status":"inherit","post_name":"hoodie_3_front","post_content":"","post_excerpt":"","post_parent":50,"menu_order":0,"post_date":"2013-06-07 11:03:16","post_date_gmt":"2013-06-07 11:03:16","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/hoodie_3_front.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/hoodie_3_front.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/hoodie_3_front.jpg","sizes":{"thumbnail":{"file":"hoodie_3_front-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"hoodie_3_front-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"hoodie_3_front-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"hoodie_3_front-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"hoodie_3_front-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"hoodie_3_front-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"hoodie_3_front-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":49,"post_title":"hoodie_2_back","post_status":"inherit","post_name":"hoodie_2_back","post_content":"","post_excerpt":"","post_parent":152,"menu_order":0,"post_date":"2013-06-07 11:02:26","post_date_gmt":"2013-06-07 11:02:26","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/hoodie_2_back.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/hoodie_2_back.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/hoodie_2_back.jpg","sizes":{"thumbnail":{"file":"hoodie_2_back-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"hoodie_2_back-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"hoodie_2_back-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"hoodie_2_back-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"hoodie_2_back-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"hoodie_2_back-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"hoodie_2_back-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":48,"post_title":"hoodie_2_front","post_status":"inherit","post_name":"hoodie_2_front","post_content":"","post_excerpt":"","post_parent":152,"menu_order":0,"post_date":"2013-06-07 11:01:23","post_date_gmt":"2013-06-07 11:01:23","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/hoodie_2_front.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/hoodie_2_front.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/hoodie_2_front.jpg","sizes":{"thumbnail":{"file":"hoodie_2_front-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"hoodie_2_front-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"hoodie_2_front-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"hoodie_2_front-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"hoodie_2_front-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"hoodie_2_front-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"hoodie_2_front-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":139,"post_title":"hoodie_1_front","post_status":"inherit","post_name":"hoodie_1_front","post_content":"","post_excerpt":"","post_parent":40,"menu_order":0,"post_date":"2013-06-07 11:00:01","post_date_gmt":"2013-06-07 11:00:01","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/hoodie_1_front.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/hoodie_1_front.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/hoodie_1_front.jpg","sizes":{"thumbnail":{"file":"hoodie_1_front-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"hoodie_1_front-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"hoodie_1_front-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"hoodie_1_front-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"hoodie_1_front-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"hoodie_1_front-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"hoodie_1_front-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":138,"post_title":"hoodie_1_back","post_status":"inherit","post_name":"hoodie_1_back","post_content":"","post_excerpt":"","post_parent":40,"menu_order":0,"post_date":"2013-06-07 11:00:00","post_date_gmt":"2013-06-07 11:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/hoodie_1_back.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/hoodie_1_back.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/hoodie_1_back.jpg","sizes":{"thumbnail":{"file":"hoodie_1_back-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"hoodie_1_back-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"hoodie_1_back-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"hoodie_1_back-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"hoodie_1_back-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"hoodie_1_back-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"hoodie_1_back-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":137,"post_title":"hoodie_7_back","post_status":"inherit","post_name":"hoodie_7_back","post_content":"","post_excerpt":"","post_parent":40,"menu_order":0,"post_date":"2013-06-07 10:59:54","post_date_gmt":"2013-06-07 10:59:54","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/hoodie_7_back.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/hoodie_7_back.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/hoodie_7_back.jpg","sizes":{"thumbnail":{"file":"hoodie_7_back-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"hoodie_7_back-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"hoodie_7_back-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"hoodie_7_back-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"hoodie_7_back-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"hoodie_7_back-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"hoodie_7_back-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":43,"post_title":"hoodie_7_front","post_status":"inherit","post_name":"hoodie_7_front","post_content":"","post_excerpt":"","post_parent":40,"menu_order":0,"post_date":"2013-06-07 10:59:40","post_date_gmt":"2013-06-07 10:59:40","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/hoodie_7_front.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/hoodie_7_front.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/hoodie_7_front.jpg","sizes":{"thumbnail":{"file":"hoodie_7_front-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"hoodie_7_front-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"hoodie_7_front-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"hoodie_7_front-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"hoodie_7_front-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"hoodie_7_front-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"hoodie_7_front-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":136,"post_title":"T_7_back","post_status":"inherit","post_name":"t_7_back","post_content":"","post_excerpt":"","post_parent":37,"menu_order":0,"post_date":"2013-06-07 10:53:29","post_date_gmt":"2013-06-07 10:53:29","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/T_7_back.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/T_7_back.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/T_7_back.jpg","sizes":{"thumbnail":{"file":"T_7_back-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"T_7_back-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"T_7_back-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"T_7_back-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"T_7_back-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"T_7_back-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"T_7_back-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":135,"post_title":"T_7_front","post_status":"inherit","post_name":"t_7_front","post_content":"","post_excerpt":"","post_parent":37,"menu_order":0,"post_date":"2013-06-07 10:52:55","post_date_gmt":"2013-06-07 10:52:55","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/T_7_front.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/T_7_front.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/T_7_front.jpg","sizes":{"thumbnail":{"file":"T_7_front-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"T_7_front-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"T_7_front-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"T_7_front-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"T_7_front-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"T_7_front-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"T_7_front-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":134,"post_title":"T_6_back","post_status":"inherit","post_name":"t_6_back","post_content":"","post_excerpt":"","post_parent":34,"menu_order":0,"post_date":"2013-06-07 10:52:02","post_date_gmt":"2013-06-07 10:52:02","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/T_6_back.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/T_6_back.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/T_6_back.jpg","sizes":{"thumbnail":{"file":"T_6_back-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"T_6_back-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"T_6_back-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"T_6_back-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"T_6_back-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"T_6_back-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"T_6_back-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":133,"post_title":"T_6_front","post_status":"inherit","post_name":"t_6_front","post_content":"","post_excerpt":"","post_parent":34,"menu_order":0,"post_date":"2013-06-07 10:51:51","post_date_gmt":"2013-06-07 10:51:51","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/T_6_front.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/T_6_front.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/T_6_front.jpg","sizes":{"thumbnail":{"file":"T_6_front-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"T_6_front-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"T_6_front-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"T_6_front-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"T_6_front-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"T_6_front-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"T_6_front-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":33,"post_title":"T_5_back","post_status":"inherit","post_name":"t_5_back","post_content":"","post_excerpt":"","post_parent":151,"menu_order":0,"post_date":"2013-06-07 10:49:23","post_date_gmt":"2013-06-07 10:49:23","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/T_5_back.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/T_5_back.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/T_5_back.jpg","sizes":{"thumbnail":{"file":"T_5_back-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"T_5_back-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"T_5_back-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"T_5_back-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"T_5_back-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"T_5_back-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"T_5_back-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":132,"post_title":"T_5_front","post_status":"inherit","post_name":"t_5_front","post_content":"","post_excerpt":"","post_parent":151,"menu_order":0,"post_date":"2013-06-07 10:49:13","post_date_gmt":"2013-06-07 10:49:13","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/T_5_front.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/T_5_front.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/T_5_front.jpg","sizes":{"thumbnail":{"file":"T_5_front-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"T_5_front-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"T_5_front-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"T_5_front-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"T_5_front-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"T_5_front-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"T_5_front-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":131,"post_title":"T_4_front","post_status":"inherit","post_name":"t_4_front-2","post_content":"","post_excerpt":"","post_parent":22,"menu_order":0,"post_date":"2013-06-07 10:45:30","post_date_gmt":"2013-06-07 10:45:30","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/T_4_front1.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/T_4_front1.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/T_4_front1.jpg","sizes":{"thumbnail":{"file":"T_4_front1-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"T_4_front1-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"T_4_front1-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"T_4_front1-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"T_4_front1-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"T_4_front1-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"T_4_front1-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":130,"post_title":"T_4_back","post_status":"inherit","post_name":"t_4_back","post_content":"","post_excerpt":"","post_parent":22,"menu_order":0,"post_date":"2013-06-07 10:45:29","post_date_gmt":"2013-06-07 10:45:29","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/T_4_back.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/T_4_back.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/T_4_back.jpg","sizes":{"thumbnail":{"file":"T_4_back-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"T_4_back-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"T_4_back-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"T_4_back-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"T_4_back-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"T_4_back-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"T_4_back-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":27,"post_title":"T_3_front","post_status":"inherit","post_name":"t_3_front","post_content":"","post_excerpt":"","post_parent":22,"menu_order":0,"post_date":"2013-06-07 10:45:27","post_date_gmt":"2013-06-07 10:45:27","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/T_3_front.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/T_3_front.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/T_3_front.jpg","sizes":{"thumbnail":{"file":"T_3_front-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"T_3_front-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"T_3_front-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"T_3_front-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"T_3_front-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"T_3_front-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"T_3_front-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":129,"post_title":"T_3_back","post_status":"inherit","post_name":"t_3_back","post_content":"","post_excerpt":"","post_parent":22,"menu_order":0,"post_date":"2013-06-07 10:45:26","post_date_gmt":"2013-06-07 10:45:26","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/T_3_back.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/T_3_back.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/T_3_back.jpg","sizes":{"thumbnail":{"file":"T_3_back-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"T_3_back-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"T_3_back-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"T_3_back-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"T_3_back-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"T_3_back-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"T_3_back-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":128,"post_title":"T_4_front","post_status":"inherit","post_name":"t_4_front","post_content":"","post_excerpt":"","post_parent":22,"menu_order":0,"post_date":"2013-06-07 10:45:14","post_date_gmt":"2013-06-07 10:45:14","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/T_4_front.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/T_4_front.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/T_4_front.jpg","sizes":{"thumbnail":{"file":"T_4_front-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"T_4_front-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"T_4_front-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"T_4_front-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"T_4_front-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"T_4_front-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"T_4_front-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":127,"post_title":"T_2_back","post_status":"inherit","post_name":"t_2_back","post_content":"","post_excerpt":"","post_parent":150,"menu_order":0,"post_date":"2013-06-07 10:41:34","post_date_gmt":"2013-06-07 10:41:34","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/T_2_back.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/T_2_back.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/T_2_back.jpg","sizes":{"thumbnail":{"file":"T_2_back-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"T_2_back-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"T_2_back-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"T_2_back-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"T_2_back-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"T_2_back-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"T_2_back-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":20,"post_title":"T_2_front","post_status":"inherit","post_name":"t_2_front","post_content":"","post_excerpt":"","post_parent":150,"menu_order":0,"post_date":"2013-06-07 10:41:23","post_date_gmt":"2013-06-07 10:41:23","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/T_2_front.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/T_2_front.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/T_2_front.jpg","sizes":{"thumbnail":{"file":"T_2_front-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"T_2_front-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"T_2_front-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"T_2_front-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"T_2_front-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"T_2_front-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"T_2_front-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":126,"post_title":"T_1_back","post_status":"inherit","post_name":"t_1_back","post_content":"","post_excerpt":"","post_parent":149,"menu_order":0,"post_date":"2013-06-07 10:35:39","post_date_gmt":"2013-06-07 10:35:39","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/T_1_back.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/T_1_back.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/T_1_back.jpg","sizes":{"thumbnail":{"file":"T_1_back-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"T_1_back-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"T_1_back-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"T_1_back-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"T_1_back-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"T_1_back-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"T_1_back-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Media","post_id":125,"post_title":"T_1_front","post_status":"inherit","post_name":"t_1_front","post_content":"","post_excerpt":"","post_parent":149,"menu_order":0,"post_date":"2013-06-07 10:35:28","post_date_gmt":"2013-06-07 10:35:28","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/wp-content\/uploads\/sites\/3\/2013\/06\/T_1_front.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2013\/06\/T_1_front.jpg","_wp_attachment_metadata":{"width":1000,"height":1000,"file":"2013\/06\/T_1_front.jpg","sizes":{"thumbnail":{"file":"T_1_front-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"T_1_front-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"T_1_front-840x480.jpg","width":840,"height":480,"mime-type":"image\/jpeg"},"shop_thumbnail":{"file":"T_1_front-180x180.jpg","width":180,"height":180,"mime-type":"image\/jpeg"},"shop_catalog":{"file":"T_1_front-300x300.jpg","width":300,"height":300,"mime-type":"image\/jpeg"},"shop_single":{"file":"T_1_front-600x600.jpg","width":600,"height":600,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"T_1_front-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}}],"post":[{"type_title":"Posts","post_id":38,"post_title":"Love your best friends","post_status":"publish","post_name":"love-your-best-friends","post_content":"<strong>Lorem Ipsum<\/strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\n<strong>Lorem Ipsum<\/strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\n<strong>Lorem Ipsum<\/strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 16:25:40","post_date_gmt":"2016-01-03 16:25:40","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=38","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"39","acmeblog_post_views_count":"545","acmeblog_sidebar_layout":"default-sidebar","acmeblog-related-posts-display":"left-related-posts","acmeblog-related-posts-show-image":"1","acmeblog-related-posts-first-featured":"0","acmeblog-related-posts-show-categories":"1","acmeblog-related-posts-show-date":"1","acmeblog-related-posts-show-author":"1","acmeblog-related-posts-show-comments":"1","acmeblog-related-posts-number":"3","acmeblog-related-posts-content-words":"9","acmeblog-related-title":"Related posts","acmeblog-related-posts-column-number":"3","acmeblog_replace_featured_image":"","acmeblog_video_autoplay":""},"terms":{"category":[{"term_id":6,"name":"Entertainment","slug":"entertainment","term_group":0,"term_taxonomy_id":6,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]},{"term_id":8,"name":"Sports","slug":"sports","term_group":0,"term_taxonomy_id":8,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Posts","post_id":41,"post_title":"Watches, Fashion Trends","post_status":"publish","post_name":"watches-fashion-trends","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 16:23:53","post_date_gmt":"2016-01-03 16:23:53","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=41","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"42","acmeblog_post_views_count":"496","acmeblog_sidebar_layout":"default-sidebar","acmeblog-related-posts-display":"right-related-posts","acmeblog-related-posts-show-image":"1","acmeblog-related-posts-first-featured":"0","acmeblog-related-posts-show-categories":"1","acmeblog-related-posts-show-date":"1","acmeblog-related-posts-show-author":"1","acmeblog-related-posts-show-comments":"1","acmeblog-related-posts-number":"3","acmeblog-related-posts-content-words":"9","acmeblog-related-title":"Related posts","acmeblog-related-posts-column-number":"3","acmeblog_replace_featured_image":"","acmeblog_video_autoplay":""},"terms":{"category":[{"term_id":6,"name":"Entertainment","slug":"entertainment","term_group":0,"term_taxonomy_id":6,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]},{"term_id":8,"name":"Sports","slug":"sports","term_group":0,"term_taxonomy_id":8,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Posts","post_id":44,"post_title":"Winner Reaction","post_status":"publish","post_name":"winner-reaction","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 16:22:47","post_date_gmt":"2016-01-03 16:22:47","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=44","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"45","acmeblog_post_views_count":"487","acmeblog_sidebar_layout":"default-sidebar","acmeblog-related-posts-display":"below-related-posts","acmeblog-related-posts-show-image":"1","acmeblog-related-posts-first-featured":"1","acmeblog-related-posts-show-categories":"1","acmeblog-related-posts-show-date":"1","acmeblog-related-posts-show-author":"1","acmeblog-related-posts-show-comments":"1","acmeblog-related-posts-number":"4","acmeblog-related-posts-content-words":"9","acmeblog-related-title":"Related posts","acmeblog-related-posts-column-number":"3","acmeblog_replace_featured_image":"","acmeblog_video_autoplay":""},"terms":{"category":[{"term_id":6,"name":"Entertainment","slug":"entertainment","term_group":0,"term_taxonomy_id":6,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]},{"term_id":8,"name":"Sports","slug":"sports","term_group":0,"term_taxonomy_id":8,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Posts","post_id":35,"post_title":"Working is fun","post_status":"publish","post_name":"working-is-fun","post_content":"<strong>Lorem Ipsum<\/strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\n<strong>Lorem Ipsum<\/strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\n<strong>Lorem Ipsum<\/strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 16:09:39","post_date_gmt":"2016-01-03 16:09:39","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=35","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"36","acmeblog_post_views_count":"403"},"terms":{"category":[{"term_id":9,"name":"Technology","slug":"technology","term_group":0,"term_taxonomy_id":9,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]},{"term_id":10,"name":"Travel","slug":"travel","term_group":0,"term_taxonomy_id":10,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Posts","post_id":31,"post_title":"Office Work","post_status":"publish","post_name":"office-work","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 16:07:19","post_date_gmt":"2016-01-03 16:07:19","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=31","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"32","acmeblog_post_views_count":"249"},"terms":{"category":[{"term_id":9,"name":"Technology","slug":"technology","term_group":0,"term_taxonomy_id":9,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]},{"term_id":10,"name":"Travel","slug":"travel","term_group":0,"term_taxonomy_id":10,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Posts","post_id":91,"post_title":"Video Post","post_status":"publish","post_name":"video-post","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-02 10:38:18","post_date_gmt":"2016-01-02 10:38:18","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/?p=91","post_mime_type":"","meta":{"_edit_last":"1","acmeblog_sidebar_layout":"default-sidebar","acmeblog-related-posts-display":"default-related-posts","acmeblog-related-posts-show-image":"1","acmeblog-related-posts-first-featured":"0","acmeblog-related-posts-show-categories":"1","acmeblog-related-posts-show-date":"1","acmeblog-related-posts-show-author":"1","acmeblog-related-posts-show-comments":"1","acmeblog-related-posts-number":"3","acmeblog-related-posts-content-words":"9","acmeblog-related-title":"Related posts","acmeblog-related-posts-column-number":"3","acmeblog_replace_featured_image":"1","acmeblog_video_autoplay":"1","_thumbnail_id":"93","acmeblog_video_url":"https:\/\/www.youtube.com\/embed\/79Q2rrQlPW4","acmeblog_post_views_count":"411"},"terms":{"category":[{"term_id":6,"name":"Entertainment","slug":"entertainment","term_group":0,"term_taxonomy_id":6,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]},{"term_id":9,"name":"Technology","slug":"technology","term_group":0,"term_taxonomy_id":9,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]},{"term_id":10,"name":"Travel","slug":"travel","term_group":0,"term_taxonomy_id":10,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Posts","post_id":51,"post_title":"Reading touchscreen blog","post_status":"publish","post_name":"reading-touchscreen-blog","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2015-12-19 14:12:42","post_date_gmt":"2015-12-19 14:12:42","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=6","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"10","acmeblog_post_views_count":"448","acmeblog_sidebar_layout":"right-sidebar","acmeblog-related-posts-display":"default-related-posts","acmeblog-related-posts-show-image":"1","acmeblog-related-posts-first-featured":"1","acmeblog-related-posts-show-categories":"1","acmeblog-related-posts-show-date":"1","acmeblog-related-posts-show-author":"1","acmeblog-related-posts-show-comments":"1","acmeblog-related-posts-number":"3","acmeblog-related-posts-content-words":"9","acmeblog-related-title":"Related posts","acmeblog-related-posts-column-number":"3","acmeblog_replace_featured_image":"","acmeblog_video_autoplay":""},"terms":{"category":[{"term_id":7,"name":"Featured","slug":"featured","term_group":0,"term_taxonomy_id":7,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Posts","post_id":12,"post_title":"GPS Car","post_status":"publish","post_name":"gps-car","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2015-12-18 14:11:33","post_date_gmt":"2015-12-18 14:11:33","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=12","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"13","acmeblog_post_views_count":"431","acmeblog_sidebar_layout":"left-sidebar","acmeblog-related-posts-display":"default-related-posts","acmeblog-related-posts-show-image":"1","acmeblog-related-posts-first-featured":"0","acmeblog-related-posts-show-categories":"1","acmeblog-related-posts-show-date":"1","acmeblog-related-posts-show-author":"1","acmeblog-related-posts-show-comments":"1","acmeblog-related-posts-number":"3","acmeblog-related-posts-content-words":"9","acmeblog-related-title":"Related posts","acmeblog-related-posts-column-number":"3","acmeblog_replace_featured_image":"","acmeblog_video_autoplay":""},"terms":{"category":[{"term_id":7,"name":"Featured","slug":"featured","term_group":0,"term_taxonomy_id":7,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]},{"term_id":8,"name":"Sports","slug":"sports","term_group":0,"term_taxonomy_id":8,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Posts","post_id":105,"post_title":"Pen Tablet","post_status":"publish","post_name":"pen-tablet","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2015-12-17 14:09:40","post_date_gmt":"2015-12-17 14:09:40","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=9","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"11","acmeblog_post_views_count":"439","acmeblog_sidebar_layout":"both-sidebar","acmeblog-related-posts-display":"default-related-posts","acmeblog-related-posts-show-image":"1","acmeblog-related-posts-first-featured":"0","acmeblog-related-posts-show-categories":"1","acmeblog-related-posts-show-date":"1","acmeblog-related-posts-show-author":"1","acmeblog-related-posts-show-comments":"1","acmeblog-related-posts-number":"3","acmeblog-related-posts-content-words":"9","acmeblog-related-title":"Related posts","acmeblog-related-posts-column-number":"3","acmeblog_replace_featured_image":"","acmeblog_video_autoplay":""},"terms":{"category":[{"term_id":7,"name":"Featured","slug":"featured","term_group":0,"term_taxonomy_id":7,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]},{"term_id":9,"name":"Technology","slug":"technology","term_group":0,"term_taxonomy_id":9,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Posts","post_id":15,"post_title":"Coffee Time","post_status":"publish","post_name":"coffee-time","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2015-11-03 14:15:32","post_date_gmt":"2015-11-03 14:15:32","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=15","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"16","acmeblog_post_views_count":"425","acmeblog_sidebar_layout":"no-sidebar","acmeblog-related-posts-display":"default-related-posts","acmeblog-related-posts-show-image":"1","acmeblog-related-posts-first-featured":"0","acmeblog-related-posts-show-categories":"1","acmeblog-related-posts-show-date":"1","acmeblog-related-posts-show-author":"1","acmeblog-related-posts-show-comments":"1","acmeblog-related-posts-number":"3","acmeblog-related-posts-content-words":"9","acmeblog-related-title":"Related posts","acmeblog-related-posts-column-number":"3","acmeblog_replace_featured_image":"","acmeblog_video_autoplay":""},"terms":{"category":[{"term_id":6,"name":"Entertainment","slug":"entertainment","term_group":0,"term_taxonomy_id":6,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Posts","post_id":25,"post_title":"Bird wild predator","post_status":"publish","post_name":"bird-wild-predator","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2015-10-03 15:56:02","post_date_gmt":"2015-10-03 15:56:02","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=25","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"26","acmeblog_post_views_count":"424"},"terms":{"category":[{"term_id":7,"name":"Featured","slug":"featured","term_group":0,"term_taxonomy_id":7,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]},{"term_id":10,"name":"Travel","slug":"travel","term_group":0,"term_taxonomy_id":10,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Posts","post_id":28,"post_title":"Diary writing","post_status":"publish","post_name":"diary-writing","post_content":"Mauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper. Suspendisse tempus nisi utMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper. Suspendisse tempus nisi utMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper. Suspendisse tempus nisi utMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper.\n\nMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper. Suspendisse tempus nisi utMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper. Suspendisse tempus nisi utMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper. Suspendisse tempus nisi utMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper.\n\nMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper. Suspendisse tempus nisi utMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper. Suspendisse tempus nisi utMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper. Suspendisse tempus nisi utMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper.\n","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2015-09-03 16:02:41","post_date_gmt":"2015-09-03 16:02:41","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=28","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"29","acmeblog_post_views_count":"268"},"terms":{"category":[{"term_id":9,"name":"Technology","slug":"technology","term_group":0,"term_taxonomy_id":9,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]},{"term_id":10,"name":"Travel","slug":"travel","term_group":0,"term_taxonomy_id":10,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}}],"page":[{"type_title":"Pages","post_id":4,"post_title":"Shop","post_status":"publish","post_name":"shop","post_content":"","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-04-24 04:11:22","post_date_gmt":"2016-04-24 04:11:22","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/shop\/","post_mime_type":"","meta":[],"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Pages","post_id":5,"post_title":"Cart","post_status":"publish","post_name":"cart","post_content":"[woocommerce_cart]","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-04-24 04:11:22","post_date_gmt":"2016-04-24 04:11:22","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/cart\/","post_mime_type":"","meta":{"acmeblog_post_views_count":"205"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Pages","post_id":6,"post_title":"Checkout","post_status":"publish","post_name":"checkout","post_content":"[woocommerce_checkout]","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-04-24 04:11:22","post_date_gmt":"2016-04-24 04:11:22","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/checkout\/","post_mime_type":"","meta":{"acmeblog_post_views_count":"1"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Pages","post_id":7,"post_title":"My Account","post_status":"publish","post_name":"my-account","post_content":"[woocommerce_my_account]","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-04-24 04:11:22","post_date_gmt":"2016-04-24 04:11:22","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/my-account\/","post_mime_type":"","meta":[],"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Pages","post_id":61,"post_title":"About","post_status":"publish","post_name":"about","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\n","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 16:40:16","post_date_gmt":"2016-01-03 16:40:16","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?page_id=61","post_mime_type":"","meta":{"_edit_last":"1","acmeblog_post_views_count":"417"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Pages","post_id":56,"post_title":"Contact","post_status":"publish","post_name":"contact","post_content":"<strong>Use contact form 7 plugin<\/strong>\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n[contact-form-7 id=\"55\" title=\"Contact form 1\"]","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 16:32:08","post_date_gmt":"2016-01-03 16:32:08","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?page_id=56","post_mime_type":"","meta":{"_edit_last":"1","acmeblog_post_views_count":"1093"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Pages","post_id":21,"post_title":"Blog","post_status":"publish","post_name":"blog","post_content":"","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 15:16:47","post_date_gmt":"2016-01-03 15:16:47","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?page_id=21","post_mime_type":"","meta":{"_edit_last":"1"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Pages","post_id":19,"post_title":"Home","post_status":"publish","post_name":"home","post_content":"","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 14:41:20","post_date_gmt":"2016-01-03 14:41:20","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?page_id=19","post_mime_type":"","meta":{"_edit_last":"1","acmeblog_post_views_count":"3"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}}],"custom_css":[],"wp_block":[],"product":[{"type_title":"Products","post_id":158,"post_title":"Woo Single #2","post_status":"publish","post_name":"woo-single-2","post_content":"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.","post_excerpt":"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.","post_parent":0,"menu_order":0,"post_date":"2013-06-07 11:38:12","post_date_gmt":"2013-06-07 11:38:12","guid":"http:\/\/demo.woothemes.com\/woocommerce\/?post_type=product&amp;p=99","post_mime_type":"","meta":{"_thumbnail_id":"147","_visibility":"visible","_stock_status":"instock","total_sales":"0","_downloadable":"no","_virtual":"no","_product_image_gallery":"101","_regular_price":"3","_sale_price":"2","_tax_status":"","_tax_class":"","_purchase_note":"","_featured":"no","_weight":"","_length":"","_width":"","_height":"","_sku":"","_product_attributes":[],"_sale_price_dates_from":"","_sale_price_dates_to":"","_price":"2","_sold_individually":"","_stock":"","_backorders":"no","_manage_stock":"no","_wc_rating_count":{"4":"1","5":"1"},"_wc_average_rating":"4.50","acmeblog_post_views_count":"1054","_wc_review_count":"2"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[{"term_id":2,"name":"simple","slug":"simple","term_group":0,"term_taxonomy_id":2,"taxonomy":"product_type","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"product_visibility":[],"product_cat":[{"term_id":19,"name":"Music","slug":"music","term_group":0,"term_taxonomy_id":19,"taxonomy":"product_cat","description":"","parent":0,"count":6,"filter":"raw","meta":[]},{"term_id":21,"name":"Singles","slug":"singles","term_group":0,"term_taxonomy_id":21,"taxonomy":"product_cat","description":"","parent":19,"count":2,"filter":"raw","meta":[]}],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Products","post_id":157,"post_title":"Woo Album #4","post_status":"publish","post_name":"woo-album-4","post_content":"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.","post_excerpt":"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.","post_parent":0,"menu_order":0,"post_date":"2013-06-07 11:37:23","post_date_gmt":"2013-06-07 11:37:23","guid":"http:\/\/demo.woothemes.com\/woocommerce\/?post_type=product&amp;p=96","post_mime_type":"","meta":{"_thumbnail_id":"145","_visibility":"visible","_stock_status":"instock","total_sales":"0","_downloadable":"yes","_virtual":"no","_product_image_gallery":"98","_regular_price":"9","_sale_price":"","_tax_status":"","_tax_class":"","_purchase_note":"","_featured":"no","_weight":"","_length":"","_width":"","_height":"","_sku":"","_product_attributes":[],"_sale_price_dates_from":"","_sale_price_dates_to":"","_price":"9","_sold_individually":"","_stock":"","_backorders":"no","_manage_stock":"no","_file_paths":[],"_download_limit":"","_download_expiry":"","_wc_rating_count":{"5":"2"},"_wc_average_rating":"5.00","acmeblog_post_views_count":"1110","_wc_review_count":"2"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[{"term_id":2,"name":"simple","slug":"simple","term_group":0,"term_taxonomy_id":2,"taxonomy":"product_type","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"product_visibility":[],"product_cat":[{"term_id":23,"name":"Albums","slug":"albums","term_group":0,"term_taxonomy_id":23,"taxonomy":"product_cat","description":"","parent":19,"count":4,"filter":"raw","meta":[]},{"term_id":19,"name":"Music","slug":"music","term_group":0,"term_taxonomy_id":19,"taxonomy":"product_cat","description":"","parent":0,"count":6,"filter":"raw","meta":[]}],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Products","post_id":156,"post_title":"Woo Single #1","post_status":"publish","post_name":"woo-single-1","post_content":"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.","post_excerpt":"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.","post_parent":0,"menu_order":0,"post_date":"2013-06-07 11:36:34","post_date_gmt":"2013-06-07 11:36:34","guid":"http:\/\/demo.woothemes.com\/woocommerce\/?post_type=product&amp;p=93","post_mime_type":"","meta":{"_thumbnail_id":"144","_visibility":"visible","_stock_status":"instock","total_sales":"0","_downloadable":"yes","_virtual":"no","_product_image_gallery":"94","_regular_price":"3","_sale_price":"","_tax_status":"","_tax_class":"","_purchase_note":"","_featured":"no","_weight":"","_length":"","_width":"","_height":"","_sku":"","_product_attributes":[],"_sale_price_dates_from":"","_sale_price_dates_to":"","_price":"3","_sold_individually":"","_stock":"","_backorders":"no","_manage_stock":"no","_file_paths":[],"_download_limit":"","_download_expiry":"","acmeblog_post_views_count":"1362","_wc_rating_count":[],"_wc_review_count":"0","_wc_average_rating":"0","_product_version":"3.7.1"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[{"term_id":2,"name":"simple","slug":"simple","term_group":0,"term_taxonomy_id":2,"taxonomy":"product_type","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"product_visibility":[],"product_cat":[{"term_id":19,"name":"Music","slug":"music","term_group":0,"term_taxonomy_id":19,"taxonomy":"product_cat","description":"","parent":0,"count":6,"filter":"raw","meta":[]},{"term_id":21,"name":"Singles","slug":"singles","term_group":0,"term_taxonomy_id":21,"taxonomy":"product_cat","description":"","parent":19,"count":2,"filter":"raw","meta":[]}],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Products","post_id":90,"post_title":"Woo Album #3","post_status":"publish","post_name":"woo-album-3","post_content":"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.","post_excerpt":"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.","post_parent":0,"menu_order":0,"post_date":"2013-06-07 11:35:18","post_date_gmt":"2013-06-07 11:35:18","guid":"http:\/\/demo.woothemes.com\/woocommerce\/?post_type=product&amp;p=90","post_mime_type":"","meta":{"_thumbnail_id":"142","_visibility":"visible","_stock_status":"instock","total_sales":"0","_downloadable":"yes","_virtual":"no","_product_image_gallery":"92","_regular_price":"9","_sale_price":"","_tax_status":"","_tax_class":"","_purchase_note":"","_featured":"no","_weight":"","_length":"","_width":"","_height":"","_sku":"","_product_attributes":[],"_sale_price_dates_from":"","_sale_price_dates_to":"","_price":"9","_sold_individually":"","_stock":"","_backorders":"no","_manage_stock":"no","_file_paths":[],"_download_limit":"","_download_expiry":"","acmeblog_post_views_count":"1187","_wc_rating_count":{"3":"1"},"_wc_review_count":"1","_wc_average_rating":"3.00"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[{"term_id":2,"name":"simple","slug":"simple","term_group":0,"term_taxonomy_id":2,"taxonomy":"product_type","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"product_visibility":[],"product_cat":[{"term_id":23,"name":"Albums","slug":"albums","term_group":0,"term_taxonomy_id":23,"taxonomy":"product_cat","description":"","parent":19,"count":4,"filter":"raw","meta":[]},{"term_id":19,"name":"Music","slug":"music","term_group":0,"term_taxonomy_id":19,"taxonomy":"product_cat","description":"","parent":0,"count":6,"filter":"raw","meta":[]}],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Products","post_id":87,"post_title":"Woo Album #2","post_status":"publish","post_name":"woo-album-2","post_content":"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.","post_excerpt":"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.","post_parent":0,"menu_order":0,"post_date":"2013-06-07 11:34:14","post_date_gmt":"2013-06-07 11:34:14","guid":"http:\/\/demo.woothemes.com\/woocommerce\/?post_type=product&amp;p=87","post_mime_type":"","meta":{"_thumbnail_id":"88","_visibility":"visible","_stock_status":"instock","total_sales":"0","_downloadable":"yes","_virtual":"no","_product_image_gallery":"89","_regular_price":"9","_sale_price":"","_tax_status":"","_tax_class":"","_purchase_note":"","_featured":"no","_weight":"","_length":"","_width":"","_height":"","_sku":"","_product_attributes":[],"_sale_price_dates_from":"","_sale_price_dates_to":"","_price":"9","_sold_individually":"","_stock":"","_backorders":"no","_manage_stock":"no","_file_paths":[],"_download_limit":"","_download_expiry":"","_wc_rating_count":{"4":"1"},"_wc_average_rating":"4.00","acmeblog_post_views_count":"1257","_wc_review_count":"1"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[{"term_id":2,"name":"simple","slug":"simple","term_group":0,"term_taxonomy_id":2,"taxonomy":"product_type","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"product_visibility":[],"product_cat":[{"term_id":23,"name":"Albums","slug":"albums","term_group":0,"term_taxonomy_id":23,"taxonomy":"product_cat","description":"","parent":19,"count":4,"filter":"raw","meta":[]},{"term_id":19,"name":"Music","slug":"music","term_group":0,"term_taxonomy_id":19,"taxonomy":"product_cat","description":"","parent":0,"count":6,"filter":"raw","meta":[]}],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Products","post_id":83,"post_title":"Woo Album #1","post_status":"publish","post_name":"woo-album-1","post_content":"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.","post_excerpt":"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.","post_parent":0,"menu_order":0,"post_date":"2013-06-07 11:33:05","post_date_gmt":"2013-06-07 11:33:05","guid":"http:\/\/demo.woothemes.com\/woocommerce\/?post_type=product&amp;p=83","post_mime_type":"","meta":{"_thumbnail_id":"84","_visibility":"visible","_stock_status":"instock","total_sales":"0","_downloadable":"yes","_virtual":"no","_product_image_gallery":"85","_regular_price":"9","_sale_price":"","_tax_status":"","_tax_class":"","_purchase_note":"","_featured":"no","_weight":"","_length":"","_width":"","_height":"","_sku":"","_product_attributes":[],"_sale_price_dates_from":"","_sale_price_dates_to":"","_price":"9","_sold_individually":"","_stock":"","_backorders":"no","_manage_stock":"no","_file_paths":[],"_download_limit":"","_download_expiry":"","_wc_rating_count":[],"_wc_average_rating":"0","acmeblog_post_views_count":"1033","_wc_review_count":"0"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[{"term_id":2,"name":"simple","slug":"simple","term_group":0,"term_taxonomy_id":2,"taxonomy":"product_type","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"product_visibility":[],"product_cat":[{"term_id":23,"name":"Albums","slug":"albums","term_group":0,"term_taxonomy_id":23,"taxonomy":"product_cat","description":"","parent":19,"count":4,"filter":"raw","meta":[]},{"term_id":19,"name":"Music","slug":"music","term_group":0,"term_taxonomy_id":19,"taxonomy":"product_cat","description":"","parent":0,"count":6,"filter":"raw","meta":[]}],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Products","post_id":79,"post_title":"Woo Logo","post_status":"publish","post_name":"woo-logo-3","post_content":"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.","post_excerpt":"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.","post_parent":0,"menu_order":0,"post_date":"2013-06-07 11:29:44","post_date_gmt":"2013-06-07 11:29:44","guid":"http:\/\/demo.woothemes.com\/woocommerce\/?post_type=product&amp;p=79","post_mime_type":"","meta":{"_thumbnail_id":"80","_visibility":"visible","_stock_status":"instock","total_sales":"0","_downloadable":"no","_virtual":"no","_product_image_gallery":"81","_regular_price":"15","_sale_price":"","_tax_status":"","_tax_class":"","_purchase_note":"","_featured":"no","_weight":"","_length":"","_width":"","_height":"","_sku":"","_product_attributes":[],"_sale_price_dates_from":"","_sale_price_dates_to":"","_price":"15","_sold_individually":"","_stock":"","_backorders":"no","_manage_stock":"no","_crosssell_ids":["15","60"],"_wc_rating_count":[],"_wc_average_rating":"0","acmeblog_post_views_count":"916","_wc_review_count":"0"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[{"term_id":2,"name":"simple","slug":"simple","term_group":0,"term_taxonomy_id":2,"taxonomy":"product_type","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"product_visibility":[],"product_cat":[{"term_id":20,"name":"Posters","slug":"posters","term_group":0,"term_taxonomy_id":20,"taxonomy":"product_cat","description":"","parent":0,"count":5,"filter":"raw","meta":[]}],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Products","post_id":76,"post_title":"Woo Ninja","post_status":"publish","post_name":"woo-ninja-3","post_content":"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.","post_excerpt":"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.","post_parent":0,"menu_order":0,"post_date":"2013-06-07 11:28:45","post_date_gmt":"2013-06-07 11:28:45","guid":"http:\/\/demo.woothemes.com\/woocommerce\/?post_type=product&amp;p=76","post_mime_type":"","meta":{"_thumbnail_id":"77","_visibility":"visible","_stock_status":"instock","total_sales":"0","_downloadable":"no","_virtual":"no","_product_image_gallery":"78","_regular_price":"15","_sale_price":"","_tax_status":"","_tax_class":"","_purchase_note":"","_featured":"no","_weight":"","_length":"","_width":"","_height":"","_sku":"","_product_attributes":[],"_sale_price_dates_from":"","_sale_price_dates_to":"","_price":"15","_sold_individually":"","_stock":"","_backorders":"no","_manage_stock":"no","_crosssell_ids":["34","47"],"acmeblog_post_views_count":"777","_wc_rating_count":{"4":"1"},"_wc_review_count":"1","_wc_average_rating":"4.00"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[{"term_id":2,"name":"simple","slug":"simple","term_group":0,"term_taxonomy_id":2,"taxonomy":"product_type","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"product_visibility":[],"product_cat":[{"term_id":20,"name":"Posters","slug":"posters","term_group":0,"term_taxonomy_id":20,"taxonomy":"product_cat","description":"","parent":0,"count":5,"filter":"raw","meta":[]}],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Products","post_id":73,"post_title":"Premium Quality","post_status":"publish","post_name":"premium-quality-2","post_content":"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.","post_excerpt":"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.","post_parent":0,"menu_order":0,"post_date":"2013-06-07 11:27:38","post_date_gmt":"2013-06-07 11:27:38","guid":"http:\/\/demo.woothemes.com\/woocommerce\/?post_type=product&amp;p=73","post_mime_type":"","meta":{"_visibility":"visible","_stock_status":"instock","total_sales":"0","_downloadable":"no","_virtual":"no","_product_image_gallery":"75","_regular_price":"15","_sale_price":"12","_tax_status":"","_tax_class":"","_purchase_note":"","_featured":"no","_weight":"","_length":"","_width":"","_height":"","_sku":"","_product_attributes":[],"_sale_price_dates_from":"","_sale_price_dates_to":"","_price":"12","_sold_individually":"","_stock":"","_backorders":"no","_manage_stock":"no","_upsell_ids":["19"],"_thumbnail_id":"74","_wc_rating_count":{"1":"1","3":"1"},"_wc_average_rating":"2.00","acmeblog_post_views_count":"956","_wc_review_count":"2"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[{"term_id":2,"name":"simple","slug":"simple","term_group":0,"term_taxonomy_id":2,"taxonomy":"product_type","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"product_visibility":[],"product_cat":[{"term_id":20,"name":"Posters","slug":"posters","term_group":0,"term_taxonomy_id":20,"taxonomy":"product_cat","description":"","parent":0,"count":5,"filter":"raw","meta":[]}],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Products","post_id":70,"post_title":"Flying Ninja","post_status":"publish","post_name":"flying-ninja","post_content":"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.","post_excerpt":"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.","post_parent":0,"menu_order":0,"post_date":"2013-06-07 11:25:01","post_date_gmt":"2013-06-07 11:25:01","guid":"http:\/\/demo.woothemes.com\/woocommerce\/?post_type=product&amp;p=70","post_mime_type":"","meta":{"_visibility":"visible","_stock_status":"instock","total_sales":"0","_downloadable":"no","_virtual":"no","_product_image_gallery":"72","_regular_price":"15","_sale_price":"12","_tax_status":"","_tax_class":"","_purchase_note":"","_featured":"no","_weight":"","_length":"","_width":"","_height":"","_sku":"","_product_attributes":[],"_sale_price_dates_from":"","_sale_price_dates_to":"","_price":"12","_sold_individually":"","_stock":"","_backorders":"no","_manage_stock":"no","_thumbnail_id":"71","_wc_rating_count":{"3":"1","4":"2","5":"1"},"_wc_average_rating":"4.00","acmeblog_post_views_count":"875","_wc_review_count":"4"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[{"term_id":2,"name":"simple","slug":"simple","term_group":0,"term_taxonomy_id":2,"taxonomy":"product_type","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"product_visibility":[],"product_cat":[{"term_id":20,"name":"Posters","slug":"posters","term_group":0,"term_taxonomy_id":20,"taxonomy":"product_cat","description":"","parent":0,"count":5,"filter":"raw","meta":[]}],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Products","post_id":67,"post_title":"Ship Your Idea","post_status":"publish","post_name":"ship-your-idea-3","post_content":"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.","post_excerpt":"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.","post_parent":0,"menu_order":0,"post_date":"2013-06-07 11:22:50","post_date_gmt":"2013-06-07 11:22:50","guid":"http:\/\/demo.woothemes.com\/woocommerce\/?post_type=product&amp;p=67","post_mime_type":"","meta":{"_visibility":"visible","_stock_status":"instock","total_sales":"0","_downloadable":"no","_virtual":"no","_product_image_gallery":"69","_regular_price":"15","_sale_price":"","_tax_status":"","_tax_class":"","_purchase_note":"","_featured":"no","_weight":"","_length":"","_width":"","_height":"","_sku":"","_product_attributes":[],"_sale_price_dates_from":"","_sale_price_dates_to":"","_price":"15","_sold_individually":"","_stock":"","_backorders":"no","_manage_stock":"no","_thumbnail_id":"68","_upsell_ids":["22","40"],"_crosssell_ids":["22","40"],"_wc_rating_count":[],"_wc_average_rating":"0","acmeblog_post_views_count":"1061","_wc_review_count":"0"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[{"term_id":2,"name":"simple","slug":"simple","term_group":0,"term_taxonomy_id":2,"taxonomy":"product_type","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"product_visibility":[],"product_cat":[{"term_id":20,"name":"Posters","slug":"posters","term_group":0,"term_taxonomy_id":20,"taxonomy":"product_cat","description":"","parent":0,"count":5,"filter":"raw","meta":[]}],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Products","post_id":60,"post_title":"Woo Logo","post_status":"publish","post_name":"woo-logo-2","post_content":"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.","post_excerpt":"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.","post_parent":0,"menu_order":0,"post_date":"2013-06-07 11:12:55","post_date_gmt":"2013-06-07 11:12:55","guid":"http:\/\/demo.woothemes.com\/woocommerce\/?post_type=product&amp;p=60","post_mime_type":"","meta":{"_thumbnail_id":"141","_visibility":"visible","_stock_status":"instock","total_sales":"0","_downloadable":"no","_virtual":"no","_product_image_gallery":"62","_regular_price":"35","_sale_price":"","_tax_status":"","_tax_class":"","_purchase_note":"","_featured":"no","_weight":"","_length":"","_width":"","_height":"","_sku":"","_product_attributes":[],"_sale_price_dates_from":"","_sale_price_dates_to":"","_price":"35","_sold_individually":"","_stock":"","_backorders":"no","_manage_stock":"no","_crosssell_ids":["15"],"acmeblog_post_views_count":"1771","_wc_rating_count":{"3":"1","5":"1"},"_wc_review_count":"2","_wc_average_rating":"4.00"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[{"term_id":2,"name":"simple","slug":"simple","term_group":0,"term_taxonomy_id":2,"taxonomy":"product_type","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"product_visibility":[],"product_cat":[{"term_id":17,"name":"Clothing","slug":"clothing","term_group":0,"term_taxonomy_id":17,"taxonomy":"product_cat","description":"","parent":0,"count":12,"filter":"raw","meta":[]},{"term_id":18,"name":"Hoodies","slug":"hoodies","term_group":0,"term_taxonomy_id":18,"taxonomy":"product_cat","description":"","parent":17,"count":6,"filter":"raw","meta":[]}],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Products","post_id":153,"post_title":"Ninja Silhouette","post_status":"publish","post_name":"ninja-silhouette-2","post_content":"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.","post_excerpt":"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.","post_parent":0,"menu_order":0,"post_date":"2013-06-07 11:07:19","post_date_gmt":"2013-06-07 11:07:19","guid":"http:\/\/demo.woothemes.com\/woocommerce\/?post_type=product&amp;p=56","post_mime_type":"","meta":{"_visibility":"visible","_stock_status":"instock","total_sales":"0","_downloadable":"no","_virtual":"no","_product_image_gallery":"58","_regular_price":"35","_sale_price":"","_tax_status":"","_tax_class":"","_purchase_note":"","_featured":"no","_weight":"","_length":"","_width":"","_height":"","_sku":"","_product_attributes":[],"_sale_price_dates_from":"","_sale_price_dates_to":"","_price":"35","_sold_individually":"","_stock":"","_backorders":"no","_manage_stock":"no","_thumbnail_id":"57","_crosssell_ids":["31"],"_wc_rating_count":{"1":"1","4":"1","5":"3"},"_wc_average_rating":"4.00","acmeblog_post_views_count":"1683","_wc_review_count":"5"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[{"term_id":2,"name":"simple","slug":"simple","term_group":0,"term_taxonomy_id":2,"taxonomy":"product_type","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"product_visibility":[],"product_cat":[{"term_id":17,"name":"Clothing","slug":"clothing","term_group":0,"term_taxonomy_id":17,"taxonomy":"product_cat","description":"","parent":0,"count":12,"filter":"raw","meta":[]},{"term_id":18,"name":"Hoodies","slug":"hoodies","term_group":0,"term_taxonomy_id":18,"taxonomy":"product_cat","description":"","parent":17,"count":6,"filter":"raw","meta":[]}],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Products","post_id":53,"post_title":"Happy Ninja","post_status":"publish","post_name":"happy-ninja-2","post_content":"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.","post_excerpt":"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.","post_parent":0,"menu_order":0,"post_date":"2013-06-07 11:05:37","post_date_gmt":"2013-06-07 11:05:37","guid":"http:\/\/demo.woothemes.com\/woocommerce\/?post_type=product&amp;p=53","post_mime_type":"","meta":{"_thumbnail_id":"54","_visibility":"visible","_stock_status":"instock","total_sales":"0","_downloadable":"no","_virtual":"no","_product_image_gallery":"55","_regular_price":"35","_sale_price":"","_tax_status":"","_tax_class":"","_purchase_note":"","_featured":"no","_weight":"","_length":"","_width":"","_height":"","_sku":"","_product_attributes":[],"_sale_price_dates_from":"","_sale_price_dates_to":"","_price":"35","_sold_individually":"","_stock":"","_backorders":"no","_manage_stock":"no","_crosssell_ids":["37"],"_wc_rating_count":{"1":"1","5":"1"},"_wc_average_rating":"3.00","acmeblog_post_views_count":"1753","_wc_review_count":"2"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[{"term_id":2,"name":"simple","slug":"simple","term_group":0,"term_taxonomy_id":2,"taxonomy":"product_type","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"product_visibility":[],"product_cat":[{"term_id":17,"name":"Clothing","slug":"clothing","term_group":0,"term_taxonomy_id":17,"taxonomy":"product_cat","description":"","parent":0,"count":12,"filter":"raw","meta":[]},{"term_id":18,"name":"Hoodies","slug":"hoodies","term_group":0,"term_taxonomy_id":18,"taxonomy":"product_cat","description":"","parent":17,"count":6,"filter":"raw","meta":[]}],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Products","post_id":50,"post_title":"Patient Ninja","post_status":"publish","post_name":"patient-ninja","post_content":"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.","post_excerpt":"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.","post_parent":0,"menu_order":0,"post_date":"2013-06-07 11:03:56","post_date_gmt":"2013-06-07 11:03:56","guid":"http:\/\/demo.woothemes.com\/woocommerce\/?post_type=product&amp;p=50","post_mime_type":"","meta":{"_visibility":"visible","_stock_status":"instock","total_sales":"0","_downloadable":"no","_virtual":"no","_product_image_gallery":"52","_regular_price":"35","_sale_price":"","_tax_status":"","_tax_class":"","_purchase_note":"","_featured":"no","_weight":"","_length":"","_width":"","_height":"","_sku":"","_product_attributes":[],"_sale_price_dates_from":"","_sale_price_dates_to":"","_price":"35","_sold_individually":"","_stock":"","_backorders":"no","_manage_stock":"no","_thumbnail_id":"140","_crosssell_ids":["53"],"_wc_rating_count":{"4":"1","5":"2"},"_wc_average_rating":"4.67","acmeblog_post_views_count":"1941","_wc_review_count":"3"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[{"term_id":2,"name":"simple","slug":"simple","term_group":0,"term_taxonomy_id":2,"taxonomy":"product_type","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"product_visibility":[],"product_cat":[{"term_id":17,"name":"Clothing","slug":"clothing","term_group":0,"term_taxonomy_id":17,"taxonomy":"product_cat","description":"","parent":0,"count":12,"filter":"raw","meta":[]},{"term_id":18,"name":"Hoodies","slug":"hoodies","term_group":0,"term_taxonomy_id":18,"taxonomy":"product_cat","description":"","parent":17,"count":6,"filter":"raw","meta":[]}],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Products","post_id":152,"post_title":"Woo Ninja","post_status":"publish","post_name":"woo-ninja-2","post_content":"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.","post_excerpt":"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.","post_parent":0,"menu_order":0,"post_date":"2013-06-07 11:02:31","post_date_gmt":"2013-06-07 11:02:31","guid":"http:\/\/demo.woothemes.com\/woocommerce\/?post_type=product&amp;p=47","post_mime_type":"","meta":{"_visibility":"visible","_stock_status":"instock","total_sales":"0","_downloadable":"no","_virtual":"no","_product_image_gallery":"49","_regular_price":"35","_sale_price":"","_tax_status":"","_tax_class":"","_purchase_note":"","_featured":"no","_weight":"","_length":"","_width":"","_height":"","_sku":"","_product_attributes":[],"_sale_price_dates_from":"","_sale_price_dates_to":"","_price":"35","_sold_individually":"","_stock":"","_backorders":"no","_manage_stock":"no","_thumbnail_id":"48","_crosssell_ids":["34"],"_wc_rating_count":{"4":"1","5":"1"},"_wc_average_rating":"4.50","acmeblog_post_views_count":"1502","_wc_review_count":"2"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[{"term_id":2,"name":"simple","slug":"simple","term_group":0,"term_taxonomy_id":2,"taxonomy":"product_type","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"product_visibility":[],"product_cat":[{"term_id":17,"name":"Clothing","slug":"clothing","term_group":0,"term_taxonomy_id":17,"taxonomy":"product_cat","description":"","parent":0,"count":12,"filter":"raw","meta":[]},{"term_id":18,"name":"Hoodies","slug":"hoodies","term_group":0,"term_taxonomy_id":18,"taxonomy":"product_cat","description":"","parent":17,"count":6,"filter":"raw","meta":[]}],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Products","post_id":40,"post_title":"Ship Your Idea","post_status":"publish","post_name":"ship-your-idea-2","post_content":"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.","post_excerpt":"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.","post_parent":0,"menu_order":0,"post_date":"2013-06-07 11:00:28","post_date_gmt":"2013-06-07 11:00:28","guid":"http:\/\/demo.woothemes.com\/woocommerce\/?post_type=product&amp;p=40","post_mime_type":"","meta":{"_visibility":"visible","_stock_status":"instock","total_sales":"0","_downloadable":"no","_virtual":"no","_product_image_gallery":"44,45,46","_regular_price":"30","_sale_price":"","_tax_status":"","_tax_class":"","_purchase_note":"","_featured":"no","_weight":"","_length":"","_width":"","_height":"","_sku":"","_product_attributes":{"pa_color":{"name":"pa_color","value":"","position":"0","is_visible":0,"is_variation":1,"is_taxonomy":1}},"_sale_price_dates_from":"","_sale_price_dates_to":"","_price":"30","_sold_individually":"","_stock":"","_backorders":"no","_manage_stock":"no","_min_variation_price":"30","_max_variation_price":"35","_min_variation_regular_price":"35","_max_variation_regular_price":"35","_min_variation_sale_price":"30","_max_variation_sale_price":"30","_default_attributes":{"pa_color":"black"},"_thumbnail_id":"43","_crosssell_ids":["22"],"_wc_rating_count":{"3":"1","4":"1","5":"1"},"_wc_average_rating":"4.00","acmeblog_post_views_count":"1760","_wc_review_count":"3"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[{"term_id":4,"name":"variable","slug":"variable","term_group":0,"term_taxonomy_id":4,"taxonomy":"product_type","description":"","parent":0,"count":2,"filter":"raw","meta":[]}],"product_visibility":[],"product_cat":[{"term_id":17,"name":"Clothing","slug":"clothing","term_group":0,"term_taxonomy_id":17,"taxonomy":"product_cat","description":"","parent":0,"count":12,"filter":"raw","meta":[]},{"term_id":18,"name":"Hoodies","slug":"hoodies","term_group":0,"term_taxonomy_id":18,"taxonomy":"product_cat","description":"","parent":17,"count":6,"filter":"raw","meta":[]}],"product_tag":[],"product_shipping_class":[],"pa_color":[{"term_id":14,"name":"Black","slug":"black","term_group":0,"term_taxonomy_id":14,"taxonomy":"pa_color","description":"","parent":0,"count":2,"filter":"raw","meta":[]},{"term_id":15,"name":"Blue","slug":"blue","term_group":0,"term_taxonomy_id":15,"taxonomy":"pa_color","description":"","parent":0,"count":1,"filter":"raw","meta":[]}]}},{"type_title":"Products","post_id":37,"post_title":"Happy Ninja","post_status":"publish","post_name":"happy-ninja","post_content":"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.","post_excerpt":"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.","post_parent":0,"menu_order":0,"post_date":"2013-06-07 10:53:15","post_date_gmt":"2013-06-07 10:53:15","guid":"http:\/\/demo.woothemes.com\/woocommerce\/?post_type=product&amp;p=37","post_mime_type":"","meta":{"_visibility":"visible","_stock_status":"instock","total_sales":"0","_downloadable":"no","_virtual":"no","_product_image_gallery":"39","_regular_price":"18","_sale_price":"","_tax_status":"","_tax_class":"","_purchase_note":"","_featured":"no","_weight":"","_length":"","_width":"","_height":"","_sku":"","_product_attributes":[],"_sale_price_dates_from":"","_sale_price_dates_to":"","_price":"18","_sold_individually":"","_stock":"","_backorders":"no","_manage_stock":"no","_thumbnail_id":"135","_crosssell_ids":["34","31"],"_upsell_ids":["53"],"_wc_rating_count":{"5":"2"},"_wc_average_rating":"5.00","acmeblog_post_views_count":"1896","_wc_review_count":"2"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[{"term_id":2,"name":"simple","slug":"simple","term_group":0,"term_taxonomy_id":2,"taxonomy":"product_type","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"product_visibility":[],"product_cat":[{"term_id":17,"name":"Clothing","slug":"clothing","term_group":0,"term_taxonomy_id":17,"taxonomy":"product_cat","description":"","parent":0,"count":12,"filter":"raw","meta":[]},{"term_id":22,"name":"T-shirts","slug":"t-shirts","term_group":0,"term_taxonomy_id":22,"taxonomy":"product_cat","description":"","parent":17,"count":6,"filter":"raw","meta":[]}],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Products","post_id":34,"post_title":"Woo Ninja","post_status":"publish","post_name":"woo-ninja","post_content":"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.","post_excerpt":"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.","post_parent":0,"menu_order":0,"post_date":"2013-06-07 10:52:06","post_date_gmt":"2013-06-07 10:52:06","guid":"http:\/\/demo.woothemes.com\/woocommerce\/?post_type=product&amp;p=34","post_mime_type":"","meta":{"_thumbnail_id":"133","_visibility":"visible","_stock_status":"instock","total_sales":"0","_downloadable":"no","_virtual":"no","_product_image_gallery":"36","_regular_price":"20","_sale_price":"","_tax_status":"","_tax_class":"","_purchase_note":"","_featured":"no","_weight":"","_length":"","_width":"","_height":"","_sku":"","_product_attributes":[],"_sale_price_dates_from":"","_sale_price_dates_to":"","_price":"20","_sold_individually":"","_stock":"","_backorders":"no","_manage_stock":"no","_crosssell_ids":["37","31"],"_upsell_ids":["47"],"_wc_rating_count":[],"_wc_average_rating":"0","acmeblog_post_views_count":"1765","_wc_review_count":"0"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[{"term_id":2,"name":"simple","slug":"simple","term_group":0,"term_taxonomy_id":2,"taxonomy":"product_type","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"product_visibility":[],"product_cat":[{"term_id":17,"name":"Clothing","slug":"clothing","term_group":0,"term_taxonomy_id":17,"taxonomy":"product_cat","description":"","parent":0,"count":12,"filter":"raw","meta":[]},{"term_id":22,"name":"T-shirts","slug":"t-shirts","term_group":0,"term_taxonomy_id":22,"taxonomy":"product_cat","description":"","parent":17,"count":6,"filter":"raw","meta":[]}],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Products","post_id":151,"post_title":"Ninja Silhouette","post_status":"publish","post_name":"ninja-silhouette","post_content":"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.","post_excerpt":"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.","post_parent":0,"menu_order":0,"post_date":"2013-06-07 10:49:51","post_date_gmt":"2013-06-07 10:49:51","guid":"http:\/\/demo.woothemes.com\/woocommerce\/?post_type=product&amp;p=31","post_mime_type":"","meta":{"_thumbnail_id":"132","_visibility":"visible","_stock_status":"instock","total_sales":"0","_downloadable":"no","_virtual":"no","_product_image_gallery":"33","_regular_price":"20","_sale_price":"","_tax_status":"","_tax_class":"","_purchase_note":"","_featured":"no","_weight":"","_length":"","_width":"","_height":"","_sku":"","_product_attributes":[],"_sale_price_dates_from":"","_sale_price_dates_to":"","_price":"20","_sold_individually":"","_stock":"","_backorders":"no","_manage_stock":"no","_crosssell_ids":["34","37"],"_upsell_ids":["56"],"_wc_rating_count":{"5":"1"},"_wc_average_rating":"5.00","acmeblog_post_views_count":"1344","_wc_review_count":"1"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[{"term_id":2,"name":"simple","slug":"simple","term_group":0,"term_taxonomy_id":2,"taxonomy":"product_type","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"product_visibility":[],"product_cat":[{"term_id":17,"name":"Clothing","slug":"clothing","term_group":0,"term_taxonomy_id":17,"taxonomy":"product_cat","description":"","parent":0,"count":12,"filter":"raw","meta":[]},{"term_id":22,"name":"T-shirts","slug":"t-shirts","term_group":0,"term_taxonomy_id":22,"taxonomy":"product_cat","description":"","parent":17,"count":6,"filter":"raw","meta":[]}],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Products","post_id":22,"post_title":"Ship Your Idea","post_status":"publish","post_name":"ship-your-idea","post_content":"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.","post_excerpt":"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.","post_parent":0,"menu_order":0,"post_date":"2013-06-07 10:46:01","post_date_gmt":"2013-06-07 10:46:01","guid":"http:\/\/demo.woothemes.com\/woocommerce\/?post_type=product&amp;p=22","post_mime_type":"","meta":{"_visibility":"visible","_stock_status":"instock","total_sales":"0","_downloadable":"no","_virtual":"no","_product_image_gallery":"26,27,28,29","_regular_price":"20","_sale_price":"","_tax_status":"","_tax_class":"","_purchase_note":"","_featured":"no","_weight":"","_length":"","_width":"","_height":"","_sku":"","_product_attributes":{"pa_color":{"name":"pa_color","value":"","position":"0","is_visible":0,"is_variation":1,"is_taxonomy":1}},"_sale_price_dates_from":"","_sale_price_dates_to":"","_price":"20","_sold_individually":"","_stock":"","_backorders":"no","_manage_stock":"no","_thumbnail_id":"128","_min_variation_price":"20","_max_variation_price":"20","_min_variation_regular_price":"20","_max_variation_regular_price":"20","_min_variation_sale_price":"","_max_variation_sale_price":"","_default_attributes":[],"_wp_old_slug":"share-your-idea","_upsell_ids":["40"],"_wc_rating_count":{"4":"2","5":"1"},"_wc_average_rating":"4.33","acmeblog_post_views_count":"2113","_wc_review_count":"3"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[{"term_id":4,"name":"variable","slug":"variable","term_group":0,"term_taxonomy_id":4,"taxonomy":"product_type","description":"","parent":0,"count":2,"filter":"raw","meta":[]}],"product_visibility":[],"product_cat":[{"term_id":17,"name":"Clothing","slug":"clothing","term_group":0,"term_taxonomy_id":17,"taxonomy":"product_cat","description":"","parent":0,"count":12,"filter":"raw","meta":[]},{"term_id":22,"name":"T-shirts","slug":"t-shirts","term_group":0,"term_taxonomy_id":22,"taxonomy":"product_cat","description":"","parent":17,"count":6,"filter":"raw","meta":[]}],"product_tag":[],"product_shipping_class":[],"pa_color":[{"term_id":14,"name":"Black","slug":"black","term_group":0,"term_taxonomy_id":14,"taxonomy":"pa_color","description":"","parent":0,"count":2,"filter":"raw","meta":[]},{"term_id":16,"name":"Green","slug":"green","term_group":0,"term_taxonomy_id":16,"taxonomy":"pa_color","description":"","parent":0,"count":1,"filter":"raw","meta":[]}]}},{"type_title":"Products","post_id":150,"post_title":"Premium Quality","post_status":"publish","post_name":"premium-quality","post_content":"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.","post_excerpt":"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.","post_parent":0,"menu_order":0,"post_date":"2013-06-07 10:41:52","post_date_gmt":"2013-06-07 10:41:52","guid":"http:\/\/demo.woothemes.com\/woocommerce\/?post_type=product&amp;p=19","post_mime_type":"","meta":{"_thumbnail_id":"20","_visibility":"visible","_stock_status":"instock","total_sales":"0","_downloadable":"no","_virtual":"no","_product_image_gallery":"21","_regular_price":"20","_sale_price":"","_tax_status":"","_tax_class":"","_purchase_note":"","_featured":"no","_weight":"","_length":"","_width":"","_height":"","_sku":"","_product_attributes":[],"_sale_price_dates_from":"","_sale_price_dates_to":"","_price":"20","_sold_individually":"","_stock":"","_backorders":"no","_manage_stock":"no","_wc_rating_count":{"4":"1","5":"1"},"_wc_average_rating":"4.50","acmeblog_post_views_count":"1167","_wc_review_count":"2"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[{"term_id":2,"name":"simple","slug":"simple","term_group":0,"term_taxonomy_id":2,"taxonomy":"product_type","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"product_visibility":[],"product_cat":[{"term_id":17,"name":"Clothing","slug":"clothing","term_group":0,"term_taxonomy_id":17,"taxonomy":"product_cat","description":"","parent":0,"count":12,"filter":"raw","meta":[]},{"term_id":22,"name":"T-shirts","slug":"t-shirts","term_group":0,"term_taxonomy_id":22,"taxonomy":"product_cat","description":"","parent":17,"count":6,"filter":"raw","meta":[]}],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Products","post_id":149,"post_title":"Woo Logo","post_status":"publish","post_name":"woo-logo","post_content":"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.","post_excerpt":"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.","post_parent":0,"menu_order":0,"post_date":"2013-06-07 10:35:51","post_date_gmt":"2013-06-07 10:35:51","guid":"http:\/\/demo.woothemes.com\/woocommerce\/?post_type=product&amp;p=15","post_mime_type":"","meta":{"_thumbnail_id":"125","_visibility":"visible","_stock_status":"instock","total_sales":"0","_downloadable":"no","_virtual":"no","_product_image_gallery":"17","_regular_price":"20","_sale_price":"18","_tax_status":"","_tax_class":"","_purchase_note":"","_featured":"no","_weight":"","_length":"","_width":"","_height":"","_sku":"","_product_attributes":[],"_sale_price_dates_from":"","_sale_price_dates_to":"","_price":"18","_sold_individually":"","_stock":"5","_backorders":"no","_manage_stock":"yes","_upsell_ids":["60"],"_wc_rating_count":{"4":"1"},"_wc_average_rating":"4.00","acmeblog_post_views_count":"1602","_wc_review_count":"1"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[{"term_id":2,"name":"simple","slug":"simple","term_group":0,"term_taxonomy_id":2,"taxonomy":"product_type","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"product_visibility":[],"product_cat":[{"term_id":17,"name":"Clothing","slug":"clothing","term_group":0,"term_taxonomy_id":17,"taxonomy":"product_cat","description":"","parent":0,"count":12,"filter":"raw","meta":[]},{"term_id":22,"name":"T-shirts","slug":"t-shirts","term_group":0,"term_taxonomy_id":22,"taxonomy":"product_cat","description":"","parent":17,"count":6,"filter":"raw","meta":[]}],"product_tag":[],"product_shipping_class":[],"pa_color":[]}}],"product_variation":[{"type_title":"Variations","post_id":154,"post_title":"Ship Your Idea - Black","post_status":"publish","post_name":"product-40-variation","post_content":"","post_excerpt":"color: Black","post_parent":40,"menu_order":0,"post_date":"2013-06-07 10:59:15","post_date_gmt":"2013-06-07 10:59:15","guid":"http:\/\/demo.woothemes.com\/woocommerce\/?product_variation=product-40-variation","post_mime_type":"","meta":{"_sku":"","_weight":"","_length":"","_width":"","_height":"","_stock":"","_thumbnail_id":"43","_virtual":"no","_downloadable":"no","_regular_price":"35","_sale_price":"","_sale_price_dates_from":"","_sale_price_dates_to":"","_price":"35","_tax_class":"","_download_limit":"","_download_expiry":"","_file_paths":"","attribute_pa_color":"black"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Variations","post_id":155,"post_title":"Ship Your Idea - Blue","post_status":"publish","post_name":"product-40-variation-2","post_content":"","post_excerpt":"color: Blue","post_parent":40,"menu_order":1,"post_date":"2013-06-07 10:59:15","post_date_gmt":"2013-06-07 10:59:15","guid":"http:\/\/demo.woothemes.com\/woocommerce\/?product_variation=product-40-variation-2","post_mime_type":"","meta":{"_sku":"","_weight":"","_length":"","_width":"","_height":"","_stock":"","_thumbnail_id":"139","_virtual":"no","_downloadable":"no","_regular_price":"35","_sale_price":"30","_sale_price_dates_from":"","_sale_price_dates_to":"","_price":"30","_tax_class":"","_download_limit":"","_download_expiry":"","_file_paths":"","attribute_pa_color":"blue"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Variations","post_id":24,"post_title":"Ship Your Idea - Green","post_status":"publish","post_name":"product-22-variation-2","post_content":"","post_excerpt":"color: Green","post_parent":22,"menu_order":1,"post_date":"2013-06-07 10:44:58","post_date_gmt":"2013-06-07 10:44:58","guid":"http:\/\/demo.woothemes.com\/woocommerce\/?product_variation=product-22-variation-2","post_mime_type":"","meta":{"_sku":"","_weight":"","_length":"","_width":"","_height":"","_stock":"","_thumbnail_id":"27","_virtual":"no","_downloadable":"no","_regular_price":"20","_sale_price":"","_sale_price_dates_from":"","_sale_price_dates_to":"","_price":"20","_tax_class":"","_download_limit":"","_download_expiry":"","_file_paths":"","attribute_pa_color":"green"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Variations","post_id":23,"post_title":"Ship Your Idea - Black","post_status":"publish","post_name":"product-22-variation","post_content":"","post_excerpt":"color: Black","post_parent":22,"menu_order":0,"post_date":"2013-06-07 10:44:57","post_date_gmt":"2013-06-07 10:44:57","guid":"http:\/\/demo.woothemes.com\/woocommerce\/?product_variation=product-22-variation","post_mime_type":"","meta":{"_sku":"","_weight":"","_length":"","_width":"","_height":"","_stock":"","_thumbnail_id":"131","_virtual":"no","_downloadable":"no","_regular_price":"20","_sale_price":"","_sale_price_dates_from":"","_sale_price_dates_to":"","_price":"20","_tax_class":"","_download_limit":"","_download_expiry":"","_file_paths":"","attribute_pa_color":"black"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}}],"shop_order":[],"shop_order_refund":[],"shop_coupon":[],"wpcf7_contact_form":[{"type_title":"Contact Forms","post_id":106,"post_title":"Contact form 1","post_status":"publish","post_name":"contact-form-1","post_content":"<p>Your Name (required)<br \/>\r\n [text* your-name] <\/p>\r\n\r\n<p>Your Email (required)<br \/>\r\n [email* your-email] <\/p>\r\n\r\n<p>Subject<br \/>\r\n [text your-subject] <\/p>\r\n\r\n<p>Your Message<br \/>\r\n [textarea your-message] <\/p>\r\n\r\n<p>[submit \"Send\"]<\/p>\n1\nFront site contact form\n[your-name] <wordpress@demo.acmethemes.com>\nacmethemes@gmail.com\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on AcmeBlog Pro (http:\/\/www.demo.acmethemes.com\/acmeblogpro)\nReply-To: [your-email]\n\n\n\n\n[your-subject]\nAcmeBlog Pro <wordpress@demo.acmethemes.com>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on AcmeBlog Pro (http:\/\/www.demo.acmethemes.com\/acmeblogpro)\nReply-To: acmethemes@gmail.com\n\n\n\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill in the required field.\nThis input is too long.\nThis input is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-02-13 11:58:01","post_date_gmt":"2016-02-13 11:58:01","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/?post_type=wpcf7_contact_form&#038;p=97","post_mime_type":"","meta":{"_form":"<p>Your Name (required)<br \/>\n [text* your-name] <\/p>\n\n<p>Your Email (required)<br \/>\n [email* your-email] <\/p>\n\n<p>Subject<br \/>\n [text your-subject] <\/p>\n\n<p>Your Message<br \/>\n [textarea your-message] <\/p>\n\n<p>[submit \"Send\"]<\/p>","_mail":{"active":true,"subject":"Front site contact form","sender":"[your-name] <wordpress@demo.acmethemes.com>","recipient":"acmethemes@gmail.com","body":"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on AcmeBlog Pro (http:\/\/www.demo.acmethemes.com\/acmeblogpro)","additional_headers":"Reply-To: [your-email]","attachments":"","use_html":false,"exclude_blank":false},"_mail_2":{"active":false,"subject":"[your-subject]","sender":"AcmeBlog Pro <wordpress@demo.acmethemes.com>","recipient":"[your-email]","body":"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on AcmeBlog Pro (http:\/\/www.demo.acmethemes.com\/acmeblogpro)","additional_headers":"Reply-To: acmethemes@gmail.com","attachments":"","use_html":false,"exclude_blank":false},"_messages":{"mail_sent_ok":"Your message was sent successfully. Thanks.","mail_sent_ng":"Failed to send your message. Please try later or contact the administrator by another method.","validation_error":"Validation errors occurred. Please confirm the fields and submit it again.","spam":"Failed to send your message. Please try later or contact the administrator by another method.","accept_terms":"Please accept the terms to proceed.","invalid_required":"Please fill in the required field.","invalid_too_long":"This input is too long.","invalid_too_short":"This input is too short.","invalid_date":"The date format is incorrect.","date_too_early":"The date is before the earliest one allowed.","date_too_late":"The date is after the latest one allowed.","upload_failed":"There was an unknown error uploading the file.","upload_file_type_invalid":"You are not allowed to upload files of this type.","upload_file_too_large":"The file is too big.","upload_failed_php_error":"There was an error uploading the file.","invalid_number":"The number format is invalid.","number_too_small":"The number is smaller than the minimum allowed.","number_too_large":"The number is larger than the maximum allowed.","quiz_answer_not_correct":"The answer to the quiz is incorrect.","captcha_not_match":"Your entered code is incorrect.","invalid_email":"The e-mail address entered is invalid.","invalid_url":"The URL is invalid.","invalid_tel":"The telephone number is invalid."},"_additional_settings":"","_locale":"en_US"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}}],"nav_menu_item":[{"type_title":"Navigation Menu Items","post_id":162,"post_title":"Home 3","post_status":"publish","post_name":"home-3","post_content":"","post_excerpt":"","post_parent":0,"menu_order":4,"post_date":"2016-05-13 11:30:52","post_date_gmt":"2016-05-13 11:30:52","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/?p=162","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"17","_menu_item_object_id":"162","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-3\/"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":13,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":13,"taxonomy":"nav_menu","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Navigation Menu Items","post_id":159,"post_title":"Home 2","post_status":"publish","post_name":"home-2","post_content":"","post_excerpt":"","post_parent":0,"menu_order":3,"post_date":"2016-04-24 04:42:37","post_date_gmt":"2016-04-24 04:42:37","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/2016\/04\/24\/home-2\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"17","_menu_item_object_id":"159","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":13,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":13,"taxonomy":"nav_menu","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Navigation Menu Items","post_id":160,"post_title":"","post_status":"publish","post_name":"160","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":5,"post_date":"2016-04-24 04:42:37","post_date_gmt":"2016-04-24 04:42:37","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/2016\/04\/24\/160\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"0","_menu_item_object_id":"4","_menu_item_object":"page","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":13,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":13,"taxonomy":"nav_menu","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Navigation Menu Items","post_id":115,"post_title":"No Sidebar","post_status":"publish","post_name":"no-sidebar","post_content":"","post_excerpt":"","post_parent":0,"menu_order":10,"post_date":"2016-04-24 04:26:24","post_date_gmt":"2016-04-24 04:26:24","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/2016\/04\/24\/no-sidebar\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"102","_menu_item_object_id":"15","_menu_item_object":"post","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":13,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":13,"taxonomy":"nav_menu","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Navigation Menu Items","post_id":116,"post_title":"Related Post Left","post_status":"publish","post_name":"related-post-left","post_content":"","post_excerpt":"","post_parent":0,"menu_order":11,"post_date":"2016-04-24 04:26:24","post_date_gmt":"2016-04-24 04:26:24","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/2016\/04\/24\/related-post-left\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"102","_menu_item_object_id":"38","_menu_item_object":"post","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":13,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":13,"taxonomy":"nav_menu","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Navigation Menu Items","post_id":117,"post_title":"Related Post Right","post_status":"publish","post_name":"related-post-right","post_content":"","post_excerpt":"","post_parent":0,"menu_order":12,"post_date":"2016-04-24 04:26:24","post_date_gmt":"2016-04-24 04:26:24","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/2016\/04\/24\/related-post-right\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"102","_menu_item_object_id":"41","_menu_item_object":"post","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":13,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":13,"taxonomy":"nav_menu","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Navigation Menu Items","post_id":118,"post_title":"Related Post Featured","post_status":"publish","post_name":"related-post-featured","post_content":"","post_excerpt":"","post_parent":0,"menu_order":13,"post_date":"2016-04-24 04:26:24","post_date_gmt":"2016-04-24 04:26:24","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/2016\/04\/24\/related-post-featured\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"102","_menu_item_object_id":"44","_menu_item_object":"post","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":13,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":13,"taxonomy":"nav_menu","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Navigation Menu Items","post_id":119,"post_title":"","post_status":"publish","post_name":"119","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":14,"post_date":"2016-04-24 04:26:24","post_date_gmt":"2016-04-24 04:26:24","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/2016\/04\/24\/119\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"102","_menu_item_object_id":"91","_menu_item_object":"post","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":13,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":13,"taxonomy":"nav_menu","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Navigation Menu Items","post_id":94,"post_title":"AcmeThemes","post_status":"publish","post_name":"acmethemes","post_content":"","post_excerpt":"","post_parent":0,"menu_order":1,"post_date":"2016-04-24 04:26:23","post_date_gmt":"2016-04-24 04:26:23","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/2016\/04\/24\/acmethemes\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"94","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.acmethemes.com\/"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":11,"name":"Links","slug":"links","term_group":0,"term_taxonomy_id":11,"taxonomy":"nav_menu","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Navigation Menu Items","post_id":95,"post_title":"Themes","post_status":"publish","post_name":"themes","post_content":"","post_excerpt":"","post_parent":0,"menu_order":2,"post_date":"2016-04-24 04:26:23","post_date_gmt":"2016-04-24 04:26:23","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/2016\/04\/24\/themes\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"95","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.acmethemes.com\/themes\/"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":11,"name":"Links","slug":"links","term_group":0,"term_taxonomy_id":11,"taxonomy":"nav_menu","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Navigation Menu Items","post_id":96,"post_title":"Supports","post_status":"publish","post_name":"supports","post_content":"","post_excerpt":"","post_parent":0,"menu_order":3,"post_date":"2016-04-24 04:26:23","post_date_gmt":"2016-04-24 04:26:23","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/2016\/04\/24\/supports\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"96","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.acmethemes.com\/supports\/"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":11,"name":"Links","slug":"links","term_group":0,"term_taxonomy_id":11,"taxonomy":"nav_menu","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Navigation Menu Items","post_id":97,"post_title":"Contact","post_status":"publish","post_name":"contact","post_content":"","post_excerpt":"","post_parent":0,"menu_order":4,"post_date":"2016-04-24 04:26:23","post_date_gmt":"2016-04-24 04:26:23","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/2016\/04\/24\/contact\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"97","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.acmethemes.com\/contact\/"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":11,"name":"Links","slug":"links","term_group":0,"term_taxonomy_id":11,"taxonomy":"nav_menu","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Navigation Menu Items","post_id":98,"post_title":"AcmeThemes","post_status":"publish","post_name":"acmethemes-2","post_content":"","post_excerpt":"","post_parent":0,"menu_order":1,"post_date":"2016-04-24 04:26:23","post_date_gmt":"2016-04-24 04:26:23","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/2016\/04\/24\/acmethemes-2\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"98","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.acmethemes.com\/"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":12,"name":"Links (2)","slug":"links-2","term_group":0,"term_taxonomy_id":12,"taxonomy":"nav_menu","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Navigation Menu Items","post_id":99,"post_title":"Themes","post_status":"publish","post_name":"themes-2","post_content":"","post_excerpt":"","post_parent":0,"menu_order":2,"post_date":"2016-04-24 04:26:23","post_date_gmt":"2016-04-24 04:26:23","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/2016\/04\/24\/themes-2\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"99","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.acmethemes.com\/themes\/"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":12,"name":"Links (2)","slug":"links-2","term_group":0,"term_taxonomy_id":12,"taxonomy":"nav_menu","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Navigation Menu Items","post_id":100,"post_title":"Supports","post_status":"publish","post_name":"supports-2","post_content":"","post_excerpt":"","post_parent":0,"menu_order":3,"post_date":"2016-04-24 04:26:23","post_date_gmt":"2016-04-24 04:26:23","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/2016\/04\/24\/supports-2\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"100","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.acmethemes.com\/supports\/"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":12,"name":"Links (2)","slug":"links-2","term_group":0,"term_taxonomy_id":12,"taxonomy":"nav_menu","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Navigation Menu Items","post_id":101,"post_title":"Contact","post_status":"publish","post_name":"contact-2","post_content":"","post_excerpt":"","post_parent":0,"menu_order":4,"post_date":"2016-04-24 04:26:23","post_date_gmt":"2016-04-24 04:26:23","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/2016\/04\/24\/contact-2\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"101","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.acmethemes.com\/contact\/"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":12,"name":"Links (2)","slug":"links-2","term_group":0,"term_taxonomy_id":12,"taxonomy":"nav_menu","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Navigation Menu Items","post_id":102,"post_title":"Features","post_status":"publish","post_name":"features","post_content":"","post_excerpt":"","post_parent":0,"menu_order":6,"post_date":"2016-04-24 04:26:23","post_date_gmt":"2016-04-24 04:26:23","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/2016\/04\/24\/features\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"102","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"#"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":13,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":13,"taxonomy":"nav_menu","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Navigation Menu Items","post_id":103,"post_title":"Home-1","post_status":"publish","post_name":"home-1","post_content":"","post_excerpt":"","post_parent":0,"menu_order":2,"post_date":"2016-04-24 04:26:23","post_date_gmt":"2016-04-24 04:26:23","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/2016\/04\/24\/home-1\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"17","_menu_item_object_id":"103","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":13,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":13,"taxonomy":"nav_menu","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Navigation Menu Items","post_id":107,"post_title":"","post_status":"publish","post_name":"107","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":20,"post_date":"2016-04-24 04:26:23","post_date_gmt":"2016-04-24 04:26:23","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/2016\/04\/24\/107\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"0","_menu_item_object_id":"61","_menu_item_object":"page","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":13,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":13,"taxonomy":"nav_menu","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Navigation Menu Items","post_id":108,"post_title":"","post_status":"publish","post_name":"108","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":21,"post_date":"2016-04-24 04:26:23","post_date_gmt":"2016-04-24 04:26:23","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/2016\/04\/24\/108\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"0","_menu_item_object_id":"56","_menu_item_object":"page","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":13,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":13,"taxonomy":"nav_menu","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Navigation Menu Items","post_id":109,"post_title":"","post_status":"publish","post_name":"109","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":16,"post_date":"2016-04-24 04:26:23","post_date_gmt":"2016-04-24 04:26:23","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/2016\/04\/24\/109\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"46","_menu_item_object_id":"44","_menu_item_object":"post","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":13,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":13,"taxonomy":"nav_menu","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Navigation Menu Items","post_id":110,"post_title":"","post_status":"publish","post_name":"110","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":18,"post_date":"2016-04-24 04:26:23","post_date_gmt":"2016-04-24 04:26:23","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/2016\/04\/24\/110\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"47","_menu_item_object_id":"25","_menu_item_object":"post","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":13,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":13,"taxonomy":"nav_menu","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Navigation Menu Items","post_id":111,"post_title":"","post_status":"publish","post_name":"111","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":19,"post_date":"2016-04-24 04:26:23","post_date_gmt":"2016-04-24 04:26:23","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/2016\/04\/24\/111\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"47","_menu_item_object_id":"12","_menu_item_object":"post","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":13,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":13,"taxonomy":"nav_menu","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Navigation Menu Items","post_id":112,"post_title":"Right Sidebar","post_status":"publish","post_name":"right-sidebar","post_content":"","post_excerpt":"","post_parent":0,"menu_order":7,"post_date":"2016-04-24 04:26:23","post_date_gmt":"2016-04-24 04:26:23","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/2016\/04\/24\/right-sidebar\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"102","_menu_item_object_id":"51","_menu_item_object":"post","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":13,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":13,"taxonomy":"nav_menu","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Navigation Menu Items","post_id":113,"post_title":"Left Sidebar","post_status":"publish","post_name":"left-sidebar","post_content":"","post_excerpt":"","post_parent":0,"menu_order":8,"post_date":"2016-04-24 04:26:23","post_date_gmt":"2016-04-24 04:26:23","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/2016\/04\/24\/left-sidebar\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"102","_menu_item_object_id":"12","_menu_item_object":"post","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":13,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":13,"taxonomy":"nav_menu","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Navigation Menu Items","post_id":114,"post_title":"Both Sidebar","post_status":"publish","post_name":"both-sidebar","post_content":"","post_excerpt":"","post_parent":0,"menu_order":9,"post_date":"2016-04-24 04:26:23","post_date_gmt":"2016-04-24 04:26:23","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/2016\/04\/24\/both-sidebar\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"102","_menu_item_object_id":"105","_menu_item_object":"post","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":13,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":13,"taxonomy":"nav_menu","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Navigation Menu Items","post_id":46,"post_title":"","post_status":"publish","post_name":"46","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":15,"post_date":"2016-04-24 04:26:22","post_date_gmt":"2016-04-24 04:26:22","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/2016\/04\/24\/","post_mime_type":"","meta":{"_menu_item_type":"taxonomy","_menu_item_menu_item_parent":"0","_menu_item_object_id":"8","_menu_item_object":"category","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":13,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":13,"taxonomy":"nav_menu","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Navigation Menu Items","post_id":47,"post_title":"","post_status":"publish","post_name":"47","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":17,"post_date":"2016-04-24 04:26:22","post_date_gmt":"2016-04-24 04:26:22","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/2016\/04\/24\/","post_mime_type":"","meta":{"_menu_item_type":"taxonomy","_menu_item_menu_item_parent":"0","_menu_item_object_id":"10","_menu_item_object":"category","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":13,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":13,"taxonomy":"nav_menu","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}},{"type_title":"Navigation Menu Items","post_id":17,"post_title":"Home","post_status":"publish","post_name":"home","post_content":"","post_excerpt":"","post_parent":0,"menu_order":1,"post_date":"2016-04-24 04:26:18","post_date_gmt":"2016-04-24 04:26:18","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2\/2016\/04\/24\/home\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"17","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":13,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":13,"taxonomy":"nav_menu","description":"","parent":0,"count":21,"filter":"raw","meta":[]}],"link_category":[],"post_format":[],"action-group":[],"product_type":[],"product_visibility":[],"product_cat":[],"product_tag":[],"product_shipping_class":[],"pa_color":[]}}]}
includes/demo-data/acmeblogpro/demo-3/options.json ADDED
@@ -0,0 +1 @@
 
1
+ {"menu":{"primary":13},"options":{"blogname":"AcmeBlogPro","blogname-child":"AcmeBlogPro","blogdescription":"WooCommerce\/Blog Demo","blogdescription-child":"WooCommerce\/Blog Demo","posts_per_page":"10","posts_per_page-child":"10","date_format":"F j, Y","date_format-child":"F j, Y","time_format":"g:i a","time_format-child":"g:i a","show_on_front":"posts","show_on_front-child":"posts","thumbnail_size_w":"500","thumbnail_size_w-child":"500","thumbnail_size_h":"280","thumbnail_size_h-child":"280","thumbnail_crop":"1","thumbnail_crop-child":"1","medium_size_w":"690","medium_size_w-child":"690","medium_size_h":"400","medium_size_h-child":"400","avatar_default":"mystery","avatar_default-child":"mystery","large_size_w":"840","large_size_w-child":"840","large_size_h":"480","large_size_h-child":"480","page_for_posts":"21","page_for_posts-child":"21","page_on_front":"19","page_on_front-child":"19","medium_large_size_w":"0","medium_large_size_w-child":"0","medium_large_size_h":"0","medium_large_size_h-child":"0","woocommerce_shop_page_id":"4","woocommerce_shop_page_id-child":"4","woocommerce_cart_page_id":"5","woocommerce_cart_page_id-child":"5","woocommerce_checkout_page_id":"6","woocommerce_checkout_page_id-child":"6","woocommerce_myaccount_page_id":"7","woocommerce_myaccount_page_id-child":"7","theme_mods_acmeblogpro":{"0":false,"acmeblog_theme_options":{"acmeblog-feature-post-one":"38","acmeblog-enable-feature":true,"acmeblog-intro-bg-color":"#f27537","acmeblog-enable-intro-loader":true,"acmeblog-default-layout":"fullwidth","acmeblog-feature-post-two":"41","acmeblog-facebook-url":"https:\/\/www.facebook.com\/acmethemes\/","acmeblog-twitter-url":"https:\/\/twitter.com\/acme_themes","acmeblog-linkedin-url":"https:\/\/www.linkedin.com\/in\/acmethemes","acmeblog-enable-social":true,"acmeblog-front-page-sidebar-layout":"both-sidebar","acmeblog-sidebar-layout":"both-sidebar","acmeblog-site-title-color":"#f27537","acmeblog-site-title-hover-color":"#d63800","acmeblog-primary-color":"#f27537","acmeblog-link-color":"#42c0ff","acmeblog-link-hover-color":"#d63800","acmeblog-menu-active-color":"#f27537","acmeblog-menu-hover-color":"#d63800","acmeblog-enable-sticky-sidebar":true},"custom_css_post_id":-1},"theme_mods_acmeblogpro-child":{"0":false,"nav_menu_locations":{"primary":13},"acmeblog_theme_options":{"acmeblog-feature-post-one":"38","acmeblog-enable-feature":true,"acmeblog-intro-bg-color":"#f27537","acmeblog-enable-intro-loader":true,"acmeblog-default-layout":"fullwidth","acmeblog-feature-post-two":"41","acmeblog-facebook-url":"https:\/\/www.facebook.com\/acmethemes\/","acmeblog-twitter-url":"https:\/\/twitter.com\/acme_themes","acmeblog-linkedin-url":"https:\/\/www.linkedin.com\/in\/acmethemes","acmeblog-enable-social":true,"acmeblog-front-page-sidebar-layout":"both-sidebar","acmeblog-sidebar-layout":"both-sidebar","acmeblog-site-title-color":"#f27537","acmeblog-site-title-hover-color":"#d63800","acmeblog-primary-color":"#f27537","acmeblog-link-color":"#42c0ff","acmeblog-link-hover-color":"#d63800","acmeblog-menu-active-color":"#f27537","acmeblog-menu-hover-color":"#d63800","acmeblog-enable-sticky-sidebar":true},"custom_css_post_id":-1}}}
includes/demo-data/acmeblogpro/demo-3/screenshot.jpg ADDED
Binary file
includes/demo-data/acmeblogpro/demo-3/widgets.json ADDED
@@ -0,0 +1 @@
 
1
+ {"widget_positions":{"wp_inactive_widgets":["search-2","meta-2","categories-2","recent-posts-2","acmeblog_news_ticker-4"],"acmeblog-sidebar":["woocommerce_products-3","acmeblog_posts_col_pro-3","recent-comments-2","archives-2","categories-4","acmeblog_news_ticker-3"],"acmeblog-sidebar-left":["woocommerce_recent_reviews-3","archives-4","nav_menu-3","acmeblog_popular_posts-3"],"footer-top-col-one":[],"array_version":3},"widget_options":{"search":{"2":{"title":""},"_multiwidget":1},"meta":{"2":{"title":""},"_multiwidget":1},"categories":{"2":{"title":"","count":0,"hierarchical":0,"dropdown":0},"_multiwidget":1,"4":[]},"recent-posts":{"2":{"title":"","number":5},"_multiwidget":1},"acmeblog_news_ticker":{"_multiwidget":1,"3":{"acmeblog_cat_title":"Ticker","acmeblog_cat":"-1","acmeblog_enable_title_link":1,"acmeblog_number":6,"acmeblog_column_number":3,"acmeblog_slide_mode":"vertical","acmeblog_show_image":1,"acmeblog_show_cat":0,"acmeblog_show_date":1,"acmeblog_show_author":1,"acmeblog_show_comment":1,"acmeblog_content_words":8,"acmeblog_slider_speed":24000},"4":[]},"woocommerce_products":{"_multiwidget":1,"3":{"title":"Products","number":5,"show":"","orderby":"date","order":"desc","hide_free":0,"show_hidden":0}},"acmeblog_posts_col_pro":{"_multiwidget":1,"3":{"acmeblog_cat_title":"Recent Posts","acmeblog_cat":"-1","acmeblog_enable_title_link":1,"acmeblog_enable_first_featured":0,"acmeblog_number":4,"acmeblog_column_number":3,"acmeblog_show_image":1,"acmeblog_show_cat":0,"acmeblog_show_date":1,"acmeblog_show_author":1,"acmeblog_show_comment":1,"acmeblog_content_words":8}},"recent-comments":{"2":{"title":"","number":5},"_multiwidget":1},"archives":{"2":{"title":"","count":0,"dropdown":0},"_multiwidget":1,"4":[]},"woocommerce_recent_reviews":{"_multiwidget":1,"3":{"title":"Recent Reviews","number":10}},"nav_menu":{"_multiwidget":1,"3":{"title":"Important Links","nav_menu":11}},"acmeblog_popular_posts":{"_multiwidget":1,"3":{"acmeblog_cat_title":"Popular Posts","acmeblog_cat":"-1","acmeblog_enable_title_link":1,"acmeblog_enable_first_featured":1,"acmeblog_number":5,"acmeblog_column_number":3,"acmeblog_show_image":1,"acmeblog_show_cat":0,"acmeblog_show_date":1,"acmeblog_show_author":1,"acmeblog_show_comment":1,"acmeblog_content_words":8}}}}
includes/demo-data/acmeblogpro/demo-4/content.json ADDED
@@ -0,0 +1 @@
 
1
+ {"attachment":[{"type_title":"Media","post_id":93,"post_title":"Everest","post_status":"inherit","post_name":"everest","post_content":"","post_excerpt":"","post_parent":91,"menu_order":0,"post_date":"2016-02-13 10:47:38","post_date_gmt":"2016-02-13 10:47:38","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-3\/wp-content\/uploads\/sites\/4\/2016\/02\/Everest.png","post_mime_type":"image\/png","meta":{"_wp_attached_file":"2016\/02\/Everest.png","_wp_attachment_metadata":{"width":840,"height":480,"hwstring_small":"height='73' width='128'","file":"2016\/02\/Everest.png","sizes":{"thumbnail":{"file":"Everest-500x280.png","width":500,"height":280,"mime-type":"image\/png"},"medium":{"file":"Everest-690x400.png","width":690,"height":400,"mime-type":"image\/png"},"post-thumbnail":{"file":"Everest-330x195.png","width":330,"height":195,"mime-type":"image\/png"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":45,"post_title":"basketball-652459_1920","post_status":"inherit","post_name":"basketball-652459_1920","post_content":"","post_excerpt":"","post_parent":44,"menu_order":0,"post_date":"2016-01-03 16:22:25","post_date_gmt":"2016-01-03 16:22:25","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-3\/wp-content\/uploads\/sites\/4\/2016\/01\/basketball-652459_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/basketball-652459_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1420,"hwstring_small":"height='96' width='128'","file":"2016\/01\/basketball-652459_1920.jpg","sizes":{"thumbnail":{"file":"basketball-652459_1920-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"basketball-652459_1920-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"basketball-652459_1920-1080x540.jpg","width":1080,"height":540,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"basketball-652459_1920-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":42,"post_title":"watches-1062994_1920","post_status":"inherit","post_name":"watches-1062994_1920","post_content":"","post_excerpt":"","post_parent":41,"menu_order":0,"post_date":"2016-01-03 16:17:43","post_date_gmt":"2016-01-03 16:17:43","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-3\/wp-content\/uploads\/sites\/4\/2016\/01\/watches-1062994_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/watches-1062994_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1277,"hwstring_small":"height='85' width='128'","file":"2016\/01\/watches-1062994_1920.jpg","sizes":{"thumbnail":{"file":"watches-1062994_1920-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"watches-1062994_1920-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"watches-1062994_1920-1080x540.jpg","width":1080,"height":540,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"watches-1062994_1920-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":39,"post_title":"girls-685778_1280","post_status":"inherit","post_name":"girls-685778_1280","post_content":"","post_excerpt":"","post_parent":38,"menu_order":0,"post_date":"2016-01-03 16:13:48","post_date_gmt":"2016-01-03 16:13:48","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-3\/wp-content\/uploads\/sites\/4\/2016\/01\/girls-685778_1280.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/girls-685778_1280.jpg","_wp_attachment_metadata":{"width":1280,"height":853,"hwstring_small":"height='85' width='128'","file":"2016\/01\/girls-685778_1280.jpg","sizes":{"thumbnail":{"file":"girls-685778_1280-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"girls-685778_1280-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"girls-685778_1280-1080x540.jpg","width":1080,"height":540,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"girls-685778_1280-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":36,"post_title":"computer-336628_1280","post_status":"inherit","post_name":"computer-336628_1280","post_content":"","post_excerpt":"","post_parent":35,"menu_order":0,"post_date":"2016-01-03 16:09:32","post_date_gmt":"2016-01-03 16:09:32","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-3\/wp-content\/uploads\/sites\/4\/2016\/01\/computer-336628_1280.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/computer-336628_1280.jpg","_wp_attachment_metadata":{"width":1280,"height":800,"hwstring_small":"height='80' width='128'","file":"2016\/01\/computer-336628_1280.jpg","sizes":{"thumbnail":{"file":"computer-336628_1280-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"computer-336628_1280-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"computer-336628_1280-1080x540.jpg","width":1080,"height":540,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"computer-336628_1280-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":32,"post_title":"home-office-381229_1920","post_status":"inherit","post_name":"home-office-381229_1920","post_content":"","post_excerpt":"","post_parent":31,"menu_order":0,"post_date":"2016-01-03 16:06:35","post_date_gmt":"2016-01-03 16:06:35","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-3\/wp-content\/uploads\/sites\/4\/2016\/01\/home-office-381229_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/home-office-381229_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1271,"hwstring_small":"height='85' width='128'","file":"2016\/01\/home-office-381229_1920.jpg","sizes":{"thumbnail":{"file":"home-office-381229_1920-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"home-office-381229_1920-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"home-office-381229_1920-1080x540.jpg","width":1080,"height":540,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"home-office-381229_1920-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":29,"post_title":"diary-968592_1920","post_status":"inherit","post_name":"diary-968592_1920","post_content":"","post_excerpt":"","post_parent":28,"menu_order":0,"post_date":"2016-01-03 16:02:23","post_date_gmt":"2016-01-03 16:02:23","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-3\/wp-content\/uploads\/sites\/4\/2016\/01\/diary-968592_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/diary-968592_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1440,"hwstring_small":"height='96' width='128'","file":"2016\/01\/diary-968592_1920.jpg","sizes":{"thumbnail":{"file":"diary-968592_1920-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"diary-968592_1920-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"diary-968592_1920-1080x540.jpg","width":1080,"height":540,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"diary-968592_1920-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":26,"post_title":"portrait-1072696_1920","post_status":"inherit","post_name":"portrait-1072696_1920","post_content":"","post_excerpt":"","post_parent":25,"menu_order":0,"post_date":"2016-01-03 15:55:26","post_date_gmt":"2016-01-03 15:55:26","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-3\/wp-content\/uploads\/sites\/4\/2016\/01\/portrait-1072696_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/portrait-1072696_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1324,"hwstring_small":"height='88' width='128'","file":"2016\/01\/portrait-1072696_1920.jpg","sizes":{"thumbnail":{"file":"portrait-1072696_1920-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"portrait-1072696_1920-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"portrait-1072696_1920-1080x540.jpg","width":1080,"height":540,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"portrait-1072696_1920-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":16,"post_title":"coffee-569178_1920","post_status":"inherit","post_name":"coffee-569178_1920","post_content":"","post_excerpt":"","post_parent":15,"menu_order":0,"post_date":"2016-01-03 14:14:00","post_date_gmt":"2016-01-03 14:14:00","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-3\/wp-content\/uploads\/sites\/4\/2016\/01\/coffee-569178_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/coffee-569178_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1267,"hwstring_small":"height='84' width='128'","file":"2016\/01\/coffee-569178_1920.jpg","sizes":{"thumbnail":{"file":"coffee-569178_1920-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"coffee-569178_1920-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"coffee-569178_1920-1080x540.jpg","width":1080,"height":540,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"coffee-569178_1920-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":13,"post_title":"navigation-1048294_1920","post_status":"inherit","post_name":"navigation-1048294_1920","post_content":"","post_excerpt":"","post_parent":12,"menu_order":0,"post_date":"2016-01-03 14:11:20","post_date_gmt":"2016-01-03 14:11:20","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-3\/wp-content\/uploads\/sites\/4\/2016\/01\/navigation-1048294_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/navigation-1048294_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1440,"hwstring_small":"height='96' width='128'","file":"2016\/01\/navigation-1048294_1920.jpg","sizes":{"thumbnail":{"file":"navigation-1048294_1920-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"navigation-1048294_1920-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"navigation-1048294_1920-1080x540.jpg","width":1080,"height":540,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"navigation-1048294_1920-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":10,"post_title":"pen-926313_1920","post_status":"inherit","post_name":"pen-926313_1920","post_content":"","post_excerpt":"","post_parent":9,"menu_order":0,"post_date":"2016-01-03 14:09:28","post_date_gmt":"2016-01-03 14:09:28","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-3\/wp-content\/uploads\/sites\/4\/2016\/01\/pen-926313_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/pen-926313_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1285,"hwstring_small":"height='86' width='128'","file":"2016\/01\/pen-926313_1920.jpg","sizes":{"thumbnail":{"file":"pen-926313_1920-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"pen-926313_1920-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"pen-926313_1920-1080x540.jpg","width":1080,"height":540,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"pen-926313_1920-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Media","post_id":7,"post_title":"man-791049_1920","post_status":"inherit","post_name":"man-791049_1920","post_content":"","post_excerpt":"","post_parent":51,"menu_order":0,"post_date":"2016-01-03 14:05:27","post_date_gmt":"2016-01-03 14:05:27","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-3\/wp-content\/uploads\/sites\/4\/2016\/01\/man-791049_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/01\/man-791049_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1280,"hwstring_small":"height='85' width='128'","file":"2016\/01\/man-791049_1920.jpg","sizes":{"thumbnail":{"file":"man-791049_1920-500x280.jpg","width":500,"height":280,"mime-type":"image\/jpeg"},"medium":{"file":"man-791049_1920-690x400.jpg","width":690,"height":400,"mime-type":"image\/jpeg"},"large":{"file":"man-791049_1920-1080x540.jpg","width":1080,"height":540,"mime-type":"image\/jpeg"},"post-thumbnail":{"file":"man-791049_1920-330x195.jpg","width":330,"height":195,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}}],"post":[{"type_title":"Posts","post_id":38,"post_title":"Love your best friends","post_status":"publish","post_name":"love-your-best-friends","post_content":"<strong>Lorem Ipsum<\/strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\n<strong>Lorem Ipsum<\/strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\n<strong>Lorem Ipsum<\/strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 16:25:40","post_date_gmt":"2016-01-03 16:25:40","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=38","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"39","acmeblog_post_views_count":"427","acmeblog_sidebar_layout":"default-sidebar","acmeblog-related-posts-display":"left-related-posts","acmeblog-related-posts-show-image":"1","acmeblog-related-posts-first-featured":"0","acmeblog-related-posts-show-categories":"1","acmeblog-related-posts-show-date":"1","acmeblog-related-posts-show-author":"1","acmeblog-related-posts-show-comments":"1","acmeblog-related-posts-number":"3","acmeblog-related-posts-content-words":"9","acmeblog-related-title":"Related posts","acmeblog-related-posts-column-number":"3","acmeblog_replace_featured_image":"","acmeblog_video_autoplay":"","_edit_lock":"1569776473:1"},"terms":{"category":[{"term_id":2,"name":"Entertainment","slug":"entertainment","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]},{"term_id":4,"name":"Sports","slug":"sports","term_group":0,"term_taxonomy_id":4,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Posts","post_id":41,"post_title":"Watches, Fashion Trends","post_status":"publish","post_name":"watches-fashion-trends","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 16:23:53","post_date_gmt":"2016-01-03 16:23:53","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=41","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"42","acmeblog_post_views_count":"385","acmeblog_sidebar_layout":"default-sidebar","acmeblog-related-posts-display":"default-related-posts","acmeblog-related-posts-show-image":"1","acmeblog-related-posts-first-featured":"0","acmeblog-related-posts-show-categories":"1","acmeblog-related-posts-show-date":"1","acmeblog-related-posts-show-author":"1","acmeblog-related-posts-show-comments":"1","acmeblog-related-posts-number":"3","acmeblog-related-posts-content-words":"9","acmeblog-related-title":"Related posts","acmeblog-related-posts-column-number":"3","acmeblog_replace_featured_image":"","acmeblog_video_autoplay":"","_edit_lock":"1569776552:1"},"terms":{"category":[{"term_id":2,"name":"Entertainment","slug":"entertainment","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]},{"term_id":4,"name":"Sports","slug":"sports","term_group":0,"term_taxonomy_id":4,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Posts","post_id":44,"post_title":"Winner Reaction","post_status":"publish","post_name":"winner-reaction","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 16:22:47","post_date_gmt":"2016-01-03 16:22:47","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=44","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"45","acmeblog_post_views_count":"443","acmeblog_sidebar_layout":"default-sidebar","acmeblog-related-posts-display":"below-related-posts","acmeblog-related-posts-show-image":"1","acmeblog-related-posts-first-featured":"1","acmeblog-related-posts-show-categories":"1","acmeblog-related-posts-show-date":"1","acmeblog-related-posts-show-author":"1","acmeblog-related-posts-show-comments":"1","acmeblog-related-posts-number":"4","acmeblog-related-posts-content-words":"9","acmeblog-related-title":"Related posts","acmeblog-related-posts-column-number":"3","acmeblog_replace_featured_image":"","acmeblog_video_autoplay":""},"terms":{"category":[{"term_id":2,"name":"Entertainment","slug":"entertainment","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]},{"term_id":4,"name":"Sports","slug":"sports","term_group":0,"term_taxonomy_id":4,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Posts","post_id":35,"post_title":"Working is fun","post_status":"publish","post_name":"working-is-fun","post_content":"<strong>Lorem Ipsum<\/strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\n<strong>Lorem Ipsum<\/strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\n<strong>Lorem Ipsum<\/strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 16:09:39","post_date_gmt":"2016-01-03 16:09:39","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=35","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"36","acmeblog_post_views_count":"371"},"terms":{"category":[{"term_id":5,"name":"Technology","slug":"technology","term_group":0,"term_taxonomy_id":5,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]},{"term_id":6,"name":"Travel","slug":"travel","term_group":0,"term_taxonomy_id":6,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Posts","post_id":31,"post_title":"Office Work","post_status":"publish","post_name":"office-work","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 16:07:19","post_date_gmt":"2016-01-03 16:07:19","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=31","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"32","acmeblog_post_views_count":"290"},"terms":{"category":[{"term_id":5,"name":"Technology","slug":"technology","term_group":0,"term_taxonomy_id":5,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]},{"term_id":6,"name":"Travel","slug":"travel","term_group":0,"term_taxonomy_id":6,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Posts","post_id":91,"post_title":"Video Post","post_status":"publish","post_name":"video-post","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-02 10:38:18","post_date_gmt":"2016-01-02 10:38:18","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/?p=91","post_mime_type":"","meta":{"_edit_last":"1","acmeblog_sidebar_layout":"default-sidebar","acmeblog-related-posts-display":"default-related-posts","acmeblog-related-posts-show-image":"1","acmeblog-related-posts-first-featured":"0","acmeblog-related-posts-show-categories":"1","acmeblog-related-posts-show-date":"1","acmeblog-related-posts-show-author":"1","acmeblog-related-posts-show-comments":"1","acmeblog-related-posts-number":"3","acmeblog-related-posts-content-words":"9","acmeblog-related-title":"Related posts","acmeblog-related-posts-column-number":"3","acmeblog_replace_featured_image":"1","acmeblog_video_autoplay":"1","_thumbnail_id":"93","acmeblog_video_url":"https:\/\/www.youtube.com\/embed\/79Q2rrQlPW4","acmeblog_post_views_count":"308"},"terms":{"category":[{"term_id":2,"name":"Entertainment","slug":"entertainment","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]},{"term_id":5,"name":"Technology","slug":"technology","term_group":0,"term_taxonomy_id":5,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]},{"term_id":6,"name":"Travel","slug":"travel","term_group":0,"term_taxonomy_id":6,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Posts","post_id":51,"post_title":"Reading touchscreen blog","post_status":"publish","post_name":"reading-touchscreen-blog","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2015-12-19 14:12:42","post_date_gmt":"2015-12-19 14:12:42","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=6","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"7","acmeblog_post_views_count":"441","acmeblog_sidebar_layout":"right-sidebar","acmeblog-related-posts-display":"default-related-posts","acmeblog-related-posts-show-image":"1","acmeblog-related-posts-first-featured":"1","acmeblog-related-posts-show-categories":"1","acmeblog-related-posts-show-date":"1","acmeblog-related-posts-show-author":"1","acmeblog-related-posts-show-comments":"1","acmeblog-related-posts-number":"3","acmeblog-related-posts-content-words":"9","acmeblog-related-title":"Related posts","acmeblog-related-posts-column-number":"3","acmeblog_replace_featured_image":"","acmeblog_video_autoplay":""},"terms":{"category":[{"term_id":3,"name":"Featured","slug":"featured","term_group":0,"term_taxonomy_id":3,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Posts","post_id":12,"post_title":"GPS Car","post_status":"publish","post_name":"gps-car","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2015-12-18 14:11:33","post_date_gmt":"2015-12-18 14:11:33","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=12","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"13","acmeblog_post_views_count":"344","acmeblog_sidebar_layout":"left-sidebar","acmeblog-related-posts-display":"default-related-posts","acmeblog-related-posts-show-image":"1","acmeblog-related-posts-first-featured":"0","acmeblog-related-posts-show-categories":"1","acmeblog-related-posts-show-date":"1","acmeblog-related-posts-show-author":"1","acmeblog-related-posts-show-comments":"1","acmeblog-related-posts-number":"3","acmeblog-related-posts-content-words":"9","acmeblog-related-title":"Related posts","acmeblog-related-posts-column-number":"3","acmeblog_replace_featured_image":"","acmeblog_video_autoplay":""},"terms":{"category":[{"term_id":3,"name":"Featured","slug":"featured","term_group":0,"term_taxonomy_id":3,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]},{"term_id":4,"name":"Sports","slug":"sports","term_group":0,"term_taxonomy_id":4,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Posts","post_id":9,"post_title":"Pen Tablet","post_status":"publish","post_name":"pen-tablet","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2015-12-17 14:09:40","post_date_gmt":"2015-12-17 14:09:40","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=9","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"10","acmeblog_post_views_count":"839","acmeblog_sidebar_layout":"both-sidebar","acmeblog-related-posts-display":"default-related-posts","acmeblog-related-posts-show-image":"1","acmeblog-related-posts-first-featured":"0","acmeblog-related-posts-show-categories":"1","acmeblog-related-posts-show-date":"1","acmeblog-related-posts-show-author":"1","acmeblog-related-posts-show-comments":"1","acmeblog-related-posts-number":"3","acmeblog-related-posts-content-words":"9","acmeblog-related-title":"Related posts","acmeblog-related-posts-column-number":"3","acmeblog_replace_featured_image":"","acmeblog_video_autoplay":""},"terms":{"category":[{"term_id":3,"name":"Featured","slug":"featured","term_group":0,"term_taxonomy_id":3,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]},{"term_id":5,"name":"Technology","slug":"technology","term_group":0,"term_taxonomy_id":5,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Posts","post_id":15,"post_title":"Coffee Time","post_status":"publish","post_name":"coffee-time","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2015-11-03 14:15:32","post_date_gmt":"2015-11-03 14:15:32","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=15","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"16","acmeblog_post_views_count":"436","acmeblog_sidebar_layout":"no-sidebar","acmeblog-related-posts-display":"default-related-posts","acmeblog-related-posts-show-image":"1","acmeblog-related-posts-first-featured":"0","acmeblog-related-posts-show-categories":"1","acmeblog-related-posts-show-date":"1","acmeblog-related-posts-show-author":"1","acmeblog-related-posts-show-comments":"1","acmeblog-related-posts-number":"3","acmeblog-related-posts-content-words":"9","acmeblog-related-title":"Related posts","acmeblog-related-posts-column-number":"3","acmeblog_replace_featured_image":"","acmeblog_video_autoplay":"","_edit_lock":"1463138458:1"},"terms":{"category":[{"term_id":2,"name":"Entertainment","slug":"entertainment","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Posts","post_id":25,"post_title":"Bird wild predator","post_status":"publish","post_name":"bird-wild-predator","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2015-10-03 15:56:02","post_date_gmt":"2015-10-03 15:56:02","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=25","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"26","acmeblog_post_views_count":"437"},"terms":{"category":[{"term_id":3,"name":"Featured","slug":"featured","term_group":0,"term_taxonomy_id":3,"taxonomy":"category","description":"","parent":0,"count":4,"filter":"raw","meta":[]},{"term_id":6,"name":"Travel","slug":"travel","term_group":0,"term_taxonomy_id":6,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Posts","post_id":28,"post_title":"Diary writing","post_status":"publish","post_name":"diary-writing","post_content":"Mauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper. Suspendisse tempus nisi utMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper. Suspendisse tempus nisi utMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper. Suspendisse tempus nisi utMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper.\n\nMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper. Suspendisse tempus nisi utMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper. Suspendisse tempus nisi utMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper. Suspendisse tempus nisi utMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper.\n\nMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper. Suspendisse tempus nisi utMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper. Suspendisse tempus nisi utMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper. Suspendisse tempus nisi utMauris lacus dolor, ultricies vel sodales ac, egestas vel eros. Quisque posuere quam eget eleifend semper.\n","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2015-09-03 16:02:41","post_date_gmt":"2015-09-03 16:02:41","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?p=28","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"29","acmeblog_post_views_count":"196"},"terms":{"category":[{"term_id":5,"name":"Technology","slug":"technology","term_group":0,"term_taxonomy_id":5,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]},{"term_id":6,"name":"Travel","slug":"travel","term_group":0,"term_taxonomy_id":6,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}}],"page":[{"type_title":"Pages","post_id":2,"post_title":"Sample Page","post_status":"publish","post_name":"sample-page","post_content":"This is an example page. It's different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n<blockquote>Hi there! I'm a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin' caught in the rain.)<\/blockquote>\n\n...or something like this:\n\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.<\/blockquote>\n\nAs a new WordPress user, you should go to <a href=\"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/wp-admin\/\">your dashboard<\/a> to delete this page and create new pages for your content. Have fun!","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-02-13 05:21:16","post_date_gmt":"2016-02-13 05:21:16","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/?page_id=2","post_mime_type":"","meta":{"_wp_page_template":"default"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Pages","post_id":61,"post_title":"About","post_status":"publish","post_name":"about","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\n","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 16:40:16","post_date_gmt":"2016-01-03 16:40:16","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?page_id=61","post_mime_type":"","meta":{"_edit_last":"1","acmeblog_post_views_count":"416"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Pages","post_id":56,"post_title":"Contact","post_status":"publish","post_name":"contact","post_content":"<strong>Use contact form 7 plugin<\/strong>\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\u2019s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n[contact-form-7 id=\"55\" title=\"Contact form 1\"]","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 16:32:08","post_date_gmt":"2016-01-03 16:32:08","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?page_id=56","post_mime_type":"","meta":{"_edit_last":"1","acmeblog_post_views_count":"757"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Pages","post_id":21,"post_title":"Blog","post_status":"publish","post_name":"blog","post_content":"","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 15:16:47","post_date_gmt":"2016-01-03 15:16:47","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?page_id=21","post_mime_type":"","meta":{"_edit_last":"1"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Pages","post_id":19,"post_title":"Home","post_status":"publish","post_name":"home","post_content":"","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 14:41:20","post_date_gmt":"2016-01-03 14:41:20","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?page_id=19","post_mime_type":"","meta":{"_edit_last":"1"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}},{"type_title":"Pages","post_id":50,"post_title":"Sample Page","post_status":"publish","post_name":"sample-page-2","post_content":"This is an example page. It's different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n<blockquote>Hi there! I'm a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin' caught in the rain.)<\/blockquote>\n\n...or something like this:\n\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.<\/blockquote>\n\nAs a new WordPress user, you should go to <a href=\"http:\/\/www.demo.acmethemes.com\/acmeblog\/wp-admin\/\">your dashboard<\/a> to delete this page and create new pages for your content. Have fun!","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-01-03 13:21:12","post_date_gmt":"2016-01-03 13:21:12","guid":"http:\/\/www.demo.acmethemes.com\/acmeblog\/?page_id=2","post_mime_type":"","meta":{"_wp_page_template":"default"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}}],"custom_css":[],"wp_block":[],"wpcf7_contact_form":[{"type_title":"Contact Forms","post_id":105,"post_title":"Contact form 1","post_status":"publish","post_name":"contact-form-1","post_content":"<p>Your Name (required)<br \/>\r\n [text* your-name] <\/p>\r\n\r\n<p>Your Email (required)<br \/>\r\n [email* your-email] <\/p>\r\n\r\n<p>Subject<br \/>\r\n [text your-subject] <\/p>\r\n\r\n<p>Your Message<br \/>\r\n [textarea your-message] <\/p>\r\n\r\n<p>[submit \"Send\"]<\/p>\n1\nFrom site contact form\n[your-name] <wordpress@demo.acmethemes.com>\nacmethemes@gmail.com\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on AcmeBlog Pro (http:\/\/www.demo.acmethemes.com\/acmeblogpro)\nReply-To: [your-email]\n\n\n\n\n[your-subject]\nAcmeBlog Pro <wordpress@demo.acmethemes.com>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on AcmeBlog Pro (http:\/\/www.demo.acmethemes.com\/acmeblogpro)\nReply-To: acmethemes@gmail.com\n\n\n\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill in the required field.\nThis input is too long.\nThis input is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-02-13 11:58:01","post_date_gmt":"2016-02-13 11:58:01","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/?post_type=wpcf7_contact_form&#038;p=97","post_mime_type":"","meta":{"_form":"<p>Your Name (required)<br \/>\n [text* your-name] <\/p>\n\n<p>Your Email (required)<br \/>\n [email* your-email] <\/p>\n\n<p>Subject<br \/>\n [text your-subject] <\/p>\n\n<p>Your Message<br \/>\n [textarea your-message] <\/p>\n\n<p>[submit \"Send\"]<\/p>","_mail":{"active":true,"subject":"From site contact form","sender":"[your-name] <wordpress@demo.acmethemes.com>","recipient":"acmethemes@gmail.com","body":"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on AcmeBlog Pro (http:\/\/www.demo.acmethemes.com\/acmeblogpro)","additional_headers":"Reply-To: [your-email]","attachments":"","use_html":false,"exclude_blank":false},"_mail_2":{"active":false,"subject":"[your-subject]","sender":"AcmeBlog Pro <wordpress@demo.acmethemes.com>","recipient":"[your-email]","body":"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on AcmeBlog Pro (http:\/\/www.demo.acmethemes.com\/acmeblogpro)","additional_headers":"Reply-To: acmethemes@gmail.com","attachments":"","use_html":false,"exclude_blank":false},"_messages":{"mail_sent_ok":"Your message was sent successfully. Thanks.","mail_sent_ng":"Failed to send your message. Please try later or contact the administrator by another method.","validation_error":"Validation errors occurred. Please confirm the fields and submit it again.","spam":"Failed to send your message. Please try later or contact the administrator by another method.","accept_terms":"Please accept the terms to proceed.","invalid_required":"Please fill in the required field.","invalid_too_long":"This input is too long.","invalid_too_short":"This input is too short.","invalid_date":"The date format is incorrect.","date_too_early":"The date is before the earliest one allowed.","date_too_late":"The date is after the latest one allowed.","upload_failed":"There was an unknown error uploading the file.","upload_file_type_invalid":"You are not allowed to upload files of this type.","upload_file_too_large":"The file is too big.","upload_failed_php_error":"There was an error uploading the file.","invalid_number":"The number format is invalid.","number_too_small":"The number is smaller than the minimum allowed.","number_too_large":"The number is larger than the maximum allowed.","quiz_answer_not_correct":"The answer to the quiz is incorrect.","captcha_not_match":"Your entered code is incorrect.","invalid_email":"The e-mail address entered is invalid.","invalid_url":"The URL is invalid.","invalid_tel":"The telephone number is invalid."},"_additional_settings":"","_locale":"en_US"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[]}}],"nav_menu_item":[{"type_title":"Navigation Menu Items","post_id":120,"post_title":"Home 3","post_status":"publish","post_name":"home-3","post_content":"","post_excerpt":"","post_parent":0,"menu_order":4,"post_date":"2016-05-13 11:26:11","post_date_gmt":"2016-05-13 11:26:11","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-3\/2016\/05\/13\/home-3\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"17","_menu_item_object_id":"120","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-3"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":9,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":9,"taxonomy":"nav_menu","description":"","parent":0,"count":20,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":108,"post_title":"","post_status":"publish","post_name":"108","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":15,"post_date":"2016-05-13 11:11:20","post_date_gmt":"2016-05-13 11:11:20","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-3\/2016\/05\/13\/108\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"46","_menu_item_object_id":"44","_menu_item_object":"post","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":9,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":9,"taxonomy":"nav_menu","description":"","parent":0,"count":20,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":109,"post_title":"","post_status":"publish","post_name":"109","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":17,"post_date":"2016-05-13 11:11:20","post_date_gmt":"2016-05-13 11:11:20","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-3\/2016\/05\/13\/109\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"47","_menu_item_object_id":"25","_menu_item_object":"post","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":9,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":9,"taxonomy":"nav_menu","description":"","parent":0,"count":20,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":110,"post_title":"","post_status":"publish","post_name":"110","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":18,"post_date":"2016-05-13 11:11:20","post_date_gmt":"2016-05-13 11:11:20","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-3\/2016\/05\/13\/110\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"47","_menu_item_object_id":"12","_menu_item_object":"post","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":9,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":9,"taxonomy":"nav_menu","description":"","parent":0,"count":20,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":111,"post_title":"Right Sidebar","post_status":"publish","post_name":"right-sidebar","post_content":"","post_excerpt":"","post_parent":0,"menu_order":6,"post_date":"2016-05-13 11:11:20","post_date_gmt":"2016-05-13 11:11:20","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-3\/2016\/05\/13\/right-sidebar\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"102","_menu_item_object_id":"51","_menu_item_object":"post","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":9,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":9,"taxonomy":"nav_menu","description":"","parent":0,"count":20,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":112,"post_title":"Left Sidebar","post_status":"publish","post_name":"left-sidebar","post_content":"","post_excerpt":"","post_parent":0,"menu_order":7,"post_date":"2016-05-13 11:11:20","post_date_gmt":"2016-05-13 11:11:20","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-3\/2016\/05\/13\/left-sidebar\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"102","_menu_item_object_id":"12","_menu_item_object":"post","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":9,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":9,"taxonomy":"nav_menu","description":"","parent":0,"count":20,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":113,"post_title":"Both Sidebar","post_status":"publish","post_name":"both-sidebar","post_content":"","post_excerpt":"","post_parent":0,"menu_order":8,"post_date":"2016-05-13 11:11:20","post_date_gmt":"2016-05-13 11:11:20","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-3\/2016\/05\/13\/both-sidebar\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"102","_menu_item_object_id":"9","_menu_item_object":"post","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":9,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":9,"taxonomy":"nav_menu","description":"","parent":0,"count":20,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":114,"post_title":"No Sidebar","post_status":"publish","post_name":"no-sidebar","post_content":"","post_excerpt":"","post_parent":0,"menu_order":9,"post_date":"2016-05-13 11:11:20","post_date_gmt":"2016-05-13 11:11:20","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-3\/2016\/05\/13\/no-sidebar\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"102","_menu_item_object_id":"15","_menu_item_object":"post","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":9,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":9,"taxonomy":"nav_menu","description":"","parent":0,"count":20,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":115,"post_title":"Related Post Left","post_status":"publish","post_name":"related-post-left","post_content":"","post_excerpt":"","post_parent":0,"menu_order":10,"post_date":"2016-05-13 11:11:20","post_date_gmt":"2016-05-13 11:11:20","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-3\/2016\/05\/13\/related-post-left\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"102","_menu_item_object_id":"38","_menu_item_object":"post","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":9,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":9,"taxonomy":"nav_menu","description":"","parent":0,"count":20,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":116,"post_title":"Related Post Right","post_status":"publish","post_name":"related-post-right","post_content":"","post_excerpt":"","post_parent":0,"menu_order":11,"post_date":"2016-05-13 11:11:20","post_date_gmt":"2016-05-13 11:11:20","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-3\/2016\/05\/13\/related-post-right\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"102","_menu_item_object_id":"41","_menu_item_object":"post","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":9,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":9,"taxonomy":"nav_menu","description":"","parent":0,"count":20,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":117,"post_title":"Related Post Featured","post_status":"publish","post_name":"related-post-featured","post_content":"","post_excerpt":"","post_parent":0,"menu_order":12,"post_date":"2016-05-13 11:11:20","post_date_gmt":"2016-05-13 11:11:20","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-3\/2016\/05\/13\/related-post-featured\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"102","_menu_item_object_id":"44","_menu_item_object":"post","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":9,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":9,"taxonomy":"nav_menu","description":"","parent":0,"count":20,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":118,"post_title":"","post_status":"publish","post_name":"118","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":13,"post_date":"2016-05-13 11:11:20","post_date_gmt":"2016-05-13 11:11:20","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-3\/2016\/05\/13\/118\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"102","_menu_item_object_id":"91","_menu_item_object":"post","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":9,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":9,"taxonomy":"nav_menu","description":"","parent":0,"count":20,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":94,"post_title":"AcmeThemes","post_status":"publish","post_name":"acmethemes","post_content":"","post_excerpt":"","post_parent":0,"menu_order":1,"post_date":"2016-05-13 11:11:19","post_date_gmt":"2016-05-13 11:11:19","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-3\/2016\/05\/13\/acmethemes\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"94","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.acmethemes.com\/"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":7,"name":"Links","slug":"links","term_group":0,"term_taxonomy_id":7,"taxonomy":"nav_menu","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":95,"post_title":"Themes","post_status":"publish","post_name":"themes","post_content":"","post_excerpt":"","post_parent":0,"menu_order":2,"post_date":"2016-05-13 11:11:19","post_date_gmt":"2016-05-13 11:11:19","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-3\/2016\/05\/13\/themes\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"95","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.acmethemes.com\/themes\/"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":7,"name":"Links","slug":"links","term_group":0,"term_taxonomy_id":7,"taxonomy":"nav_menu","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":96,"post_title":"Supports","post_status":"publish","post_name":"supports","post_content":"","post_excerpt":"","post_parent":0,"menu_order":3,"post_date":"2016-05-13 11:11:19","post_date_gmt":"2016-05-13 11:11:19","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-3\/2016\/05\/13\/supports\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"96","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.acmethemes.com\/supports\/"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":7,"name":"Links","slug":"links","term_group":0,"term_taxonomy_id":7,"taxonomy":"nav_menu","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":97,"post_title":"Contact","post_status":"publish","post_name":"contact","post_content":"","post_excerpt":"","post_parent":0,"menu_order":4,"post_date":"2016-05-13 11:11:19","post_date_gmt":"2016-05-13 11:11:19","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-3\/2016\/05\/13\/contact\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"97","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.acmethemes.com\/contact\/"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":7,"name":"Links","slug":"links","term_group":0,"term_taxonomy_id":7,"taxonomy":"nav_menu","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":98,"post_title":"AcmeThemes","post_status":"publish","post_name":"acmethemes-2","post_content":"","post_excerpt":"","post_parent":0,"menu_order":1,"post_date":"2016-05-13 11:11:19","post_date_gmt":"2016-05-13 11:11:19","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-3\/2016\/05\/13\/acmethemes-2\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"98","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.acmethemes.com\/"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":8,"name":"Links (2)","slug":"links-2","term_group":0,"term_taxonomy_id":8,"taxonomy":"nav_menu","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":99,"post_title":"Themes","post_status":"publish","post_name":"themes-2","post_content":"","post_excerpt":"","post_parent":0,"menu_order":2,"post_date":"2016-05-13 11:11:19","post_date_gmt":"2016-05-13 11:11:19","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-3\/2016\/05\/13\/themes-2\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"99","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.acmethemes.com\/themes\/"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":8,"name":"Links (2)","slug":"links-2","term_group":0,"term_taxonomy_id":8,"taxonomy":"nav_menu","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":100,"post_title":"Supports","post_status":"publish","post_name":"supports-2","post_content":"","post_excerpt":"","post_parent":0,"menu_order":3,"post_date":"2016-05-13 11:11:19","post_date_gmt":"2016-05-13 11:11:19","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-3\/2016\/05\/13\/supports-2\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"100","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.acmethemes.com\/supports\/"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":8,"name":"Links (2)","slug":"links-2","term_group":0,"term_taxonomy_id":8,"taxonomy":"nav_menu","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":101,"post_title":"Contact","post_status":"publish","post_name":"contact-2","post_content":"","post_excerpt":"","post_parent":0,"menu_order":4,"post_date":"2016-05-13 11:11:19","post_date_gmt":"2016-05-13 11:11:19","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-3\/2016\/05\/13\/contact-2\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"101","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.acmethemes.com\/contact\/"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":8,"name":"Links (2)","slug":"links-2","term_group":0,"term_taxonomy_id":8,"taxonomy":"nav_menu","description":"","parent":0,"count":4,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":102,"post_title":"Features","post_status":"publish","post_name":"features","post_content":"","post_excerpt":"","post_parent":0,"menu_order":5,"post_date":"2016-05-13 11:11:19","post_date_gmt":"2016-05-13 11:11:19","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-3\/2016\/05\/13\/features\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"102","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"#"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":9,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":9,"taxonomy":"nav_menu","description":"","parent":0,"count":20,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":103,"post_title":"Home-1","post_status":"publish","post_name":"home-1","post_content":"","post_excerpt":"","post_parent":0,"menu_order":2,"post_date":"2016-05-13 11:11:19","post_date_gmt":"2016-05-13 11:11:19","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-3\/2016\/05\/13\/home-1\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"17","_menu_item_object_id":"103","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-1\/"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":9,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":9,"taxonomy":"nav_menu","description":"","parent":0,"count":20,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":104,"post_title":"Home 2","post_status":"publish","post_name":"home-2","post_content":"","post_excerpt":"","post_parent":0,"menu_order":3,"post_date":"2016-05-13 11:11:19","post_date_gmt":"2016-05-13 11:11:19","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-3\/2016\/05\/13\/home-2\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"17","_menu_item_object_id":"104","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-2"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":9,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":9,"taxonomy":"nav_menu","description":"","parent":0,"count":20,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":106,"post_title":"","post_status":"publish","post_name":"106","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":19,"post_date":"2016-05-13 11:11:19","post_date_gmt":"2016-05-13 11:11:19","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-3\/2016\/05\/13\/106\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"0","_menu_item_object_id":"61","_menu_item_object":"page","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":9,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":9,"taxonomy":"nav_menu","description":"","parent":0,"count":20,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":107,"post_title":"","post_status":"publish","post_name":"107","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":20,"post_date":"2016-05-13 11:11:19","post_date_gmt":"2016-05-13 11:11:19","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-3\/2016\/05\/13\/107\/","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"0","_menu_item_object_id":"56","_menu_item_object":"page","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":9,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":9,"taxonomy":"nav_menu","description":"","parent":0,"count":20,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":46,"post_title":"","post_status":"publish","post_name":"46","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":14,"post_date":"2016-05-13 11:11:18","post_date_gmt":"2016-05-13 11:11:18","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-3\/2016\/05\/13\/","post_mime_type":"","meta":{"_menu_item_type":"taxonomy","_menu_item_menu_item_parent":"0","_menu_item_object_id":"4","_menu_item_object":"category","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":9,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":9,"taxonomy":"nav_menu","description":"","parent":0,"count":20,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":47,"post_title":"","post_status":"publish","post_name":"47","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":16,"post_date":"2016-05-13 11:11:18","post_date_gmt":"2016-05-13 11:11:18","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-3\/2016\/05\/13\/","post_mime_type":"","meta":{"_menu_item_type":"taxonomy","_menu_item_menu_item_parent":"0","_menu_item_object_id":"6","_menu_item_object":"category","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":9,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":9,"taxonomy":"nav_menu","description":"","parent":0,"count":20,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}},{"type_title":"Navigation Menu Items","post_id":17,"post_title":"Home","post_status":"publish","post_name":"home","post_content":"","post_excerpt":"","post_parent":0,"menu_order":1,"post_date":"2016-05-13 11:11:15","post_date_gmt":"2016-05-13 11:11:15","guid":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/home-3\/2016\/05\/13\/home\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"17","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.demo.acmethemes.com\/acmeblogpro\/"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":9,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":9,"taxonomy":"nav_menu","description":"","parent":0,"count":20,"filter":"raw","meta":[]}],"link_category":[],"post_format":[]}}]}
includes/demo-data/acmeblogpro/demo-4/options.json ADDED
@@ -0,0 +1 @@
 
1
+ {"menu":{"primary":9},"options":{"blogname":"AcmeBlogPro","blogname-child":"AcmeBlogPro","blogdescription":" Blog Column Layout","blogdescription-child":" Blog Column Layout","posts_per_page":"10","posts_per_page-child":"10","date_format":"F j, Y","date_format-child":"F j, Y","time_format":"g:i a","time_format-child":"g:i a","show_on_front":"posts","show_on_front-child":"posts","thumbnail_size_w":"500","thumbnail_size_w-child":"500","thumbnail_size_h":"280","thumbnail_size_h-child":"280","thumbnail_crop":"1","thumbnail_crop-child":"1","medium_size_w":"690","medium_size_w-child":"690","medium_size_h":"400","medium_size_h-child":"400","avatar_default":"mystery","avatar_default-child":"mystery","large_size_w":"1080","large_size_w-child":"1080","large_size_h":"540","large_size_h-child":"540","page_for_posts":"0","page_for_posts-child":"0","page_on_front":"0","page_on_front-child":"0","medium_large_size_w":"0","medium_large_size_w-child":"0","medium_large_size_h":"0","medium_large_size_h-child":"0","theme_mods_acmeblogpro":{"0":false,"acmeblog_theme_options":{"acmeblog-intro-bg-color":"#f88c00","acmeblog-enable-intro-loader":true,"acmeblog-front-page-sidebar-layout":"right-sidebar","acmeblog-sidebar-layout":"right-sidebar","acmeblog-blog-col":"2","acmeblog-archive-col":"2","acmeblog-site-title-color":"#f88c00","acmeblog-primary-color":"#f88c00","acmeblog-menu-active-color":"#f88c00","acmeblog-enable-feature":true,"acmeblog-blog-archive-content-length":"0"},"custom_css_post_id":-1},"theme_mods_acmeblogpro-child":{"0":false,"acmeblog_theme_options":{"acmeblog-intro-bg-color":"#f88c00","acmeblog-enable-intro-loader":true,"acmeblog-front-page-sidebar-layout":"right-sidebar","acmeblog-sidebar-layout":"right-sidebar","acmeblog-blog-col":"2","acmeblog-archive-col":"2","acmeblog-site-title-color":"#f88c00","acmeblog-primary-color":"#f88c00","acmeblog-menu-active-color":"#f88c00","acmeblog-enable-feature":true,"acmeblog-blog-archive-content-length":"0"},"nav_menu_locations":{"primary":9},"custom_css_post_id":-1}}}
includes/demo-data/acmeblogpro/demo-4/screenshot.jpg ADDED
Binary file
includes/demo-data/acmeblogpro/demo-4/widgets.json ADDED
@@ -0,0 +1 @@
 
1
+ {"widget_positions":{"wp_inactive_widgets":[],"acmeblog-sidebar":["search-2","recent-posts-2","recent-comments-2","archives-2","categories-2","meta-2"],"acmeblog-sidebar-left":null,"footer-top-col-one":null,"array_version":3},"widget_options":{"search":{"2":{"title":""},"_multiwidget":1},"recent-posts":{"2":{"title":"","number":5},"_multiwidget":1},"recent-comments":{"2":{"title":"","number":5},"_multiwidget":1},"archives":{"2":{"title":"","count":0,"dropdown":0},"_multiwidget":1},"categories":{"2":{"title":"","count":0,"hierarchical":0,"dropdown":0},"_multiwidget":1},"meta":{"2":{"title":""},"_multiwidget":1}}}
includes/demo-data/acmephoto/demo-1/content.json ADDED
@@ -0,0 +1 @@
 
1
+ {"attachment":[{"type_title":"Media","post_id":243,"post_title":"halloween-1783356_1280","post_status":"inherit","post_name":"halloween-1783356_1280","post_content":"","post_excerpt":"","post_parent":66,"menu_order":0,"post_date":"2016-11-05 10:12:16","post_date_gmt":"2016-11-05 10:12:16","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/08\/halloween-1783356_1280.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/halloween-1783356_1280.jpg","_wp_attachment_metadata":{"width":1024,"height":1280,"file":"2016\/08\/halloween-1783356_1280.jpg","sizes":{"thumbnail":{"file":"halloween-1783356_1280-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"halloween-1783356_1280-240x300.jpg","width":240,"height":300,"mime-type":"image\/jpeg"},"medium_large":{"file":"halloween-1783356_1280-768x960.jpg","width":768,"height":960,"mime-type":"image\/jpeg"},"large":{"file":"halloween-1783356_1280-819x1024.jpg","width":819,"height":1024,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":242,"post_title":"wedding-dresses-1486242_1280","post_status":"inherit","post_name":"wedding-dresses-1486242_1280","post_content":"","post_excerpt":"","post_parent":66,"menu_order":0,"post_date":"2016-11-05 09:56:48","post_date_gmt":"2016-11-05 09:56:48","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/08\/wedding-dresses-1486242_1280.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/wedding-dresses-1486242_1280.jpg","_wp_attachment_metadata":{"width":853,"height":1280,"file":"2016\/08\/wedding-dresses-1486242_1280.jpg","sizes":{"thumbnail":{"file":"wedding-dresses-1486242_1280-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"wedding-dresses-1486242_1280-200x300.jpg","width":200,"height":300,"mime-type":"image\/jpeg"},"medium_large":{"file":"wedding-dresses-1486242_1280-768x1152.jpg","width":768,"height":1152,"mime-type":"image\/jpeg"},"large":{"file":"wedding-dresses-1486242_1280-682x1024.jpg","width":682,"height":1024,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"2.2","credit":"","camera":"Canon EOS 5D Mark III","caption":"","created_timestamp":"0","copyright":"","focal_length":"85","iso":"500","shutter_speed":"0.00625","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":241,"post_title":"new-zealand-679071_1280","post_status":"inherit","post_name":"new-zealand-679071_1280","post_content":"","post_excerpt":"","post_parent":232,"menu_order":0,"post_date":"2016-11-05 09:49:15","post_date_gmt":"2016-11-05 09:49:15","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/11\/new-zealand-679071_1280.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/11\/new-zealand-679071_1280.jpg","_wp_attachment_metadata":{"width":1280,"height":847,"file":"2016\/11\/new-zealand-679071_1280.jpg","sizes":{"thumbnail":{"file":"new-zealand-679071_1280-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"new-zealand-679071_1280-300x199.jpg","width":300,"height":199,"mime-type":"image\/jpeg"},"medium_large":{"file":"new-zealand-679071_1280-768x508.jpg","width":768,"height":508,"mime-type":"image\/jpeg"},"large":{"file":"new-zealand-679071_1280-1024x678.jpg","width":1024,"height":678,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":240,"post_title":"new-zealand-679068_1280","post_status":"inherit","post_name":"new-zealand-679068_1280","post_content":"","post_excerpt":"","post_parent":228,"menu_order":0,"post_date":"2016-11-05 09:46:38","post_date_gmt":"2016-11-05 09:46:38","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/11\/new-zealand-679068_1280.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/11\/new-zealand-679068_1280.jpg","_wp_attachment_metadata":{"width":1280,"height":847,"file":"2016\/11\/new-zealand-679068_1280.jpg","sizes":{"thumbnail":{"file":"new-zealand-679068_1280-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"new-zealand-679068_1280-300x199.jpg","width":300,"height":199,"mime-type":"image\/jpeg"},"medium_large":{"file":"new-zealand-679068_1280-768x508.jpg","width":768,"height":508,"mime-type":"image\/jpeg"},"large":{"file":"new-zealand-679068_1280-1024x678.jpg","width":1024,"height":678,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":239,"post_title":"mountains-1622731_1280","post_status":"inherit","post_name":"mountains-1622731_1280","post_content":"","post_excerpt":"","post_parent":232,"menu_order":0,"post_date":"2016-11-05 09:45:15","post_date_gmt":"2016-11-05 09:45:15","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/11\/mountains-1622731_1280.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/11\/mountains-1622731_1280.jpg","_wp_attachment_metadata":{"width":1280,"height":850,"file":"2016\/11\/mountains-1622731_1280.jpg","sizes":{"thumbnail":{"file":"mountains-1622731_1280-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"mountains-1622731_1280-300x199.jpg","width":300,"height":199,"mime-type":"image\/jpeg"},"medium_large":{"file":"mountains-1622731_1280-768x510.jpg","width":768,"height":510,"mime-type":"image\/jpeg"},"large":{"file":"mountains-1622731_1280-1024x680.jpg","width":1024,"height":680,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":238,"post_title":"hair-1462985_1280","post_status":"inherit","post_name":"hair-1462985_1280","post_content":"","post_excerpt":"","post_parent":66,"menu_order":0,"post_date":"2016-11-05 09:41:54","post_date_gmt":"2016-11-05 09:41:54","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/08\/hair-1462985_1280.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/hair-1462985_1280.jpg","_wp_attachment_metadata":{"width":850,"height":1280,"file":"2016\/08\/hair-1462985_1280.jpg","sizes":{"thumbnail":{"file":"hair-1462985_1280-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"hair-1462985_1280-199x300.jpg","width":199,"height":300,"mime-type":"image\/jpeg"},"medium_large":{"file":"hair-1462985_1280-768x1157.jpg","width":768,"height":1157,"mime-type":"image\/jpeg"},"large":{"file":"hair-1462985_1280-680x1024.jpg","width":680,"height":1024,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"2.8","credit":"","camera":"NIKON D90","caption":"","created_timestamp":"0","copyright":"","focal_length":"200","iso":"0","shutter_speed":"0.004","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":236,"post_title":"aroni-738303_1280","post_status":"inherit","post_name":"aroni-738303_1280","post_content":"","post_excerpt":"","post_parent":66,"menu_order":0,"post_date":"2016-11-05 09:24:45","post_date_gmt":"2016-11-05 09:24:45","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/08\/aroni-738303_1280.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/aroni-738303_1280.jpg","_wp_attachment_metadata":{"width":830,"height":1280,"file":"2016\/08\/aroni-738303_1280.jpg","sizes":{"thumbnail":{"file":"aroni-738303_1280-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"aroni-738303_1280-195x300.jpg","width":195,"height":300,"mime-type":"image\/jpeg"},"medium_large":{"file":"aroni-738303_1280-768x1184.jpg","width":768,"height":1184,"mime-type":"image\/jpeg"},"large":{"file":"aroni-738303_1280-664x1024.jpg","width":664,"height":1024,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":235,"post_title":"straw-1466628_1280-2","post_status":"inherit","post_name":"straw-1466628_1280-2","post_content":"","post_excerpt":"","post_parent":66,"menu_order":0,"post_date":"2016-11-05 09:21:55","post_date_gmt":"2016-11-05 09:21:55","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/08\/straw-1466628_1280-2.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/straw-1466628_1280-2.jpg","_wp_attachment_metadata":{"width":850,"height":1280,"file":"2016\/08\/straw-1466628_1280-2.jpg","sizes":{"thumbnail":{"file":"straw-1466628_1280-2-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"straw-1466628_1280-2-199x300.jpg","width":199,"height":300,"mime-type":"image\/jpeg"},"medium_large":{"file":"straw-1466628_1280-2-768x1157.jpg","width":768,"height":1157,"mime-type":"image\/jpeg"},"large":{"file":"straw-1466628_1280-2-680x1024.jpg","width":680,"height":1024,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"NIKON D90","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"100","shutter_speed":"0.00066666666666667","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":234,"post_title":"eiffel-tower-927634_1280","post_status":"inherit","post_name":"eiffel-tower-927634_1280","post_content":"","post_excerpt":"","post_parent":228,"menu_order":0,"post_date":"2016-11-05 08:59:18","post_date_gmt":"2016-11-05 08:59:18","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/11\/eiffel-tower-927634_1280.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/11\/eiffel-tower-927634_1280.jpg","_wp_attachment_metadata":{"width":1280,"height":720,"file":"2016\/11\/eiffel-tower-927634_1280.jpg","sizes":{"thumbnail":{"file":"eiffel-tower-927634_1280-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"eiffel-tower-927634_1280-300x169.jpg","width":300,"height":169,"mime-type":"image\/jpeg"},"medium_large":{"file":"eiffel-tower-927634_1280-768x432.jpg","width":768,"height":432,"mime-type":"image\/jpeg"},"large":{"file":"eiffel-tower-927634_1280-1024x576.jpg","width":1024,"height":576,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":223,"post_title":"acmephoto","post_status":"inherit","post_name":"acmephoto","post_content":"","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-09-05 12:49:35","post_date_gmt":"2016-09-05 12:49:35","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/09\/acmephoto.zip","post_mime_type":"application\/zip","meta":{"_wp_attached_file":"2016\/09\/acmephoto.zip"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":204,"post_title":"logo-white","post_status":"inherit","post_name":"logo-white-2","post_content":"","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 11:30:04","post_date_gmt":"2016-08-30 11:30:04","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/08\/logo-white-1.png","post_mime_type":"image\/png","meta":{"_wp_attached_file":"2016\/08\/logo-white-1.png","_wp_attachment_metadata":{"width":208,"height":44,"file":"2016\/08\/logo-white-1.png","sizes":{"thumbnail":{"file":"logo-white-1-150x44.png","width":150,"height":44,"mime-type":"image\/png"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":196,"post_title":"acmethemes-logo","post_status":"inherit","post_name":"acmethemes-logo","post_content":"","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 11:18:05","post_date_gmt":"2016-08-30 11:18:05","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/08\/acmethemes-logo.png","post_mime_type":"image\/png","meta":{"_wp_attached_file":"2016\/08\/acmethemes-logo.png","_wp_attachment_metadata":{"width":208,"height":44,"file":"2016\/08\/acmethemes-logo.png","sizes":{"thumbnail":{"file":"acmethemes-logo-150x44.png","width":150,"height":44,"mime-type":"image\/png"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":110,"post_title":"child-428690_1280 (1)","post_status":"inherit","post_name":"child-428690_1280-1","post_content":"","post_excerpt":"","post_parent":104,"menu_order":0,"post_date":"2016-08-30 08:08:23","post_date_gmt":"2016-08-30 08:08:23","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/07\/child-428690_1280-1.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/07\/child-428690_1280-1.jpg","_wp_attachment_metadata":{"width":1280,"height":855,"file":"2016\/07\/child-428690_1280-1.jpg","sizes":{"thumbnail":{"file":"child-428690_1280-1-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"child-428690_1280-1-300x200.jpg","width":300,"height":200,"mime-type":"image\/jpeg"},"medium_large":{"file":"child-428690_1280-1-768x513.jpg","width":768,"height":513,"mime-type":"image\/jpeg"},"large":{"file":"child-428690_1280-1-1024x684.jpg","width":1024,"height":684,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":109,"post_title":"girl-429380_1280 (1)","post_status":"inherit","post_name":"girl-429380_1280-1","post_content":"","post_excerpt":"","post_parent":104,"menu_order":0,"post_date":"2016-08-30 08:05:49","post_date_gmt":"2016-08-30 08:05:49","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/07\/girl-429380_1280-1.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/07\/girl-429380_1280-1.jpg","_wp_attachment_metadata":{"width":1280,"height":853,"file":"2016\/07\/girl-429380_1280-1.jpg","sizes":{"thumbnail":{"file":"girl-429380_1280-1-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"girl-429380_1280-1-300x200.jpg","width":300,"height":200,"mime-type":"image\/jpeg"},"medium_large":{"file":"girl-429380_1280-1-768x512.jpg","width":768,"height":512,"mime-type":"image\/jpeg"},"large":{"file":"girl-429380_1280-1-1024x682.jpg","width":1024,"height":682,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":108,"post_title":"beach-1368021_1280 (1)","post_status":"inherit","post_name":"beach-1368021_1280-1","post_content":"","post_excerpt":"","post_parent":104,"menu_order":0,"post_date":"2016-08-30 08:04:18","post_date_gmt":"2016-08-30 08:04:18","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/07\/beach-1368021_1280-1.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/07\/beach-1368021_1280-1.jpg","_wp_attachment_metadata":{"width":1280,"height":847,"file":"2016\/07\/beach-1368021_1280-1.jpg","sizes":{"thumbnail":{"file":"beach-1368021_1280-1-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"beach-1368021_1280-1-300x199.jpg","width":300,"height":199,"mime-type":"image\/jpeg"},"medium_large":{"file":"beach-1368021_1280-1-768x508.jpg","width":768,"height":508,"mime-type":"image\/jpeg"},"large":{"file":"beach-1368021_1280-1-1024x678.jpg","width":1024,"height":678,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":105,"post_title":"girl-1572419_1280 (1)","post_status":"inherit","post_name":"girl-1572419_1280-1","post_content":"","post_excerpt":"","post_parent":104,"menu_order":0,"post_date":"2016-08-30 08:00:11","post_date_gmt":"2016-08-30 08:00:11","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/08\/girl-1572419_1280-1.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/girl-1572419_1280-1.jpg","_wp_attachment_metadata":{"width":1280,"height":888,"file":"2016\/08\/girl-1572419_1280-1.jpg","sizes":{"thumbnail":{"file":"girl-1572419_1280-1-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"girl-1572419_1280-1-300x208.jpg","width":300,"height":208,"mime-type":"image\/jpeg"},"medium_large":{"file":"girl-1572419_1280-1-768x533.jpg","width":768,"height":533,"mime-type":"image\/jpeg"},"large":{"file":"girl-1572419_1280-1-1024x710.jpg","width":1024,"height":710,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":100,"post_title":"balloons-388973_1280 (1)","post_status":"inherit","post_name":"balloons-388973_1280-1","post_content":"","post_excerpt":"","post_parent":95,"menu_order":0,"post_date":"2016-08-30 07:54:37","post_date_gmt":"2016-08-30 07:54:37","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/07\/balloons-388973_1280-1.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/07\/balloons-388973_1280-1.jpg","_wp_attachment_metadata":{"width":1280,"height":853,"file":"2016\/07\/balloons-388973_1280-1.jpg","sizes":{"thumbnail":{"file":"balloons-388973_1280-1-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"balloons-388973_1280-1-300x200.jpg","width":300,"height":200,"mime-type":"image\/jpeg"},"medium_large":{"file":"balloons-388973_1280-1-768x512.jpg","width":768,"height":512,"mime-type":"image\/jpeg"},"large":{"file":"balloons-388973_1280-1-1024x682.jpg","width":1024,"height":682,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":98,"post_title":"feet-538245_1280 (1)","post_status":"inherit","post_name":"feet-538245_1280-1","post_content":"","post_excerpt":"","post_parent":95,"menu_order":0,"post_date":"2016-08-30 07:52:55","post_date_gmt":"2016-08-30 07:52:55","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/07\/feet-538245_1280-1.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/07\/feet-538245_1280-1.jpg","_wp_attachment_metadata":{"width":1280,"height":853,"file":"2016\/07\/feet-538245_1280-1.jpg","sizes":{"thumbnail":{"file":"feet-538245_1280-1-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"feet-538245_1280-1-300x200.jpg","width":300,"height":200,"mime-type":"image\/jpeg"},"medium_large":{"file":"feet-538245_1280-1-768x512.jpg","width":768,"height":512,"mime-type":"image\/jpeg"},"large":{"file":"feet-538245_1280-1-1024x682.jpg","width":1024,"height":682,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":96,"post_title":"walking-591202_1280 (1)","post_status":"inherit","post_name":"walking-591202_1280-1","post_content":"","post_excerpt":"","post_parent":95,"menu_order":0,"post_date":"2016-08-30 07:50:54","post_date_gmt":"2016-08-30 07:50:54","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/08\/walking-591202_1280-1.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/walking-591202_1280-1.jpg","_wp_attachment_metadata":{"width":1280,"height":853,"file":"2016\/08\/walking-591202_1280-1.jpg","sizes":{"thumbnail":{"file":"walking-591202_1280-1-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"walking-591202_1280-1-300x200.jpg","width":300,"height":200,"mime-type":"image\/jpeg"},"medium_large":{"file":"walking-591202_1280-1-768x512.jpg","width":768,"height":512,"mime-type":"image\/jpeg"},"large":{"file":"walking-591202_1280-1-1024x682.jpg","width":1024,"height":682,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":91,"post_title":"selfie-429449_1280 (1)","post_status":"inherit","post_name":"selfie-429449_1280-1","post_content":"","post_excerpt":"","post_parent":87,"menu_order":0,"post_date":"2016-08-30 07:42:08","post_date_gmt":"2016-08-30 07:42:08","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/08\/selfie-429449_1280-1.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/selfie-429449_1280-1.jpg","_wp_attachment_metadata":{"width":1280,"height":853,"file":"2016\/08\/selfie-429449_1280-1.jpg","sizes":{"thumbnail":{"file":"selfie-429449_1280-1-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"selfie-429449_1280-1-300x200.jpg","width":300,"height":200,"mime-type":"image\/jpeg"},"medium_large":{"file":"selfie-429449_1280-1-768x512.jpg","width":768,"height":512,"mime-type":"image\/jpeg"},"large":{"file":"selfie-429449_1280-1-1024x682.jpg","width":1024,"height":682,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":89,"post_title":"car-1577048_1280 (2)","post_status":"inherit","post_name":"car-1577048_1280-2","post_content":"","post_excerpt":"","post_parent":87,"menu_order":0,"post_date":"2016-08-30 07:37:59","post_date_gmt":"2016-08-30 07:37:59","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/08\/car-1577048_1280-2.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/car-1577048_1280-2.jpg","_wp_attachment_metadata":{"width":1280,"height":853,"file":"2016\/08\/car-1577048_1280-2.jpg","sizes":{"thumbnail":{"file":"car-1577048_1280-2-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"car-1577048_1280-2-300x200.jpg","width":300,"height":200,"mime-type":"image\/jpeg"},"medium_large":{"file":"car-1577048_1280-2-768x512.jpg","width":768,"height":512,"mime-type":"image\/jpeg"},"large":{"file":"car-1577048_1280-2-1024x682.jpg","width":1024,"height":682,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":85,"post_title":"aroni-738287_1280 (1)","post_status":"inherit","post_name":"aroni-738287_1280-1","post_content":"","post_excerpt":"","post_parent":83,"menu_order":0,"post_date":"2016-08-30 07:26:42","post_date_gmt":"2016-08-30 07:26:42","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/08\/aroni-738287_1280-1.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/aroni-738287_1280-1.jpg","_wp_attachment_metadata":{"width":857,"height":1280,"file":"2016\/08\/aroni-738287_1280-1.jpg","sizes":{"thumbnail":{"file":"aroni-738287_1280-1-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"aroni-738287_1280-1-201x300.jpg","width":201,"height":300,"mime-type":"image\/jpeg"},"medium_large":{"file":"aroni-738287_1280-1-768x1147.jpg","width":768,"height":1147,"mime-type":"image\/jpeg"},"large":{"file":"aroni-738287_1280-1-686x1024.jpg","width":686,"height":1024,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":74,"post_title":"acmephoto-author","post_status":"inherit","post_name":"acmephoto-author","post_content":"","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-29 11:47:51","post_date_gmt":"2016-08-29 11:47:51","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/08\/acmephoto-author.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/acmephoto-author.jpg","_wp_attachment_metadata":{"width":250,"height":250,"file":"2016\/08\/acmephoto-author.jpg","sizes":{"thumbnail":{"file":"acmephoto-author-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":67,"post_title":"girl-1538818_1920","post_status":"inherit","post_name":"girl-1538818_1920","post_content":"","post_excerpt":"","post_parent":66,"menu_order":0,"post_date":"2016-08-29 10:48:04","post_date_gmt":"2016-08-29 10:48:04","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/08\/girl-1538818_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/girl-1538818_1920.jpg","_wp_attachment_metadata":{"width":1528,"height":1920,"file":"2016\/08\/girl-1538818_1920.jpg","sizes":{"thumbnail":{"file":"girl-1538818_1920-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"girl-1538818_1920-239x300.jpg","width":239,"height":300,"mime-type":"image\/jpeg"},"medium_large":{"file":"girl-1538818_1920-768x965.jpg","width":768,"height":965,"mime-type":"image\/jpeg"},"large":{"file":"girl-1538818_1920-815x1024.jpg","width":815,"height":1024,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":64,"post_title":"girl-1532733_1920","post_status":"inherit","post_name":"girl-1532733_1920","post_content":"","post_excerpt":"","post_parent":63,"menu_order":0,"post_date":"2016-08-29 10:43:56","post_date_gmt":"2016-08-29 10:43:56","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/08\/girl-1532733_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/girl-1532733_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1280,"file":"2016\/08\/girl-1532733_1920.jpg","sizes":{"thumbnail":{"file":"girl-1532733_1920-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"girl-1532733_1920-300x200.jpg","width":300,"height":200,"mime-type":"image\/jpeg"},"medium_large":{"file":"girl-1532733_1920-768x512.jpg","width":768,"height":512,"mime-type":"image\/jpeg"},"large":{"file":"girl-1532733_1920-1024x683.jpg","width":1024,"height":683,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":61,"post_title":"photography-1477075_1280","post_status":"inherit","post_name":"photography-1477075_1280","post_content":"","post_excerpt":"","post_parent":60,"menu_order":0,"post_date":"2016-08-29 10:31:45","post_date_gmt":"2016-08-29 10:31:45","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/08\/photography-1477075_1280.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/photography-1477075_1280.jpg","_wp_attachment_metadata":{"width":1280,"height":847,"file":"2016\/08\/photography-1477075_1280.jpg","sizes":{"thumbnail":{"file":"photography-1477075_1280-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"photography-1477075_1280-300x199.jpg","width":300,"height":199,"mime-type":"image\/jpeg"},"medium_large":{"file":"photography-1477075_1280-768x508.jpg","width":768,"height":508,"mime-type":"image\/jpeg"},"large":{"file":"photography-1477075_1280-1024x678.jpg","width":1024,"height":678,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":58,"post_title":"woman-1129248_1920","post_status":"inherit","post_name":"woman-1129248_1920","post_content":"","post_excerpt":"","post_parent":57,"menu_order":0,"post_date":"2016-08-29 10:24:13","post_date_gmt":"2016-08-29 10:24:13","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/08\/woman-1129248_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/woman-1129248_1920.jpg","_wp_attachment_metadata":{"width":1280,"height":1920,"file":"2016\/08\/woman-1129248_1920.jpg","sizes":{"thumbnail":{"file":"woman-1129248_1920-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"woman-1129248_1920-200x300.jpg","width":200,"height":300,"mime-type":"image\/jpeg"},"medium_large":{"file":"woman-1129248_1920-768x1152.jpg","width":768,"height":1152,"mime-type":"image\/jpeg"},"large":{"file":"woman-1129248_1920-683x1024.jpg","width":683,"height":1024,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":55,"post_title":"yosemite-1590012_1280","post_status":"inherit","post_name":"yosemite-1590012_1280","post_content":"","post_excerpt":"","post_parent":54,"menu_order":0,"post_date":"2016-08-29 10:19:11","post_date_gmt":"2016-08-29 10:19:11","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/08\/yosemite-1590012_1280.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/yosemite-1590012_1280.jpg","_wp_attachment_metadata":{"width":1280,"height":807,"file":"2016\/08\/yosemite-1590012_1280.jpg","sizes":{"thumbnail":{"file":"yosemite-1590012_1280-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"yosemite-1590012_1280-300x189.jpg","width":300,"height":189,"mime-type":"image\/jpeg"},"medium_large":{"file":"yosemite-1590012_1280-768x484.jpg","width":768,"height":484,"mime-type":"image\/jpeg"},"large":{"file":"yosemite-1590012_1280-1024x646.jpg","width":1024,"height":646,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":45,"post_title":"mountain-984277_1280","post_status":"inherit","post_name":"mountain-984277_1280","post_content":"","post_excerpt":"","post_parent":44,"menu_order":0,"post_date":"2016-08-29 10:02:05","post_date_gmt":"2016-08-29 10:02:05","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/08\/mountain-984277_1280.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/mountain-984277_1280.jpg","_wp_attachment_metadata":{"width":1280,"height":853,"file":"2016\/08\/mountain-984277_1280.jpg","sizes":{"thumbnail":{"file":"mountain-984277_1280-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"mountain-984277_1280-300x200.jpg","width":300,"height":200,"mime-type":"image\/jpeg"},"medium_large":{"file":"mountain-984277_1280-768x512.jpg","width":768,"height":512,"mime-type":"image\/jpeg"},"large":{"file":"mountain-984277_1280-1024x682.jpg","width":1024,"height":682,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":42,"post_title":"trendy-1030996_1280","post_status":"inherit","post_name":"trendy-1030996_1280","post_content":"","post_excerpt":"","post_parent":41,"menu_order":0,"post_date":"2016-08-29 09:57:54","post_date_gmt":"2016-08-29 09:57:54","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/08\/trendy-1030996_1280.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/trendy-1030996_1280.jpg","_wp_attachment_metadata":{"width":1180,"height":1280,"file":"2016\/08\/trendy-1030996_1280.jpg","sizes":{"thumbnail":{"file":"trendy-1030996_1280-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"trendy-1030996_1280-277x300.jpg","width":277,"height":300,"mime-type":"image\/jpeg"},"medium_large":{"file":"trendy-1030996_1280-768x833.jpg","width":768,"height":833,"mime-type":"image\/jpeg"},"large":{"file":"trendy-1030996_1280-944x1024.jpg","width":944,"height":1024,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":39,"post_title":"woman-642118_1280","post_status":"inherit","post_name":"woman-642118_1280","post_content":"","post_excerpt":"","post_parent":38,"menu_order":0,"post_date":"2016-08-29 09:53:20","post_date_gmt":"2016-08-29 09:53:20","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/08\/woman-642118_1280.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/woman-642118_1280.jpg","_wp_attachment_metadata":{"width":1280,"height":853,"file":"2016\/08\/woman-642118_1280.jpg","sizes":{"thumbnail":{"file":"woman-642118_1280-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"woman-642118_1280-300x200.jpg","width":300,"height":200,"mime-type":"image\/jpeg"},"medium_large":{"file":"woman-642118_1280-768x512.jpg","width":768,"height":512,"mime-type":"image\/jpeg"},"large":{"file":"woman-642118_1280-1024x682.jpg","width":1024,"height":682,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":37,"post_title":"photographer-407068_1280","post_status":"inherit","post_name":"photographer-407068_1280","post_content":"","post_excerpt":"","post_parent":35,"menu_order":0,"post_date":"2016-08-29 09:50:57","post_date_gmt":"2016-08-29 09:50:57","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/08\/photographer-407068_1280.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/photographer-407068_1280.jpg","_wp_attachment_metadata":{"width":1280,"height":853,"file":"2016\/08\/photographer-407068_1280.jpg","sizes":{"thumbnail":{"file":"photographer-407068_1280-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"photographer-407068_1280-300x200.jpg","width":300,"height":200,"mime-type":"image\/jpeg"},"medium_large":{"file":"photographer-407068_1280-768x512.jpg","width":768,"height":512,"mime-type":"image\/jpeg"},"large":{"file":"photographer-407068_1280-1024x682.jpg","width":1024,"height":682,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":33,"post_title":"guess-attic-837156_1920","post_status":"inherit","post_name":"guess-attic-837156_1920","post_content":"","post_excerpt":"","post_parent":32,"menu_order":0,"post_date":"2016-08-29 09:48:14","post_date_gmt":"2016-08-29 09:48:14","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/08\/guess-attic-837156_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/guess-attic-837156_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1280,"file":"2016\/08\/guess-attic-837156_1920.jpg","sizes":{"thumbnail":{"file":"guess-attic-837156_1920-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"guess-attic-837156_1920-300x200.jpg","width":300,"height":200,"mime-type":"image\/jpeg"},"medium_large":{"file":"guess-attic-837156_1920-768x512.jpg","width":768,"height":512,"mime-type":"image\/jpeg"},"large":{"file":"guess-attic-837156_1920-1024x683.jpg","width":1024,"height":683,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":30,"post_title":"dress-864107_1280","post_status":"inherit","post_name":"dress-864107_1280","post_content":"","post_excerpt":"","post_parent":29,"menu_order":0,"post_date":"2016-08-29 09:45:23","post_date_gmt":"2016-08-29 09:45:23","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/08\/dress-864107_1280.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/dress-864107_1280.jpg","_wp_attachment_metadata":{"width":1280,"height":852,"file":"2016\/08\/dress-864107_1280.jpg","sizes":{"thumbnail":{"file":"dress-864107_1280-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"dress-864107_1280-300x200.jpg","width":300,"height":200,"mime-type":"image\/jpeg"},"medium_large":{"file":"dress-864107_1280-768x511.jpg","width":768,"height":511,"mime-type":"image\/jpeg"},"large":{"file":"dress-864107_1280-1024x682.jpg","width":1024,"height":682,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":27,"post_title":"basketball-557192_1920","post_status":"inherit","post_name":"basketball-557192_1920","post_content":"","post_excerpt":"","post_parent":25,"menu_order":0,"post_date":"2016-08-29 09:42:02","post_date_gmt":"2016-08-29 09:42:02","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/08\/basketball-557192_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/basketball-557192_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1277,"file":"2016\/08\/basketball-557192_1920.jpg","sizes":{"thumbnail":{"file":"basketball-557192_1920-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"basketball-557192_1920-300x200.jpg","width":300,"height":200,"mime-type":"image\/jpeg"},"medium_large":{"file":"basketball-557192_1920-768x511.jpg","width":768,"height":511,"mime-type":"image\/jpeg"},"large":{"file":"basketball-557192_1920-1024x681.jpg","width":1024,"height":681,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":23,"post_title":"football-693564_1920","post_status":"inherit","post_name":"football-693564_1920","post_content":"","post_excerpt":"","post_parent":22,"menu_order":0,"post_date":"2016-08-29 09:39:23","post_date_gmt":"2016-08-29 09:39:23","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/08\/football-693564_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/football-693564_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1280,"file":"2016\/08\/football-693564_1920.jpg","sizes":{"thumbnail":{"file":"football-693564_1920-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"football-693564_1920-300x200.jpg","width":300,"height":200,"mime-type":"image\/jpeg"},"medium_large":{"file":"football-693564_1920-768x512.jpg","width":768,"height":512,"mime-type":"image\/jpeg"},"large":{"file":"football-693564_1920-1024x683.jpg","width":1024,"height":683,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":20,"post_title":"woman-918458_1920","post_status":"inherit","post_name":"woman-918458_1920","post_content":"","post_excerpt":"","post_parent":19,"menu_order":0,"post_date":"2016-08-29 09:36:22","post_date_gmt":"2016-08-29 09:36:22","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/08\/woman-918458_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/woman-918458_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1280,"file":"2016\/08\/woman-918458_1920.jpg","sizes":{"thumbnail":{"file":"woman-918458_1920-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"woman-918458_1920-300x200.jpg","width":300,"height":200,"mime-type":"image\/jpeg"},"medium_large":{"file":"woman-918458_1920-768x512.jpg","width":768,"height":512,"mime-type":"image\/jpeg"},"large":{"file":"woman-918458_1920-1024x683.jpg","width":1024,"height":683,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":17,"post_title":"antique-662203_1280","post_status":"inherit","post_name":"antique-662203_1280","post_content":"","post_excerpt":"","post_parent":16,"menu_order":0,"post_date":"2016-08-29 09:34:00","post_date_gmt":"2016-08-29 09:34:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/08\/antique-662203_1280.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/antique-662203_1280.jpg","_wp_attachment_metadata":{"width":1280,"height":937,"file":"2016\/08\/antique-662203_1280.jpg","sizes":{"thumbnail":{"file":"antique-662203_1280-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"antique-662203_1280-300x220.jpg","width":300,"height":220,"mime-type":"image\/jpeg"},"medium_large":{"file":"antique-662203_1280-768x562.jpg","width":768,"height":562,"mime-type":"image\/jpeg"},"large":{"file":"antique-662203_1280-1024x750.jpg","width":1024,"height":750,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":14,"post_title":"mobile-616012_1920","post_status":"inherit","post_name":"mobile-616012_1920","post_content":"","post_excerpt":"","post_parent":13,"menu_order":0,"post_date":"2016-08-29 09:31:17","post_date_gmt":"2016-08-29 09:31:17","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/08\/mobile-616012_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/mobile-616012_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1275,"file":"2016\/08\/mobile-616012_1920.jpg","sizes":{"thumbnail":{"file":"mobile-616012_1920-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"mobile-616012_1920-300x199.jpg","width":300,"height":199,"mime-type":"image\/jpeg"},"medium_large":{"file":"mobile-616012_1920-768x510.jpg","width":768,"height":510,"mime-type":"image\/jpeg"},"large":{"file":"mobile-616012_1920-1024x680.jpg","width":1024,"height":680,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":11,"post_title":"girl-422334_1920","post_status":"inherit","post_name":"girl-422334_1920","post_content":"","post_excerpt":"","post_parent":10,"menu_order":0,"post_date":"2016-08-29 09:27:00","post_date_gmt":"2016-08-29 09:27:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/08\/girl-422334_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/girl-422334_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1288,"file":"2016\/08\/girl-422334_1920.jpg","sizes":{"thumbnail":{"file":"girl-422334_1920-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"girl-422334_1920-300x201.jpg","width":300,"height":201,"mime-type":"image\/jpeg"},"medium_large":{"file":"girl-422334_1920-768x515.jpg","width":768,"height":515,"mime-type":"image\/jpeg"},"large":{"file":"girl-422334_1920-1024x687.jpg","width":1024,"height":687,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":8,"post_title":"acme-photo-feature","post_status":"inherit","post_name":"acme-photo-feature","post_content":"","post_excerpt":"","post_parent":6,"menu_order":0,"post_date":"2016-08-29 08:42:08","post_date_gmt":"2016-08-29 08:42:08","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/08\/acme-photo-feature.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/acme-photo-feature.jpg","_wp_attachment_metadata":{"width":1280,"height":610,"file":"2016\/08\/acme-photo-feature.jpg","sizes":{"thumbnail":{"file":"acme-photo-feature-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"acme-photo-feature-300x143.jpg","width":300,"height":143,"mime-type":"image\/jpeg"},"medium_large":{"file":"acme-photo-feature-768x366.jpg","width":768,"height":366,"mime-type":"image\/jpeg"},"large":{"file":"acme-photo-feature-1024x488.jpg","width":1024,"height":488,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}}],"post":[{"type_title":"Posts","post_id":10,"post_title":"Young Beautiful Girl","post_status":"publish","post_name":"young-beautiful-girl","post_content":"Lorem ipsum dolor sit amet, posse docendi similique te mea, omnes graeci delenit nam ex. Eos at omnium dolores expetendis, no hinc vocent philosophia mei. Saepe melius intellegat et has, enim deleniti ne nec. Mea ex lorem laoreet.\r\n\r\nEos et sententiae liberavisse. Velit latine nonumes ne has, tale omnesque eam te. Cum te illud graece hendrerit, quo rebum solet quando no, dicant omnesque necessitatibus an usu. Debet numquam quaestio has an, diceret eruditi salutandi cu mel. Congue meliore intellegam pri an.\r\n\r\nNo nec debet legendos torquatos, cu duo pertinax consulatu. Mazim utinam duo no, an alii malis vis. Ex quo laoreet interesset scribentur. Viderer dissentiunt mea in, in dico aliquando cum. Cu nec rebum mollis, wisi nulla epicuri mei in, quo inani prodesset in.\r\n\r\nVix ei mollis ornatus legendos, ei soleat explicari mel, pri id labores volutpat. Sit in inermis offendit noluisse, ne iudico nominati duo, enim omittam mediocrem eu sea. Id vel liber vidisse abhorreant, duo vulputate interesset deterruisset in, probo argumentum ne has. Sit ne porro suscipit.\r\n\r\nCu modo autem vim, qui blandit fastidii verterem et. Ne bonorum mandamus pertinacia pri, sea mentitum salutandi ei. Ut eum errem homero soluta, mei in ubique euismod, est senserit euripidis id. Te tritani complectitur duo, falli verterem perfecto et eum, te eum veri expetenda efficiantur. Tollit semper atomorum sed ei, prima liberavisse complectitur per ne. Veniam ancillae appetere mel ea. Te vel saepe petentium, per cu aperiam tincidunt assueverit.\r\n\r\nQui ea conceptam comprehensam, mei legere invidunt neglegentur et, pri illum habemus te. Debitis ancillae pertinacia vis at, ad sed ridens oblique molestiae. Ad cibo vitae deserunt per, per ei graeci putent timeam. Duo an idque equidem postulant, suas audiam assueverit mei id.\r\n\r\nEt vidisse oblique cotidieque qui, pri id elitr aliquip diceret. In sea regione vivendum. Ad per altera graeco, has te iudico intellegat dissentiet. Vix an offendit reprimique, te ius postea denique dissentias, veniam corrumpit omittantur vim no. Qui an latine copiosae, omittam facilisi pri ad. Qui ea summo postea commune, vim ut ullum inermis, mei lorem pertinax evertitur no. Iudico mnesarchum vis cu, qui omnes dicam civibus an.\r\n\r\nNo vel dico congue, quis eripuit dolorum per in. Eos vituperata deterruisset ne, vel ad cetero delicatissimi. Ullum oratio periculis vix ut. In per nulla integre incorrupte. No mea dolore aperiri reprimique.\r\n\r\nEruditi impedit ad est, ne movet mollis nonumes vis, sea mentitum vivendum cu. Nec nonumy deterruisset ad, in petentium sadipscing pri. Augue recusabo ius cu, an melius impedit appareat usu. Nam in tempor appetere, eam ad natum suavitate.\r\n\r\nId veri adipisci duo, mel solet alterum rationibus eu. Est atqui accusata maiestatis eu. Porro quaerendum an his. Id sumo intellegat usu, pro fabulas platonem eu, ea quem meis vel. Vis senserit adolescens et, mea duis fuisset id.","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 01:12:11","post_date_gmt":"2016-08-30 01:12:11","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=10","post_mime_type":"","meta":{"_edit_last":"1","_edit_lock":"1472622622:1","_thumbnail_id":"11"},"terms":{"category":[{"term_id":2,"name":"Fashion","slug":"fashion","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":14,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Posts","post_id":66,"post_title":"Blue Beauty","post_status":"publish","post_name":"blue-beauty","post_content":"<p>Lorem ipsum dolor sit amet, voluptatum efficiendi nec et! Partiendo salutandi repudiandae vis ea. In sed maiorum comprehensam, nam te case possit sapientem! Ius eu malis convenire, cu movet detracto similique mei? Aliquip volumus perpetua ne mel.<\/p>\r\n\r\n<p>Te probo ipsum altera vis, quem praesent posidonium mei at. Eos dicam mentitum ea, nam an blandit deleniti, sonet eloquentiam an eam? Ad pri lobortis conclusionemque, usu ut magna libris? Alia offendit epicurei pro id, interesset liberavisse ei eum, eu sed dico dictas imperdiet. An vix semper probatus iudicabit.<\/p>\r\n\r\n<p>Epicurei detraxit principes quo an, ut est errem minimum patrioque, ius cu dicant bonorum. Consetetur disputando usu eu, ad quo sint dicit doming. Lobortis mandamus eam at. Eu vix quis comprehensam, stet nostro indoctum te nam. Usu at autem voluptatum, quo dicat intellegat vituperata ex! Natum inermis vel ut, ut unum fugit evertitur eos, quis vocibus an ius. Nec tota honestatis ut?<\/p>\r\n\r\n<p>Vel ne nibh detracto, duo no ridens offendit apeirian. Nam reque propriae et. Et vivendum argumentum pro, iusto intellegam interpretaris eu eam! Eu usu quidam scaevola fabellas, pri ea consul integre efficiendi, usu facilis pericula accommodare in.<\/p>\r\n\r\n<p>Iisque gubergren constituto ea pri, vocibus delicatissimi eum ex. Vel ferri gloriatur vulputate eu, ut maiestatis liberavisse qui. At postea volutpat vel? Eu tale tollit voluptatum pro, mea ferri illud et.<\/p>","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-29 10:48:10","post_date_gmt":"2016-08-29 10:48:10","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=66","post_mime_type":"","meta":{"_edit_last":"1","_edit_lock":"1478341556:1","_thumbnail_id":"243"},"terms":{"category":[{"term_id":2,"name":"Fashion","slug":"fashion","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":14,"filter":"raw","meta":[]},{"term_id":4,"name":"Nature","slug":"nature","term_group":0,"term_taxonomy_id":4,"taxonomy":"category","description":"","parent":0,"count":7,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Posts","post_id":63,"post_title":"Flowers Nature","post_status":"publish","post_name":"flowers-nature","post_content":"<p>Lorem ipsum dolor sit amet, pro an nisl quaeque consectetuer, cu vel modus concludaturque, eam et patrioque philosophia! Usu dicta erant singulis ad, at eum viderer laoreet vocibus. Facilis maiorum complectitur ut ius! His et tollit malorum facilisis, rebum accusamus iracundia pri no? Ex unum laudem philosophia usu? Te sea modus dicam. Eu percipitur accommodare eos, eros vituperata inciderint ei vix!<\/p>\r\n\r\n<p>Modo quidam mediocritatem pro et, ex mel debet consectetuer signiferumque, erant fabulas et vim. Vel tota postea praesent an, nam alia scripserit te. Stet tota nominati ei per. Qui ex wisi efficiendi quaerendum, iudico convenire ei vel, mucius civibus ne pri? Sed ei erant menandri, sea nisl periculis ei.<\/p>\r\n\r\n<p>No vis elit volutpat philosophia, ornatus placerat ea est? Magna legere eu quo, cum odio hinc te. Ex nibh audire vis! Te partem graece legimus sea. Sit expetendis efficiantur et, cum ei tale commodo, libris putent at nec?<\/p>\r\n\r\n<p>Sit altera instructior at. At per erant recusabo scribentur. Quas accusata aliquando cum te. Vim ipsum erant praesent in, iudico nostrum sententiae et usu!<\/p>\r\n\r\n<p>Esse commodo lucilius id est, mel omnes mandamus an. Ex vim mandamus tincidunt, alii dicat explicari ad eos. Ei perpetua consequat contentiones usu, ex nec ferri causae docendi. Ex vivendum electram duo, consul elaboraret nec te. Verear persius definitiones cum te. Homero labores interesset an eum?<\/p>","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-29 10:44:09","post_date_gmt":"2016-08-29 10:44:09","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=63","post_mime_type":"","meta":{"_edit_last":"1","_edit_lock":"1472467461:1","_thumbnail_id":"64"},"terms":{"category":[{"term_id":2,"name":"Fashion","slug":"fashion","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":14,"filter":"raw","meta":[]},{"term_id":4,"name":"Nature","slug":"nature","term_group":0,"term_taxonomy_id":4,"taxonomy":"category","description":"","parent":0,"count":7,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Posts","post_id":60,"post_title":"Just Beautiful","post_status":"publish","post_name":"just-beautiful","post_content":"<p>Lorem ipsum dolor sit amet, vel assum elaboraret eu, paulo qualisque moderatius no his, cu vulputate abhorreant accommodare his. Ne eligendi adipisci sea, apeirian detraxit salutandi ex eum? Aeque paulo propriae mel at, cu iusto interpretaris vis. Exerci electram ad nec, ne recteque cotidieque referrentur pri, cum id accumsan pertinacia?<\/p>\r\n\r\n<p>Assum everti vim cu. Pri ferri soleat ut, id adhuc facer discere nam, duis voluptua mea no. Vix liber imperdiet ne, cum inani denique repudiare ex, reque ubique theophrastus ut pro? Ut wisi dolore perfecto nec.<\/p>\r\n\r\n<p>Hinc gloriatur duo at, modus splendide vis et. Movet invidunt maluisset mel et, sit illud alienum an, movet accusam intellegebat ei eos. Eu sea prima dicant consectetuer, in nostrud eligendi consequuntur est! Ut elitr deseruisse eos. Id labitur conceptam ius, sint tamquam qui ex, eum liber clita alienum ea?<\/p>\r\n\r\n<p>Erat perfecto signiferumque mei ad, magna brute lucilius quo ne. In nominati temporibus per? Movet facilis quo ad, tota electram et usu, ancillae accumsan placerat ea sed. Quo ea vitae possit fuisset, id wisi quodsi argumentum sea.<\/p>\r\n\r\n<p>No quo meis ullum offendit, an integre utroque eos, unum aperiri no nam. Ei per blandit noluisse, quo ut minim nobis conceptam, at praesent torquatos sea? Eu dicat partiendo duo, fugit clita cu mel, eligendi constituam no ius. Nullam eruditi ei nam, eum cu consul appareat pericula. Vis iracundia mediocritatem ex.<\/p>","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-29 10:31:59","post_date_gmt":"2016-08-29 10:31:59","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=60","post_mime_type":"","meta":{"_edit_last":"1","_edit_lock":"1472467227:1","_thumbnail_id":"61"},"terms":{"category":[{"term_id":2,"name":"Fashion","slug":"fashion","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":14,"filter":"raw","meta":[]},{"term_id":4,"name":"Nature","slug":"nature","term_group":0,"term_taxonomy_id":4,"taxonomy":"category","description":"","parent":0,"count":7,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Posts","post_id":57,"post_title":"Portrait Photo","post_status":"publish","post_name":"portrait-photo","post_content":"<p>Lorem ipsum dolor sit amet, ut nam consul equidem gubergren, qui decore mentitum lobortis et. Nec semper assueverit no! Tota postea cum no! Ad sale assum scripserit eum!<\/p>\r\n\r\n<p>Has probatus assueverit in! Odio saepe euripidis ea nec, mel ne stet falli erroribus, mea blandit petentium at. Exerci malorum consetetur vel an, te mei delicata torquatos. Qui semper electram in, est dicta constituam in? Justo vivendum deserunt vis id.<\/p>\r\n\r\n<p>Hinc forensibus has in, in mel mazim aperiam atomorum, eos no tamquam nostrum. Prima facilisis per at, in sit dicant inimicus salutandi, vim dico soleat oporteat ei? Cu consul aliquip eum, no eos audire placerat! In nisl singulis mei, te nonumy voluptatum accommodare sit. Duo ea melius imperdiet gubergren, audiam delenit sapientem eu mel, hinc nostrum rationibus ex his! Quod reque animal sed te, wisi minim sea et.<\/p>\r\n\r\n<p>Et nam docendi appellantur. Paulo forensibus est an. Id eam erat expetenda? Cum nulla perpetua reformidans in, case consulatu assentior vim ei?<\/p>\r\n\r\n<p>Ad augue dolor perpetua eam, sea ne evertitur persecuti sententiae, alii cetero audire et his. Vim an audire aeterno, an nostrum oporteat vim. Saperet vocibus duo id, ad qui eruditi dissentias. Minim accusam vituperatoribus vel ad.<\/p>","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-29 10:24:27","post_date_gmt":"2016-08-29 10:24:27","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=57","post_mime_type":"","meta":{"_edit_last":"1","_edit_lock":"1472466509:1","_thumbnail_id":"58"},"terms":{"category":[{"term_id":2,"name":"Fashion","slug":"fashion","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":14,"filter":"raw","meta":[]},{"term_id":4,"name":"Nature","slug":"nature","term_group":0,"term_taxonomy_id":4,"taxonomy":"category","description":"","parent":0,"count":7,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Posts","post_id":54,"post_title":"Yosemite","post_status":"publish","post_name":"yosemite","post_content":"<p>Lorem ipsum dolor sit amet, ad usu inani oblique accusam, rebum placerat repudiandae nam ex. Cu his putent equidem, voluptatum interpretaris ad vim, ei consul cotidieque ullamcorper est. Usu graeci dolorum accommodare ei, eu labores corrumpit conclusionemque duo? Integre insolens liberavisse mea at, novum theophrastus in mei! Et nihil saperet constituto sea, idque dolores ne mel, dicam latine qui eu.<\/p>\r\n\r\n<p>Ei eam homero lobortis. Vim fierent iracundia molestiae ad, sit ei reque democritum. Audire offendit deterruisset cu his, ad vel sensibus laboramus, atqui inermis laboramus quo ea. Erat minim maiorum nam at.<\/p>\r\n\r\n<p>Ut zril essent ius! Ad eam numquam fabellas scriptorem, et tota possim adolescens cum. Pro fabulas facilis et? Eam dicam ocurreret et, ei sit mazim fabulas commune. Ex nemore platonem volutpat vel, cu probo expetendis ullamcorper pro, decore quaerendum vim ea.<\/p>\r\n\r\n<p>Qui ad diam dolore audiam, euismod abhorreant nec an! Per cu affert laboramus. Id option vituperata his. Ea nam quem molestie adipisci, exerci partiendo mel cu, eu cum consul delenit fabellas.<\/p>\r\n\r\n<p>Te mei alii sensibus, per dicta quaerendum te. Vis eu alii debet appareat, vis simul timeam expetendis cu! Vocibus ocurreret in sit, in officiis erroribus intellegat nam? Ei has porro melius persequeris? Sit sonet solet elaboraret id, purto voluptua senserit te usu!<\/p>","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-29 10:19:20","post_date_gmt":"2016-08-29 10:19:20","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=54","post_mime_type":"","meta":{"_edit_last":"1","_edit_lock":"1472468075:1","_thumbnail_id":"55"},"terms":{"category":[{"term_id":4,"name":"Nature","slug":"nature","term_group":0,"term_taxonomy_id":4,"taxonomy":"category","description":"","parent":0,"count":7,"filter":"raw","meta":[]},{"term_id":3,"name":"Travel","slug":"travel","term_group":0,"term_taxonomy_id":3,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Posts","post_id":44,"post_title":"Mountain View Panorama","post_status":"publish","post_name":"mountain-view-panorama","post_content":"<p>Lorem ipsum dolor sit amet, case novum intellegebat te ius. At sed rebum tacimates invenire. In mundi quodsi duo, usu ne veritus eloquentiam vituperatoribus, debet putent evertitur pri in! Ne noluisse mandamus vis. Sed homero dignissim id, has wisi copiosae sapientem ex, ad omnes dolorem ius. Phaedrum suscipiantur nam cu.<\/p>\r\n\r\n<p>Et duo saepe impetus mediocrem. Nisl omittantur vix ad, usu graece adipiscing no. Ex minim iudicabit eos. Ut habemus definiebas efficiendi ius, ex blandit accusamus eum, dolores definitiones ut quo. Sumo omnes affert ius cu.<\/p>\r\n\r\n<p>Pri dicta suavitate ei. Eos viris doctus rationibus ex. Facer epicurei his in, vim graeci diceret intellegebat in? Iudico perpetua qui in, liber ceteros ei vis, his malis postea persius ne? An esse consul sit, sumo aeque corpora eu ius. Omnium debitis ocurreret qui in! Recteque erroribus necessitatibus et vim.<\/p>\r\n\r\n<p>Mea ex volumus legendos theophrastus, eum eu cibo omnis. Mea eu veritus luptatum, ea nibh posse graecis nam, quo lorem malis nulla in. Ea eam simul virtute signiferumque, quem sale labitur est ut, neglegentur deterruisset eu sed. Sea argumentum adversarium et! Vel no movet tempor ocurreret, sed gubergren honestatis at? Ei elit duis malorum est, has te possim petentium.<\/p>\r\n\r\n<p>Ad enim postea conceptam eam, ius autem oportere assentior te. Accusata percipitur mei at, sea eu iudico accusam repudiare! Ne aeque blandit efficiendi vis, sea unum idque scribentur ea. Harum facilisis eam at, ne nec indoctum dissentiet! Sea ut everti feugait, qui at facer congue voluptaria, eu recusabo partiendo consequuntur mel.<\/p>","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-29 10:02:11","post_date_gmt":"2016-08-29 10:02:11","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=44","post_mime_type":"","meta":{"_edit_last":"1","_edit_lock":"1472464899:1","_thumbnail_id":"45"},"terms":{"category":[{"term_id":4,"name":"Nature","slug":"nature","term_group":0,"term_taxonomy_id":4,"taxonomy":"category","description":"","parent":0,"count":7,"filter":"raw","meta":[]},{"term_id":3,"name":"Travel","slug":"travel","term_group":0,"term_taxonomy_id":3,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Posts","post_id":41,"post_title":"Trendy Guys","post_status":"publish","post_name":"trendy-guys","post_content":"<p>Lorem ipsum dolor sit amet, nam ea tempor bonorum petentium? Eu clita albucius liberavisse mea. Nam ignota maluisset ut, ea vix assum definitiones! Atqui iisque suavitate vel ea. Magna aeque iriure vim te, pri scaevola explicari abhorreant an.<\/p>\r\n\r\n<p>Illum propriae ad cum, dicat euismod inermis te eos. Cu ius dicant quaestio democritum, cum at sanctus utroque, justo vocent ea usu. Cu mel vero quodsi forensibus? Ferri sententiae no per. Id est vero postea!<\/p>\r\n\r\n<p>Prima fugit postea vel cu, alterum oporteat deterruisset cum at, sed in omittam facilisis definitiones? Vix quot velit nominavi ad. Ius et malis cotidieque. Persius perfecto vix te! Sea diam admodum id, admodum corpora sed id.<\/p>\r\n\r\n<p>Sit ei clita ignota, vocent recusabo oportere pro te, iuvaret detracto temporibus ei eum. Eam etiam iusto conclusionemque no. Solum repudiare vim et, ne quo quem senserit molestiae. Sumo oporteat ei vel! Id graeci indoctum per, ius facer tibique eu, ei civibus fastidii duo. Ad animal nominavi usu?<\/p>\r\n\r\n<p>Vitae qualisque te sed. Ea usu veniam facilisi consequuntur? Ius atqui appareat eleifend cu, ea nec ullum admodum, te pri natum putant causae. Mel ut mazim habemus, at his diam veritus eleifend?<\/p>","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-29 09:58:07","post_date_gmt":"2016-08-29 09:58:07","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=41","post_mime_type":"","meta":{"_edit_last":"1","_edit_lock":"1472542923:1","_thumbnail_id":"42"},"terms":{"category":[{"term_id":2,"name":"Fashion","slug":"fashion","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":14,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Posts","post_id":38,"post_title":"Photo Taking","post_status":"publish","post_name":"photo-taking","post_content":"<p>Lorem ipsum dolor sit amet, quis intellegebat cum et, et altera reprimique persequeris eam? Torquatos disputando contentiones mea ne. Est persequeris instructior ex, eleifend tractatos referrentur vix ea, ea duo timeam volumus. Ad duo delicata mandamus, dicam singulis no eam. Id eum hinc euripidis, ex sea odio convenire. Debitis detracto offendit ne vix, ea eos docendi posidonium.<\/p>\r\n\r\n<p>Cu cum prompta consetetur efficiantur, eripuit labores deleniti mei at? Invenire eleifend an mei, fastidii dissentiunt et has, justo molestiae democritum pri ei! At viris vituperata sit? Vero animal ex his, ex eripuit delenit vituperatoribus vim?<\/p>\r\n\r\n<p>Sit an everti reformidans, luptatum invidunt phaedrum id vix! Mel saperet vituperata at, nec ex tale scriptorem. Sea ubique numquam salutatus an, vis in adipisci prodesset dissentias, duo id mazim virtute. Pri ex assentior mnesarchum consequuntur. In mundi alterum ornatus sea?<\/p>\r\n\r\n<p>Sed cu movet choro quando, illum petentium te eum. Ea eos omnium sapientem! Debet referrentur usu ex. Sit fuisset denique cu, sumo choro ius ei! Prompta temporibus in eos, consul accusam disputationi et sit. Sed ne tritani albucius!<\/p>\r\n\r\n<p>Mea et detraxit pericula, eu nam senserit reprehendunt. Adhuc verterem torquatos ex mea. Nec porro conceptam et, his quidam nusquam delicata cu. No partem graecis definitiones ius, sit cu verterem interesset sadipscing! Eos summo doming ea! Id tantas expetenda temporibus vis, id pri scripta iuvaret definiebas?<\/p>","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-29 09:53:38","post_date_gmt":"2016-08-29 09:53:38","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=38","post_mime_type":"","meta":{"_edit_last":"1","_edit_lock":"1472464440:1","_thumbnail_id":"39"},"terms":{"category":[{"term_id":2,"name":"Fashion","slug":"fashion","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":14,"filter":"raw","meta":[]},{"term_id":3,"name":"Travel","slug":"travel","term_group":0,"term_taxonomy_id":3,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Posts","post_id":87,"post_title":"Selfie on Bedroom","post_status":"publish","post_name":"selfie-on-bedroom","post_content":"Prima fugit postea vel cu, alterum oporteat deterruisset cum at, sed in omittam facilisis definitiones? Vix quot velit nominavi ad. Ius et malis cotidieque. Persius perfecto vix te! Sea diam admodum id, admodum corpora sed id.\r\n\r\nSit ei clita ignota, vocent recusabo oportere pro te, iuvaret detracto temporibus ei eum. Eam etiam iusto conclusionemque no. Solum repudiare vim et, ne quo quem senserit molestiae. Sumo oporteat ei vel! Id graeci indoctum per, ius facer tibique eu, ei civibus fastidii duo. Ad animal nominavi usu?\r\n<blockquote>Prima fugit postea vel cu, alterum oporteat deterruisset cum at, sed in omittam facilisis definitiones? Vix quot velit nominavi ad. Ius et malis cotidieque. Persius perfecto vix te! Sea diam admodum id, admodum corpora sed id.<\/blockquote>\r\nSit ei clita ignota, vocent recusabo oportere pro te, iuvaret detracto temporibus ei eum. Eam etiam iusto conclusionemque no. Solum repudiare vim et, ne quo quem senserit molestiae. Sumo oporteat ei vel! Id graeci indoctum per, ius facer tibique eu, ei civibus fastidii duo. Ad animal nominavi usu?\r\n\r\nPrima fugit postea vel cu, alterum oporteat deterruisset cum at, sed in omittam facilisis definitiones? Vix quot velit nominavi ad. Ius et malis cotidieque. Persius perfecto vix te! Sea diam admodum id, admodum corpora sed id.\r\n\r\nSit ei clita ignota, vocent recusabo oportere pro te, iuvaret detracto temporibus ei eum. Eam etiam iusto conclusionemque no. Solum repudiare vim et, ne quo quem senserit molestiae. Sumo oporteat ei vel! Id graeci indoctum per, ius facer tibique eu, ei civibus fastidii duo. Ad animal nominavi usu?","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-29 09:50:21","post_date_gmt":"2016-08-29 09:50:21","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=87","post_mime_type":"","meta":{"_edit_last":"1","_edit_lock":"1472543132:1","_thumbnail_id":"91","_wp_old_slug":"baby-with-car"},"terms":{"category":[{"term_id":2,"name":"Fashion","slug":"fashion","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":14,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Posts","post_id":35,"post_title":"Tourist Snapshot","post_status":"publish","post_name":"tourist-snapshot","post_content":"<p>Lorem ipsum dolor sit amet, usu ad ludus facete, modo unum mazim in sit! Primis saperet maiestatis eos te, dicunt accusata cu vis, et mel laoreet suscipit perpetua. Vel ut harum theophrastus. Ridens singulis ex vix, qui purto porro quodsi te? Per conceptam honestatis an, graecis detraxit eos ei!<\/p>\r\n\r\n<p>Magna aeterno quo ne. Eu summo invidunt consetetur has, dico scriptorem eum ex, in eum virtute numquam! Dicam dictas vis ad? Mei ex albucius corrumpit. Quo an adhuc delenit deserunt.<\/p>\r\n\r\n<p>Te usu vocibus habemus facilisis, per meis pertinax sensibus in! Et case consulatu interpretaris duo, sed id zril clita. Quo propriae maiestatis cu, usu ei vero solet! Iisque labitur fastidii sit cu. Quis nostro cu duo! Cum ei nihil eruditi nusquam!<\/p>\r\n\r\n<p>Eu eos timeam officiis adipisci. Quodsi sadipscing id mea, id sed cibo numquam! Ad ornatus molestiae sit, lorem blandit torquatos mea cu. Nibh denique ea eam? His dolor dissentias et. Has an diam mucius suavitate, ignota invenire at duo?<\/p>\r\n\r\n<p>Elit illum sit et. Vim prima tantas vivendum te, cu definitionem conclusionemque eam? Eos erat nonumes te, at tempor lobortis prodesset sit? In novum invidunt sit, tale omnium eos ad?<\/p>","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-29 09:50:20","post_date_gmt":"2016-08-29 09:50:20","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=35","post_mime_type":"","meta":{"_edit_last":"1","_edit_lock":"1472464168:1","_thumbnail_id":"37"},"terms":{"category":[{"term_id":2,"name":"Fashion","slug":"fashion","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":14,"filter":"raw","meta":[]},{"term_id":3,"name":"Travel","slug":"travel","term_group":0,"term_taxonomy_id":3,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Posts","post_id":32,"post_title":"Pretty Hair","post_status":"publish","post_name":"pretty-hair","post_content":"<p>Lorem ipsum dolor sit amet, eu sed elitr accumsan, ne eam falli mediocrem. Ius ea novum commodo alterum, eu latine saperet blandit vim. Nam te fabulas iudicabit, quo cu albucius nominati, nibh minim ut ius. At alii appellantur mei, brute dicant et mel, an dignissim delicatissimi ius.<\/p>\r\n\r\n<p>Usu velit suscipit electram an, ea vide cetero petentium sit, vim sale probo ridens cu. Quod suscipit at sed, sea ad tractatos partiendo, postulant disputationi comprehensam ne vix. Scripta molestiae efficiendi ei nam. Ea quod docendi sea, id mentitum pericula sit! In his epicuri mandamus, vel ad choro epicuri petentium, iisque hendrerit mei at. Laoreet electram id eam, mea option utamur scaevola ei. Ei eos consequat cotidieque, nec libris accusata ne!<\/p>\r\n\r\n<p>Id nobis putent his! An pri veritus cotidieque? Persius prodesset an qui, ei reque appellantur reprehendunt quo. Eos graecis honestatis at, pri at numquam albucius. At eum homero suscipit phaedrum, no impedit iracundia duo, recteque delicatissimi at sit! Ferri soleat temporibus pri ea. Id eam erat omnium expetenda, sed unum quas an, velit nusquam honestatis te est?<\/p>\r\n\r\n<p>Pro quando convenire in. Eu nam wisi autem iuvaret, et alterum epicuri per? Tollit fuisset cu vis, at per brute nonumy persius. Autem diceret ne nam. Duo ne semper gubergren, id virtute appetere evertitur vel, quo modo moderatius suscipiantur ei. Decore sadipscing usu et, et mei labitur perfecto mediocritatem!<\/p>\r\n\r\n<p>Vel porro minim graeci at, dicam vulputate scriptorem per ex, ea vis vitae fastidii. Audiam scriptorem ne eos, ut sed suas primis perpetua. Id sit case regione recusabo, sed ut putent quidam semper! In debet nominati honestatis his, case decore mandamus id vim.<\/p>","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-29 09:48:25","post_date_gmt":"2016-08-29 09:48:25","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=32","post_mime_type":"","meta":{"_edit_last":"1","_edit_lock":"1472464036:1","_thumbnail_id":"33"},"terms":{"category":[{"term_id":2,"name":"Fashion","slug":"fashion","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":14,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Posts","post_id":29,"post_title":"Beautiful Girl, Red Dress","post_status":"publish","post_name":"beautiful-girl-red-dress","post_content":"<p>Lorem ipsum dolor sit amet, usu decore docendi accumsan no. Est in error movet? Iriure oportere sententiae an sed. Aliquam verterem volutpat per te, te nulla convenire eos? Ferri tibique elaboraret ad sea, et iuvaret fierent mei? Vel no autem indoctum, vis eirmod nominavi at. Id possim nominati cotidieque est, nisl ceteros eum id!<\/p>\r\n\r\n<p>Consul verear suscipit ea qui, in tritani fastidii mandamus pri! Mei prima labitur eu, no quo habemus percipitur theophrastus, percipit maluisset cum no. Et his case probatus urbanitas, sit no natum persius voluptaria. Id falli virtute eam, ignota suscipit usu eu.<\/p>\r\n\r\n<p>Cu has novum labitur maiestatis, te his iuvaret vivendum adversarium. Mel ea elit accommodare, his ea error mediocritatem. Ipsum oporteat reprehendunt ut pri, pri ut homero scripta, nec aliquam probatus ne. Has et equidem tibique, vim scripta corrumpit imperdiet et! In moderatius omittantur eos.<\/p>\r\n\r\n<p>Ad eum erat neglegentur liberavisse, at oratio maluisset duo, singulis tractatos te usu! Cu mel sonet facete scribentur? Verear facilisi nec ne. Has ei viderer perpetua! Ius ne saepe habemus suscipiantur, sea putent audiam ex, mea electram forensibus complectitur et. Pri ei veniam sanctus invenire. Ad usu nemore patrioque rationibus, usu debet facete ullamcorper no.<\/p>\r\n\r\n<p>Enim vide contentiones ne eam, an vix eirmod fuisset! Ad duo utroque incorrupte reformidans, decore labore possit id qui, ut pro fastidii petentium. Sale prompta suscipit te duo, maluisset expetendis appellantur in vix! An altera voluptaria his, quo at reque minim semper? Id vocibus corrumpit vituperata vis, te tantas probatus nam.<\/p>","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-29 09:45:30","post_date_gmt":"2016-08-29 09:45:30","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=29","post_mime_type":"","meta":{"_edit_last":"1","_edit_lock":"1472463843:1","_thumbnail_id":"30"},"terms":{"category":[{"term_id":2,"name":"Fashion","slug":"fashion","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":14,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Posts","post_id":25,"post_title":"Basketball","post_status":"publish","post_name":"basketball","post_content":"<p>Lorem ipsum dolor sit amet, mei ex choro debitis alienum! Mei tollit referrentur id, his an aliquid pertinacia, in eam idque possim interpretaris. Tation munere nam ad, veritus intellegam quo cu. Ex usu porro luptatum invidunt, ei sea dolor vocent utroque. At pri choro munere, te nec eius intellegat! Ut vix ubique mediocrem, an nostro nusquam expetenda eum, pri in mollis equidem abhorreant. Mea et saepe dicant semper, diam harum et sit.<\/p>\r\n\r\n<p>Ex solum delicata sea, te mandamus abhorreant concludaturque duo! Cum te graece dissentias, justo malis honestatis quo te, cu audire conceptam duo? Ad nibh tibique delectus his, facer melius invenire an per, eu nam eleifend salutatus? An falli noster sea? Prima eripuit eum at? In harum eruditi dignissim eam. Alii justo prodesset et pro, munere fierent ponderum cu qui, in vix tempor prompta delenit.<\/p>\r\n\r\n<p>No his duis velit, ea sea persius copiosae menandri, no nullam vocent adipisci sea? Minim graeci in est, audire perfecto eum ei. Pri ex utinam comprehensam, an saperet liberavisse mel. Mazim exerci eam et, usu doming utamur appareat ea, in stet malorum omittantur eam? Omnes quaestio et duo, eu quo quaeque periculis vituperatoribus. Unum quaeque neglegentur cum ne, id omnium aliquid pro.<\/p>\r\n\r\n<p>Id mei atqui munere possim, ad errem nobis ius, vel utinam soleat dissentiet cu. Cu usu vivendo suscipit, augue nostrum et mea. Ne dico libris singulis quo? His eu audire expetenda, his ei honestatis consequuntur.<\/p>\r\n\r\n<p>Ne dicit corpora inimicus mea, an vim falli simul aliquid. Sit ea aliquam expetendis, suas elaboraret no per. Ut nam harum appareat consetetur, libris temporibus comprehensam his id. Et dicit senserit duo, ex sale movet quo. Quo quem iisque inermis ad, no eos minimum argumentum scribentur, cu eum nobis aliquid aliquando.<\/p>","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-29 09:42:09","post_date_gmt":"2016-08-29 09:42:09","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=25","post_mime_type":"","meta":{"_edit_last":"1","_edit_lock":"1472463673:1","_thumbnail_id":"27"},"terms":{"category":[{"term_id":6,"name":"Sports","slug":"sports","term_group":0,"term_taxonomy_id":6,"taxonomy":"category","description":"","parent":0,"count":2,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Posts","post_id":22,"post_title":"American Football","post_status":"publish","post_name":"american-football","post_content":"<p>Lorem ipsum dolor sit amet, sed timeam numquam petentium ad, id sea facilisi recusabo assueverit! Eirmod regione alienum cu mea, has mutat nominavi an, eam nulla assentior no! Te est ridens habemus principes, accusam reprimique vix in? Sea an facete assentior, at illum eligendi volutpat vim, ad vel falli tempor numquam!<\/p>\r\n\r\n<p>Eius dicant vocibus has an, eos in affert homero reprimique, an eirmod utamur dissentias usu. Quo erroribus urbanitas ne, quidam aliquid pericula id pri, te vix posse labores. Cu vis deleniti mandamus? No novum partiendo sit, iudico offendit mei cu. Dico blandit democritum nec et, ius ei reque iudicabit.<\/p>\r\n\r\n<p>Sed habeo sapientem ea, diam iracundia cu per, idque primis eam ne. Ad sea error honestatis dissentiunt, no dolore oportere quo. Pro graeco fierent id, agam viderer pri et? An quod amet illum cum, an dico dicat expetendis nam, no aeque nostrud maiorum vis. Ad scripta dissentiunt vis, malis iracundia in sed! Quo an alterum voluptatum?<\/p>\r\n\r\n<p>Harum dolorum offendit ut cum, ea qui agam reprimique deterruisset. Sed illud porro fastidii ut, ridens consequuntur his cu? Mel utamur splendide no, sea verear aliquando ad! Sit te partiendo assentior, vim option nonumes nusquam in, cu cum consul similique elaboraret.<\/p>\r\n\r\n<p>Congue postulant accusamus mel ut. Te est ludus malorum. Dicta suscipit vim eu, mei at adhuc debitis delicatissimi. Dolorum petentium sadipscing ad qui. Mel id suas feugait. Cu sea delenit appetere. Et eruditi volumus tibique nam.<\/p>","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-29 09:39:32","post_date_gmt":"2016-08-29 09:39:32","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=22","post_mime_type":"","meta":{"_edit_last":"1","_edit_lock":"1472463467:1","_thumbnail_id":"23"},"terms":{"category":[{"term_id":6,"name":"Sports","slug":"sports","term_group":0,"term_taxonomy_id":6,"taxonomy":"category","description":"","parent":0,"count":2,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Posts","post_id":19,"post_title":"Woman In Snow","post_status":"publish","post_name":"woman-in-snow","post_content":"<p>Lorem ipsum dolor sit amet, mel erant choro alterum eu, dolorem expetenda maiestatis has te, ut vix zril iudicabit abhorreant! Sit solum recteque ea, ius ut illum facilisi! Maiorum invidunt usu ei, malis convenire nec eu! Ut sed utroque singulis expetendis, ex congue voluptatibus quo, odio voluptatibus id duo!<\/p>\r\n\r\n<p> Et nemore semper perpetua vix? Ei vis possim contentiones, vim eu agam sonet, sed no porro persius interesset. Epicuri dissentiet te eum, eum impetus oporteat consequuntur ei, et integre nominati pro. Te cum meis efficiendi complectitur.<\/p>\r\n\r\n<p> Qui cu wisi sanctus dissentiunt, blandit offendit salutatus ne sit! Pro cu rebum omnium! At amet partem semper qui, soleat adolescens an est. Dicant intellegat id vis, mei ea semper erroribus, in vim doming vidisse discere. Quo paulo quando euripidis at, at qui graeco possim scriptorem. Mea dicat assentior cu.<\/p>\r\n\r\n<p> Eu graeci nemore dissentiunt mel. Te his vidit aliquid delenit. Eius aeterno an duo? Assum dicam habemus cum te, porro admodum ullamcorper vix ea.<\/p>\r\n\r\n<p> Ad has graecis accumsan officiis! Duo euismod dolorem facilis te. Ridens graecis offendit mel ad, vim accusamus temporibus necessitatibus te. An impetus definiebas pro, suscipiantur concludaturque nec an.<\/p>\r\n\r\n<p> Usu nulla labore persius ut, an usu illud hendrerit deterruisset. Per ignota perpetua constituto ne! Eu oportere ocurreret duo, dico tincidunt neglegentur mei et, cu iusto nemore omnium usu. Ex conceptam argumentum pro, meis constituto voluptatibus vim ei? Vix enim nonumes ea. Ceteros omittam cu cum, no elit dicit duo! Pri viris solet phaedrum ne.<\/p>\r\n\r\n<p> Cu has ipsum fastidii invenire, sed cu diam clita salutatus, mei ex semper liberavisse? Cu cum tamquam reprehendunt, assum democritum eloquentiam pri no, qui timeam voluptaria in! Vim te fugit mediocrem, eam ea omnium dolores partiendo? Id liber aliquip nostrum est, omnesque pertinax ei eam. Ex simul signiferumque sed?<\/p>\r\n\r\n<p> An cum atqui apeirian disputando. Dicam voluptaria constituto te vis, impetus adolescens his et, sed ut inani audiam concludaturque. Pro idque assum ut, sonet aliquid vim id. Mea ut euismod legendos accusamus, patrioque interesset et sea! Soluta integre usu et, te mea velit utroque vituperata?<\/p>\r\n\r\n<p> Te eam nobis platonem, graeco senserit ex sit, dicam vocibus pro eu. Est cu sale honestatis, constituto neglegentur theophrastus ius an. Eu sit errem diceret suavitate, ius ne persius vituperatoribus? An nihil theophrastus vel, disputando reformidans ea ius, ius id erat nonumes referrentur! Omnes nostrud per cu, mei ipsum labores platonem at, melius labores cu sed. Cu dicat clita intellegebat pro, putent facilis noluisse an usu.<\/p>\r\n\r\n<p> Ut has aliquip fastidii lobortis! Quo graeci aeterno ut! Suas timeam nam ad, ad usu inimicus democritum posidonium. Id officiis praesent rationibus qui. Has ei diceret quaestio atomorum, ignota putent sanctus nec ad! Vis at exerci alterum conclusionemque, iisque intellegebat usu ne?<\/p>\r\n\r\n<p> Usu sumo aperiam delicatissimi in? Ea dicam delectus interpretaris per, semper civibus signiferumque id cum. Etiam corpora pri ut, te iracundia moderatius consectetuer vim. Eu eum aperiri scaevola dissentiunt, ei tollit fuisset reprehendunt est?<\/p>\r\n\r\n<p> Pri in meis congue consequat. Zril cetero ut sed? Ut eum legimus postulant posidonium, eam erant soleat elaboraret an. His case pertinax at. Soleat blandit sea et, ea sumo nulla moderatius mea? Usu epicuri referrentur et.<\/p>\r\n\r\n<p> Meliore pertinacia dissentiet eos cu, noster postulant eu sea, vero dicunt explicari nec in. Scripta ceteros nec in, consul detracto incorrupte vis an. Pro esse brute rationibus ea. Est tale eruditi scripserit ne. Pro an modo deseruisse, putant pericula disputando ei duo, duo at nonumy corrumpit! Numquam senserit et usu, cum in unum quando ancillae, ex sit tamquam ancillae recusabo.<\/p>\r\n\r\n<p> Debitis periculis ex nam, vel dicta labitur definitionem ex? Dolor quaerendum liberavisse mea te, convenire definitiones eam an, intellegam temporibus deterruisset usu ad. Vim causae disputationi et! Sea invidunt facilisi id, audiam diceret vim ut. Sea nobis accusam facilisi cu.<\/p>\r\n\r\n<p> No vel amet hinc commodo, usu te facete possim expetendis. Eos nemore deserunt cu! Nibh iusto concludaturque ad sea, at eligendi urbanitas liberavisse eam! Impetus adipisci id qui. At quo vero probo magna, qui probo voluptaria intellegebat ut? Mazim elitr mei eu, numquam indoctum eum ne?<\/p>\r\n\r\n<p> Eos natum singulis maluisset te, eam cu dicta eruditi accusam. An usu dicta placerat forensibus! In vix oblique pertinax abhorreant, ubique mucius ius ne. At decore eleifend evertitur pri, unum probo cotidieque sed ut. His ut utamur perpetua, ne erroribus repudiare nec, probo tollit hendrerit ne mel. Eos ex stet nusquam?<\/p>\r\n\r\n<p> Vel nibh dicit periculis ei. Mea ad abhorreant voluptatibus. Ne usu everti equidem. Mea utamur commune in, sed viderer saperet ut.<\/p>\r\n\r\n<p> Mel decore inciderint ne, ne sea minim laoreet? Sed labores accumsan detracto te. Ei mei legimus assentior. Sed in erant adversarium? Atqui zril posidonium eam ea, et usu affert temporibus! Ne veri decore vel. Autem euismod comprehensam vim ea, viderer accumsan phaedrum ei qui!<\/p>\r\n\r\n<p> Mei erat nemore detracto eu. Vix ei aliquip apeirian repudiare, in has nusquam lucilius inciderint. Suscipit partiendo at sea, justo animal delenit eu sit! Mea atqui tollit delenit te.<\/p>\r\n\r\n<p> Dicta maluisset vis no, has alii quas ut? Ea iuvaret patrioque mea. Te mea putent labores inciderint, graeci consectetuer vel et! Esse mundi pri id, ne dicam detracto forensibus mea? Ius in ludus conclusionemque, sea alia accommodare cu! Nihil primis adversarium ne mea, an mucius scriptorem has! Possit dissentias cum no, natum reque nulla ad pro.<\/p>\r\n\r\n<p> His soluta platonem scriptorem cu? An semper accusata mei, etiam ridens no duo? Homero maluisset pro no, mandamus evertitur no cum. Ius ad facilisis laboramus, eu vix quaestio mandamus prodesset. In mea brute summo concludaturque, eos iusto tacimates gubergren ut. Eros alterum constituto sed ad, amet virtute quo at.<\/p>\r\n\r\n<p> Cum ne odio inermis. Dicat invidunt democritum ut vis, an vim scripta impedit adipiscing, ei ipsum appareat usu? Mei vide causae suavitate ut, feugait mediocrem periculis id eum! Vis epicurei democritum repudiandae no! Ut sit clita corrumpit, habeo sensibus definitionem eos at, pro dolorum singulis maiestatis cu?<\/p>\r\n\r\n<p> Ornatus suavitate sed an? Molestie pertinacia expetendis pri ad! Quas elaboraret eum no? Sonet labore minimum ius cu, eam at vocent definitiones, admodum copiosae ex has. Cu est doming euripidis theophrastus!<\/p>\r\n\r\n<p> Quaeque torquatos has te, mazim putant per no, mel ad iisque offendit.<\/p>","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-29 09:36:38","post_date_gmt":"2016-08-29 09:36:38","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=19","post_mime_type":"","meta":{"_edit_last":"1","_edit_lock":"1472463337:1","_thumbnail_id":"20"},"terms":{"category":[{"term_id":2,"name":"Fashion","slug":"fashion","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":14,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Posts","post_id":16,"post_title":"Antique Car","post_status":"publish","post_name":"antique-car","post_content":"<p>Lorem ipsum dolor sit amet, mei no diam nostrud, mel dolore noluisse in. Sea nisl iisque id, nullam latine definiebas vel eu? Ad eos fugit labitur. Debet dolore corrumpit ad mei. Est ex doctus honestatis scribentur, per liber neglegentur no! An mel epicurei insolens, an cum diceret nusquam sadipscing.<\/p>\r\n\r\n<p>Causae omittantur ea eum, mei in habeo vidisse intellegam. Velit aeque evertitur mel ad, vis ei autem molestie inimicus. Te omittam argumentum vim, vix id vidit adhuc error. Vix ne sint mucius, his choro option id, ei dolores sapientem nam! Civibus pericula ut vim, duo at malis vituperatoribus.<\/p>\r\n\r\n<p>Possit interpretaris te mea, omnis iriure efficiendi quo cu! Inermis honestatis duo ea, pri congue meliore ne? Ridens veritus nam cu, autem legere at sit. Sale eruditi ad sit, et wisi tritani mel. Ne solum tation percipit sea, vim eu sint equidem. Has inimicus deterruisset ut. No animal suavitate quaerendum per.<\/p>\r\n\r\n<p>Qualisque splendide interesset id per, assum ubique labitur id est, congue tation senserit no qui. Aeque adipisci ex est, vocent veritus mandamus ut vel, at nobis eligendi sea. Id timeam honestatis eum, eu civibus definiebas mei, vix in mutat probatus eloquentiam? Vix no eius prima probatus, no cum brute congue. Ad porro perpetua eam, eam facer volutpat scriptorem an!<\/p>\r\n\r\n<p>Natum quidam utamur at sit, at aperiam meliore vix? Eu suas docendi sed, id eos nostro numquam, mei ea nibh numquam delectus. Ne eam zril inciderint appellantur, utinam delenit voluptua te cum, modus labitur dolorum est ex. Dicit latine ad eam, nihil apeirian suavitate eu per, vel at dolor urbanitas. Est ad stet everti omnesque, cum cibo appetere tincidunt ne. At utinam laudem sea. Ne mei aeterno equidem molestie, sit fugit exerci lobortis id.<\/p>\r\n\r\n<p>No est meliore signiferumque? Ei dolores facilisi nec, sea ex erant nominati tractatos, nostro qualisque vis no? Ex augue putent mea, elit solet postea at mea. Stet quodsi ne usu! Graeci qualisque iudicabit ex pri, ut est modus voluptaria scriptorem, molestie honestatis nam id.<\/p>\r\n\r\n<p>Sea phaedrum abhorreant ne, equidem splendide eam an. Ei homero eirmod civibus ius! Ei pri novum saperet perfecto, pri debet affert maluisset cu. Natum consequat pertinacia est te, brute phaedrum in ius! Veniam feugiat no mel.<\/p>\r\n\r\n<p>Sit rebum cetero iisque et! An pri congue munere, placerat scripserit sit at, eu ipsum nullam impetus eum. Quas dicit nobis cu qui, an mundi fabellas definitionem nec? Est et mediocrem voluptatum constituam, vel veri aliquid scriptorem at, ea nibh menandri pro. Nam et sonet theophrastus!<\/p>","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-29 09:34:10","post_date_gmt":"2016-08-29 09:34:10","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=16","post_mime_type":"","meta":{"_edit_last":"1","_edit_lock":"1472463123:1","_thumbnail_id":"17"},"terms":{"category":[{"term_id":5,"name":"Science","slug":"science","term_group":0,"term_taxonomy_id":5,"taxonomy":"category","description":"","parent":0,"count":2,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Posts","post_id":13,"post_title":"Mobile phone music","post_status":"publish","post_name":"mobile-phone-music","post_content":"<p>Lorem ipsum dolor sit amet, nec dicit noster habemus an, an populo dolorem cum. Te his primis deseruisse percipitur. Ex alienum temporibus est, aperiri voluptatibus vix ei. Deserunt moderatius te has, mel eruditi efficiantur in.<\/p>\r\n\r\n<p> Id quo quodsi detraxit, mea ut suavitate suscipiantur. At has nihil quidam. Ne vim diceret necessitatibus, per ut homero latine reprimique. Vis id hinc apeirian sadipscing, noster contentiones eu has.<\/p>\r\n\r\n<p> Eu nec graecis accommodare, purto laudem in quo! Te qui laudem partem persecuti! Ad error neglegentur vel, vel ne error debitis adolescens, ius quaeque omnesque et. Putent scaevola eam cu, ne fierent splendide vim. Iusto errem feugiat quo et, ut ius modus iuvaret, et sit fuisset consequat?<\/p>\r\n\r\n<p> Nulla ludus aliquando mel te? Lorem inciderint vis in, est iisque virtute discere ex. Pri eu diam sonet labore? Ex vel copiosae verterem, est at debet soleat ceteros. Et iusto gloriatur vim. Recusabo indoctum efficiantur nam id, et sit illud dolorum! Wisi numquam oporteat nec an.<\/p>\r\n\r\n<p> Purto solet impetus te usu, ea eum dicit maiorum conclusionemque! Noluisse disputationi ex vel? Ex usu fugit utamur partiendo. Dolor signiferumque eu vix, id ferri modus fabulas duo? Mei cu diam corrumpit.<\/p>\r\n\r\n<p> Purto senserit ex cum, pro no malis iudicabit maiestatis? Facete principes qui in. Sed an inermis delectus inimicus, nam et melius virtute hendrerit, sea id mucius iracundia. Ne maiorum omittantur sed? Te aperiam maiorum cum, est ut latine lucilius consequat?<\/p>\r\n\r\n<p> Ne has dictas iriure? Mel semper meliore constituto ei, nam velit labitur et, in sit populo delectus. Usu rebum falli omnium ei, per id sint impetus percipit. Ne nibh rationibus pro.<\/p>\r\n\r\n<p> Fabulas forensibus te mel? Ex enim persius persecuti vix, etiam quaestio omittantur ne eum, nec tantas accommodare ei. Eu audire consequat mei, ei exerci referrentur vim. An homero graeci mea, eius denique accommodare no est, in per etiam adolescens vituperata. Harum delectus ex pro, in vel reque dolore, ea vix nostrum adipisci interesset.<\/p>\r\n\r\n<p> Ut nam quod impetus detracto? Ut sed enim labitur contentiones. Ex eum hinc tritani, iriure disputando pro an. Ne cum clita quodsi incorrupte, usu natum vivendum at! An nam similique persecuti, iusto tritani nec ex?<\/p>\r\n\r\n<p> Vim te partem timeam scripta. An sea aperiam deleniti persequeris. Eam in nostrud assueverit, id quo dicant docendi sententiae. Per tota nominati perpetua id? Apeirian atomorum assueverit nam et, modo menandri an usu. Eum ea noster mandamus, laoreet detraxit has ut, pri at sumo labore doctus. Errem efficiendi scriptorem nec cu, mea ignota voluptaria theophrastus an.<\/p>\r\n\r\n<p> Tota saperet ponderum quo id. Cu primis nostrud has, usu dicit solet inciderint cu, dictas fuisset principes quo id? Pri dolorem volutpat quaerendum no, adhuc dicit ullamcorper te vix, eum ad duis laboramus efficiantur! Inani omnesque ei cum. Eu elitr admodum est, dicant dissentiet in mel.<\/p>\r\n\r\n<p> Duis modus vis eu, id vel nonumy voluptua? Et nec vero habeo ancillae, errem legendos dissentiet cu est? Agam harum dissentias at sed, his eu voluptatum efficiantur, eos enim velit at. Ei ius probo nostrud! Ut vel legere recusabo corrumpit, his iudico adversarium ei, errem percipit assueverit ius et. Soluta tibique an duo, qui luptatum repudiare et, ex pro apeirian repudiandae.<\/p>\r\n\r\n<p> Nam dicam eruditi an. Eos ut facilisis reprehendunt, duo wisi reformidans ex. Cum voluptatum disputationi no, sea viris mollis maiorum te? Nam id elit feugait, eum agam brute ut. Nullam maiorum platonem cum ut, eu aeque veritus posidonium vix.<\/p>\r\n\r\n<p> Purto assum maiestatis ei sit, regione temporibus ea per. Ut quo mundi vulputate, nostro expetendis ea vix? Vix modo duis atqui ne, ut etiam graeci sanctus his, vim vide elit no. Pro eu mutat scripta, usu tacimates suscipiantur ei, velit scaevola eum at?<\/p>\r\n\r\n<p> Ea dolore ubique disputationi mea, ad saepe euismod eum, te sed errem ceteros convenire. Albucius perpetua vim id, quem dicat pri an. Persecuti assueverit te cum, duo nobis commune instructior ne, has ei percipit voluptatum. Dicant mentitum recteque cu has, ius ex verterem probatus invenire. Et his iisque persecuti interesset, id qui modus oporteat instructior? No sint iisque assueverit nec, mel ad graeci quaerendum scribentur, stet nusquam accusam cu ius.<\/p>\r\n\r\n<p> Natum liber solet ex mei, idque dicunt est ad, vix paulo oratio mediocritatem cu? Eum ad impedit lobortis, sed id integre convenire, nec case dicant soleat eu. Rebum definitiones pro ea, labitur neglegentur vis ut? Pro ut tota possit habemus, nec ne melius impetus omittantur, ex qui sumo soleat referrentur! Sea nusquam consequat no, senserit euripidis te vix. An timeam vocibus concludaturque cum, qualisque dissentiet eum ea. Te iriure delenit eos!<\/p>\r\n\r\n<p> Te quaeque denique nominati pri, pro autem illum audiam id! Adipisci dignissim neglegentur eos ut, vis altera primis et. Equidem corrumpit assueverit sed cu, vis cu melius maluisset, ea paulo utinam eum! Ea vide apeirian tacimates eam! Mea porro inani cu? Quo dicunt dolores in, qui oratio labitur propriae ne, equidem eleifend nam ne?<\/p>\r\n\r\n<p> Nisl affert imperdiet ex sed. Quo ea natum soluta splendide, ne mucius debitis prodesset vel, id sit detracto percipitur. Appareat convenire vis cu! At eos error verear.<\/p>\r\n\r\n<p> An pericula imperdiet conclusionemque mea, mel congue accusata te. Ea semper audire verterem pri, sea ei quem quidam equidem, libris forensibus ad usu. Nonumy dissentiet eos te, pro ei iracundia vulputate! Id pro aeterno antiopam, amet solet indoctum vix ex. Vim malis verterem neglegentur ad, ferri nusquam facilisis nec ex. In qui simul oblique cotidieque? Reprimique intellegebat at est, ut ullum quando laoreet qui, mea convenire vulputate ei?<\/p>\r\n\r\n<p> Sit ad soleat tamquam, est id mutat accusam. Autem adipiscing in his, usu an alii elit. Usu facete melius inermis an, sonet voluptatibus mel in, mea cu etiam probatus mediocritatem! Adhuc sonet delicatissimi vis cu, errem omittam praesent ea nec? Vix ut modus dignissim, eos virtute sapientem ne! An affert eirmod duo!<\/p>\r\n\r\n<p> Id porro etiam necessitatibus quo, adipiscing argumentum delicatissimi no vim, id delectus adipisci abhorreant qui. Quo natum offendit ne, qui solet iriure maiorum no? Ea aeque laudem referrentur qui. Sea oporteat patrioque theophrastus ea.<\/p>\r\n\r\n<p> Eam omnes dolores et! No iudico timeam per, mei malorum vituperata in, eam alterum facilisis ad! Mei te tacimates volutpat, cu quo elitr fabulas accusam? Ut legimus debitis habemus vis.<\/p>","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-29 09:31:40","post_date_gmt":"2016-08-29 09:31:40","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=13","post_mime_type":"","meta":{"_edit_last":"1","_edit_lock":"1472468166:1","_thumbnail_id":"14"},"terms":{"category":[{"term_id":5,"name":"Science","slug":"science","term_group":0,"term_taxonomy_id":5,"taxonomy":"category","description":"","parent":0,"count":2,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Posts","post_id":83,"post_title":"Baby With Smiling Face","post_status":"publish","post_name":"baby-with-smiling-face","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n<blockquote>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\/blockquote>\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-28 07:19:43","post_date_gmt":"2016-08-28 07:19:43","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=83","post_mime_type":"","meta":{"_edit_last":"1","_edit_lock":"1472542196:1","_thumbnail_id":"85"},"terms":{"category":[{"term_id":2,"name":"Fashion","slug":"fashion","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":14,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Posts","post_id":104,"post_title":"Gorgeous Girl On Sea","post_status":"publish","post_name":"gorgeous-girl-on-sea","post_content":"Lorem ipsum dolor sit amet, voluptatum efficiendi nec et! Partiendo salutandi repudiandae vis ea. In sed maiorum comprehensam, nam te case possit sapientem! Ius eu malis convenire, cu movet detracto similique mei? Aliquip volumus perpetua ne mel.\r\n\r\n<strong>Lorem ipsum dolor sit amet, voluptatum efficiendi nec et<\/strong>!\r\n\r\n<img class=\"alignnone wp-image-108 size-full\" src=\"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/07\/beach-1368021_1280-1.jpg\" alt=\"beach-1368021_1280 (1)\" width=\"1280\" height=\"847\" \/>\r\n<p style=\"text-align: center;\"><em>Photo Credit: Pixabay\u00a0<\/em><\/p>\r\n<p style=\"text-align: left;\"><strong>Lorem ipsum dolor sit amet, voluptatum efficiendi nec et<\/strong>!<\/p>\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-109 size-full\" src=\"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/07\/girl-429380_1280-1.jpg\" alt=\"girl-429380_1280 (1)\" width=\"1280\" height=\"853\" \/><\/p>\r\n<p style=\"text-align: center;\"><em>Photo Credit: Pixabay\u00a0<\/em><\/p>\r\n<p style=\"text-align: left;\"><strong>Lorem ipsum dolor sit amet, voluptatum efficiendi nec et<\/strong>!<\/p>\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-110 size-full\" src=\"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/07\/child-428690_1280-1.jpg\" alt=\"child-428690_1280 (1)\" width=\"1280\" height=\"855\" \/><\/p>\r\n<p style=\"text-align: center;\"><em>Photo Credit: Pixabay\u00a0<\/em><\/p>","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-07-30 07:59:23","post_date_gmt":"2016-07-30 07:59:23","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=104","post_mime_type":"","meta":{"_edit_last":"1","_edit_lock":"1472544449:1","_thumbnail_id":"105"},"terms":{"category":[{"term_id":2,"name":"Fashion","slug":"fashion","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":14,"filter":"raw","meta":[]},{"term_id":3,"name":"Travel","slug":"travel","term_group":0,"term_taxonomy_id":3,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Posts","post_id":95,"post_title":"Walking Filili","post_status":"publish","post_name":"walking-filili","post_content":"<blockquote>Lorem ipsum dolor sit amet, voluptatum efficiendi nec et! Partiendo salutandi repudiandae vis ea. In sed maiorum comprehensam, nam te case possit sapientem! Ius eu malis convenire, cu movet detracto similique mei? Aliquip volumus perpetua ne mel.<\/blockquote>\r\nTe probo ipsum altera vis, quem praesent posidonium mei at. Eos dicam mentitum ea, nam an blandit deleniti, sonet eloquentiam an eam? Ad pri lobortis conclusionemque, usu ut magna libris? Alia offendit epicurei pro id, interesset liberavisse ei eum, eu sed dico dictas imperdiet. An vix semper probatus iudicabit.\r\n\r\n<img class=\"alignnone wp-image-98 size-full\" src=\"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/07\/feet-538245_1280-1.jpg\" alt=\"feet-538245_1280 (1)\" width=\"1280\" height=\"853\" \/>\r\n\r\nEpicurei detraxit principes quo an, ut est errem minimum patrioque, ius cu dicant bonorum. Consetetur disputando usu eu, ad quo sint dicit doming. Lobortis mandamus eam at. Eu vix quis comprehensam, stet nostro indoctum te nam. Usu at autem voluptatum, quo dicat intellegat vituperata ex! Natum inermis vel ut, ut unum fugit evertitur eos, quis vocibus an ius. Nec tota honestatis ut?\r\n\r\n<img class=\"alignleft wp-image-100 size-large\" src=\"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/07\/balloons-388973_1280-1-1024x682.jpg\" alt=\"balloons-388973_1280 (1)\" width=\"640\" height=\"426\" \/>\r\n\r\nVel ne nibh detracto, duo no ridens offendit apeirian. Nam reque propriae et. Et vivendum argumentum pro, iusto intellegam interpretaris eu eam! Eu usu quidam scaevola fabellas, pri ea consul integre efficiendi, usu facilis pericula accommodare in.\r\n\r\nIisque gubergren constituto ea pri, vocibus delicatissimi eum ex. Vel ferri gloriatur vulputate eu, ut maiestatis liberavisse qui. At postea volutpat vel? Eu tale tollit voluptatum pro, mea ferri illud et.\r\n\r\nTe probo ipsum altera vis, quem praesent posidonium mei at. Eos dicam mentitum ea, nam an blandit deleniti, sonet eloquentiam an eam? Ad pri lobortis conclusionemque, usu ut magna libris? Alia offendit epicurei pro id, interesset liberavisse ei eum, eu sed dico dictas imperdiet. An vix semper probatus iudicabit.\r\n<blockquote>Te probo ipsum altera vis, quem praesent posidonium mei at. Eos dicam mentitum ea, nam an blandit deleniti, sonet eloquentiam an eam? Ad pri lobortis conclusionemque, usu ut magna libris? Alia offendit epicurei pro id, interesset liberavisse ei eum, eu sed dico dictas imperdiet. An vix semper probatus iudicabit.\u00a0<img class=\"size-medium wp-image-45 alignright\" src=\"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/08\/mountain-984277_1280-300x200.jpg\" alt=\"mountain-984277_1280\" width=\"300\" height=\"200\" \/><\/blockquote>\r\nTe probo ipsum altera vis, quem praesent posidonium mei at. Eos dicam mentitum ea, nam an blandit deleniti, sonet eloquentiam an eam? Ad pri lobortis conclusionemque, usu ut magna libris? Alia offendit epicurei pro id, interesset liberavisse ei eum, eu sed dico dictas imperdiet. An vix semper probatus iudicabit\r\n\r\nTe probo ipsum altera vis, quem praesent posidonium mei at. Eos dicam mentitum ea, nam an blandit deleniti, sonet eloquentiam an eam? Ad pri lobortis conclusionemque, usu ut magna libris? Alia offendit epicurei pro id, interesset liberavisse ei eum, eu sed dico dictas imperdiet. An vix semper probatus iudicabit\r\n\r\n&nbsp;","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-07-30 07:49:43","post_date_gmt":"2016-07-30 07:49:43","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=95","post_mime_type":"","meta":{"_edit_last":"1","_edit_lock":"1472543819:1","_thumbnail_id":"96"},"terms":{"category":[{"term_id":4,"name":"Nature","slug":"nature","term_group":0,"term_taxonomy_id":4,"taxonomy":"category","description":"","parent":0,"count":7,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}}],"page":[{"type_title":"Pages","post_id":232,"post_title":"Based on masonry layout","post_status":"publish","post_name":"based-on-masonry-layout","post_content":"A very flexible theme with dozens of premium features.","post_excerpt":"","post_parent":226,"menu_order":0,"post_date":"2016-11-05 08:53:26","post_date_gmt":"2016-11-05 08:53:26","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?page_id=232","post_mime_type":"","meta":{"_edit_lock":"1478339694:1","_edit_last":"1","_thumbnail_id":"241"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Pages","post_id":230,"post_title":"Highly Crafted Photography Theme","post_status":"publish","post_name":"highly-crafted-photography-theme","post_content":"Quality code and Elegant Design ","post_excerpt":"","post_parent":226,"menu_order":0,"post_date":"2016-11-05 08:50:49","post_date_gmt":"2016-11-05 08:50:49","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?page_id=230","post_mime_type":"","meta":{"_edit_lock":"1478335709:1","_edit_last":"1","_thumbnail_id":"55"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Pages","post_id":228,"post_title":"Life is Beautiful","post_status":"publish","post_name":"life-is-beautiful","post_content":"Don't Miss Anything !!!","post_excerpt":"","post_parent":226,"menu_order":0,"post_date":"2016-11-05 08:49:46","post_date_gmt":"2016-11-05 08:49:46","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?page_id=228","post_mime_type":"","meta":{"_edit_lock":"1478339190:1","_edit_last":"1","_thumbnail_id":"240"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Pages","post_id":226,"post_title":"Slider","post_status":"publish","post_name":"slider","post_content":"","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-11-05 08:48:27","post_date_gmt":"2016-11-05 08:48:27","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?page_id=226","post_mime_type":"","meta":{"_edit_last":"1","_edit_lock":"1478335566:1"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Pages","post_id":187,"post_title":"Gallery","post_status":"publish","post_name":"gallery","post_content":"[nggallery id=\"1\"]","post_excerpt":"","post_parent":185,"menu_order":0,"post_date":"2016-08-30 09:13:33","post_date_gmt":"2016-08-30 09:13:33","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/gallery\/gallery\/","post_mime_type":"","meta":[],"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Pages","post_id":185,"post_title":"Gallery","post_status":"publish","post_name":"gallery","post_content":"<img class=\"ngg_displayed_gallery mceItem\" src=\"http:\/\/www.demo.acmethemes.com\/acmephoto\/nextgen-attach_to_post\/preview\/id--190\" data-mce-placeholder=\"1\" \/>","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:13:18","post_date_gmt":"2016-08-30 09:13:18","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?page_id=185","post_mime_type":"","meta":{"_edit_last":"1","_edit_lock":"1472549315:1"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Pages","post_id":77,"post_title":"Contact","post_status":"publish","post_name":"contact","post_content":"Are you looking for a professional photographer ? Please contact me.\r\n\r\n[contact-form-7 id=\"112\" title=\"Contact form 1\"]\r\n\r\n<h3>Find Us on Google Map<\/h3>\r\n<div class=\"google-map-iframe clearfix\">\r\n<script src='https:\/\/maps.googleapis.com\/maps\/api\/js?v=3.exp&key=AIzaSyDD8kAHOiAKejyyes5GJWGqCOM94jJ-ElA'><\/script><div style='overflow:hidden;height:316px;width:1021px;'><div id='gmap_canvas' style='height:316px;width:840px;'><\/div><style>#gmap_canvas img{max-width:none!important;background:none!important}<\/style><\/div> <a href='https:\/\/embedmaps.net'>embed a google map<\/a> <script type='text\/javascript' src='https:\/\/embedmaps.com\/google-maps-authorization\/script.js?id=16282facb52b6a700f798771b88d1d7ef62dfcc1'><\/script><script type='text\/javascript'>function init_map(){var myOptions = {zoom:12,center:new google.maps.LatLng(34.0720608,-118.04435319999999),mapTypeId: google.maps.MapTypeId.ROADMAP};map = new google.maps.Map(document.getElementById('gmap_canvas'), myOptions);marker = new google.maps.Marker({map: map,position: new google.maps.LatLng(34.0720608,-118.04435319999999)});infowindow = new google.maps.InfoWindow({content:'<strong>Office Address USA<\/strong><br>Elmonte, California<br>91731 Elmonte<br>'});google.maps.event.addListener(marker, 'click', function(){infowindow.open(map,marker);});infowindow.open(map,marker);}google.maps.event.addDomListener(window, 'load', init_map);<\/script>\r\n<\/div>","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-29 12:38:25","post_date_gmt":"2016-08-29 12:38:25","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?page_id=77","post_mime_type":"","meta":{"_edit_last":"1","_edit_lock":"1477285178:1"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Pages","post_id":75,"post_title":"About","post_status":"publish","post_name":"about","post_content":"Acme Themes is team of expert WordPress developers. We provide Best Premium and Free Responsive WordPress Themes with incredible support &amp; many other services.\r\n\r\n<img class=\"alignnone wp-image-14 size-full\" src=\"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/08\/mobile-616012_1920.jpg\" alt=\"mobile-616012_1920\" width=\"1920\" height=\"1275\" \/>\r\n\r\nWe design and Build Amazing things.","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-29 12:38:09","post_date_gmt":"2016-08-29 12:38:09","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?page_id=75","post_mime_type":"","meta":{"_edit_last":"1","_edit_lock":"1472551660:1"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Pages","post_id":6,"post_title":"Life Is Beautiful","post_status":"publish","post_name":"life-is-beautiful","post_content":"Don't miss anything","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-29 08:42:31","post_date_gmt":"2016-08-29 08:42:31","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?page_id=6","post_mime_type":"","meta":{"_edit_last":"1","_edit_lock":"1472460131:1","_thumbnail_id":"8"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}}],"custom_css":[],"wp_block":[],"wpcf7_contact_form":[{"type_title":"Contact Forms","post_id":112,"post_title":"Contact form 1","post_status":"publish","post_name":"contact-form-1","post_content":"<label> Your Name (required)\r\n [text* your-name] <\/label>\r\n\r\n<label> Your Email (required)\r\n [email* your-email] <\/label>\r\n\r\n<label> Subject\r\n [text your-subject] <\/label>\r\n\r\n<label> Your Message\r\n [textarea your-message] <\/label>\r\n\r\n[submit \"Send\"]\n1\nAcmePhoto \"[your-subject]\"\n[your-name] <wordpress@demo.acmethemes.com>\nacmethemes@gmail.com\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on AcmePhoto (http:\/\/www.demo.acmethemes.com\/acmephoto)\nReply-To: [your-email]\n\n\n\n\nAcmePhoto \"[your-subject]\"\nAcmePhoto <wordpress@demo.acmethemes.com>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on AcmePhoto (http:\/\/www.demo.acmethemes.com\/acmephoto)\nReply-To: acmethemes@gmail.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.\ndemo_mode: on","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 08:10:53","post_date_gmt":"2016-08-30 08:10:53","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?post_type=wpcf7_contact_form&#038;p=112","post_mime_type":"","meta":{"_form":"<label> Your Name (required)\n [text* your-name] <\/label>\n\n<label> Your Email (required)\n [email* your-email] <\/label>\n\n<label> Subject\n [text your-subject] <\/label>\n\n<label> Your Message\n [textarea your-message] <\/label>\n\n[submit \"Send\"]","_mail":{"active":true,"subject":"AcmePhoto \"[your-subject]\"","sender":"[your-name] <wordpress@demo.acmethemes.com>","recipient":"acmethemes@gmail.com","body":"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on AcmePhoto (http:\/\/www.demo.acmethemes.com\/acmephoto)","additional_headers":"Reply-To: [your-email]","attachments":"","use_html":false,"exclude_blank":false},"_mail_2":{"active":false,"subject":"AcmePhoto \"[your-subject]\"","sender":"AcmePhoto <wordpress@demo.acmethemes.com>","recipient":"[your-email]","body":"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on AcmePhoto (http:\/\/www.demo.acmethemes.com\/acmephoto)","additional_headers":"Reply-To: acmethemes@gmail.com","attachments":"","use_html":false,"exclude_blank":false},"_messages":{"mail_sent_ok":"Thank you for your message. It has been sent.","mail_sent_ng":"There was an error trying to send your message. Please try again later.","validation_error":"One or more fields have an error. Please check and try again.","spam":"There was an error trying to send your message. Please try again later.","accept_terms":"You must accept the terms and conditions before sending your message.","invalid_required":"The field is required.","invalid_too_long":"The field is too long.","invalid_too_short":"The field is too short.","invalid_date":"The date format is incorrect.","date_too_early":"The date is before the earliest one allowed.","date_too_late":"The date is after the latest one allowed.","upload_failed":"There was an unknown error uploading the file.","upload_file_type_invalid":"You are not allowed to upload files of this type.","upload_file_too_large":"The file is too big.","upload_failed_php_error":"There was an error uploading the file.","invalid_number":"The number format is invalid.","number_too_small":"The number is smaller than the minimum allowed.","number_too_large":"The number is larger than the maximum allowed.","quiz_answer_not_correct":"The answer to the quiz is incorrect.","captcha_not_match":"Your entered code is incorrect.","invalid_email":"The e-mail address entered is invalid.","invalid_url":"The URL is invalid.","invalid_tel":"The telephone number is invalid."},"_additional_settings":"demo_mode: on","_locale":"en_US"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}}],"ngg_album":[],"ngg_gallery":[{"type_title":"NextGEN Gallery - Gallery","post_id":128,"post_title":"Untitled ngg_gallery","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:22:18","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=128","post_mime_type":"","meta":{"__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Gallery","post_id":125,"post_title":"Untitled ngg_gallery","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:10:50","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=125","post_mime_type":"","meta":{"__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}}],"ngg_pictures":[{"type_title":"NextGEN Gallery - Image","post_id":127,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2019-05-08 23:57:31","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=127","post_mime_type":"","meta":{"__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":150,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4OTM5LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:22:19","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=150","post_mime_type":"","meta":{"updated_at":"1472548939","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":152,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4OTM5LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:22:19","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=152","post_mime_type":"","meta":{"updated_at":"1472548939","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":154,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4OTM5LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:22:19","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=154","post_mime_type":"","meta":{"updated_at":"1472548939","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":156,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4OTM5LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:22:19","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=156","post_mime_type":"","meta":{"updated_at":"1472548939","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":158,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4OTM5LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:22:19","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=158","post_mime_type":"","meta":{"updated_at":"1472548939","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":160,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4OTM5LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:22:19","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=160","post_mime_type":"","meta":{"updated_at":"1472548939","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":162,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4OTM5LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:22:19","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=162","post_mime_type":"","meta":{"updated_at":"1472548939","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":164,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4OTM5LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:22:19","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=164","post_mime_type":"","meta":{"updated_at":"1472548939","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":166,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4OTM5LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:22:19","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=166","post_mime_type":"","meta":{"updated_at":"1472548939","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":168,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4OTM5LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:22:19","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=168","post_mime_type":"","meta":{"updated_at":"1472548939","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":170,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4OTM5LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:22:19","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=170","post_mime_type":"","meta":{"updated_at":"1472548939","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":172,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4OTM5LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:22:19","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=172","post_mime_type":"","meta":{"updated_at":"1472548939","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":174,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4OTM5LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:22:19","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=174","post_mime_type":"","meta":{"updated_at":"1472548939","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":176,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4OTM5LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:22:19","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=176","post_mime_type":"","meta":{"updated_at":"1472548939","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":178,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4OTM5LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:22:19","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=178","post_mime_type":"","meta":{"updated_at":"1472548939","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":180,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4OTM5LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:22:19","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=180","post_mime_type":"","meta":{"updated_at":"1472548939","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":182,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4OTM5LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:22:19","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=182","post_mime_type":"","meta":{"updated_at":"1472548939","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":184,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4OTM5LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:22:19","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=184","post_mime_type":"","meta":{"updated_at":"1472548939","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":130,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4OTM4LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:22:18","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=130","post_mime_type":"","meta":{"updated_at":"1472548938","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":132,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4OTM4LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:22:18","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=132","post_mime_type":"","meta":{"updated_at":"1472548938","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":134,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4OTM4LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:22:18","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=134","post_mime_type":"","meta":{"updated_at":"1472548938","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":136,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4OTM4LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:22:18","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=136","post_mime_type":"","meta":{"updated_at":"1472548938","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":138,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4OTM4LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:22:18","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=138","post_mime_type":"","meta":{"updated_at":"1472548938","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":140,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4OTM4LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:22:18","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=140","post_mime_type":"","meta":{"updated_at":"1472548938","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":142,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4OTM4LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:22:18","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=142","post_mime_type":"","meta":{"updated_at":"1472548938","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":144,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4OTM4LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:22:18","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=144","post_mime_type":"","meta":{"updated_at":"1472548938","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":146,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4OTM4LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:22:18","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=146","post_mime_type":"","meta":{"updated_at":"1472548938","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":148,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4OTM4LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:22:18","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=148","post_mime_type":"","meta":{"updated_at":"1472548938","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":183,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4Mjc0LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:11:14","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=183","post_mime_type":"","meta":{"updated_at":"1472548274","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":181,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4MjczLCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:11:13","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=181","post_mime_type":"","meta":{"updated_at":"1472548273","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":179,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4MjcyLCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:11:12","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=179","post_mime_type":"","meta":{"updated_at":"1472548272","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":175,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4MjcxLCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:11:11","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=175","post_mime_type":"","meta":{"updated_at":"1472548271","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":177,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4MjcxLCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:11:11","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=177","post_mime_type":"","meta":{"updated_at":"1472548271","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":173,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4MjcwLCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:11:10","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=173","post_mime_type":"","meta":{"updated_at":"1472548270","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":171,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4MjY5LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:11:09","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=171","post_mime_type":"","meta":{"updated_at":"1472548269","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":169,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4MjY4LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:11:08","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=169","post_mime_type":"","meta":{"updated_at":"1472548268","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":165,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4MjY3LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:11:07","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=165","post_mime_type":"","meta":{"updated_at":"1472548267","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":167,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4MjY3LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:11:07","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=167","post_mime_type":"","meta":{"updated_at":"1472548267","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":163,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4MjY2LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:11:06","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=163","post_mime_type":"","meta":{"updated_at":"1472548266","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":159,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4MjY0LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:11:04","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=159","post_mime_type":"","meta":{"updated_at":"1472548264","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":161,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4MjY0LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:11:04","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=161","post_mime_type":"","meta":{"updated_at":"1472548264","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":157,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4MjYzLCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:11:03","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=157","post_mime_type":"","meta":{"updated_at":"1472548263","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":155,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4MjYyLCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:11:02","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=155","post_mime_type":"","meta":{"updated_at":"1472548262","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":153,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4MjYxLCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:11:01","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=153","post_mime_type":"","meta":{"updated_at":"1472548261","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":151,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4MjYwLCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:11:00","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=151","post_mime_type":"","meta":{"updated_at":"1472548260","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":147,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4MjU5LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:10:59","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=147","post_mime_type":"","meta":{"updated_at":"1472548259","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":149,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4MjU5LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:10:59","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=149","post_mime_type":"","meta":{"updated_at":"1472548259","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":145,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4MjU4LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:10:58","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=145","post_mime_type":"","meta":{"updated_at":"1472548258","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":143,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4MjU3LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:10:57","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=143","post_mime_type":"","meta":{"updated_at":"1472548257","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":141,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4MjU2LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:10:56","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=141","post_mime_type":"","meta":{"updated_at":"1472548256","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":139,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4MjU1LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:10:55","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=139","post_mime_type":"","meta":{"updated_at":"1472548255","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":137,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4MjU0LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:10:54","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=137","post_mime_type":"","meta":{"updated_at":"1472548254","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":135,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4MjUzLCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:10:53","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=135","post_mime_type":"","meta":{"updated_at":"1472548253","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":133,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4MjUyLCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:10:52","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=133","post_mime_type":"","meta":{"updated_at":"1472548252","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":131,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4MjUxLCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:10:51","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=131","post_mime_type":"","meta":{"updated_at":"1472548251","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":126,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4MjUwLCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:10:50","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=126","post_mime_type":"","meta":{"updated_at":"1472548250","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":129,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4MjUwLCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:10:50","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=129","post_mime_type":"","meta":{"updated_at":"1472548250","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}}],"lightbox_library":[],"displayed_gallery":[{"type_title":"NextGEN Gallery - Displayed Gallery","post_id":190,"post_title":"Untitled displayed_gallery","post_status":"draft","post_name":"","post_content":"eyJzb3VyY2UiOiJnYWxsZXJpZXMiLCJjb250YWluZXJfaWRzIjpbXSwiZW50aXR5X2lkcyI6W10sImRpc3BsYXlfdHlwZSI6InBob3RvY3JhdGktbmV4dGdlbl9iYXNpY190aHVtYm5haWxzIiwiZGlzcGxheV9zZXR0aW5ncyI6eyJ1c2VfbGlnaHRib3hfZWZmZWN0Ijp0cnVlLCJpbWFnZXNfcGVyX3BhZ2UiOiIyMCIsIm51bWJlcl9vZl9jb2x1bW5zIjoiMCIsInRodW1ibmFpbF93aWR0aCI6IjI0MCIsInRodW1ibmFpbF9oZWlnaHQiOiIxNjAiLCJzaG93X2FsbF9pbl9saWdodGJveCI6IjAiLCJhamF4X3BhZ2luYXRpb24iOiIwIiwidXNlX2ltYWdlYnJvd3Nlcl9lZmZlY3QiOiIwIiwidGVtcGxhdGUiOiIiLCJkaXNwbGF5X25vX2ltYWdlc19lcnJvciI6MSwiZGlzYWJsZV9wYWdpbmF0aW9uIjowLCJzaG93X3NsaWRlc2hvd19saW5rIjoiMCIsInNsaWRlc2hvd19saW5rX3RleHQiOiJDbGljayBmb3IgU2xpZGUgU2hvdyIsIm92ZXJyaWRlX3RodW1ibmFpbF9zZXR0aW5ncyI6IjAiLCJ0aHVtYm5haWxfcXVhbGl0eSI6IjEwMCIsInRodW1ibmFpbF9jcm9wIjoiMSIsInRodW1ibmFpbF93YXRlcm1hcmsiOjAsIm5nZ190cmlnZ2Vyc19kaXNwbGF5IjoibmV2ZXIifSwiZXhjbHVzaW9ucyI6W10sInNvcnRvcmRlciI6W10sInNsdWciOm51bGwsIm9yZGVyX2J5Ijoic29ydG9yZGVyIiwib3JkZXJfZGlyZWN0aW9uIjoiQVNDIiwiZXhjbHVkZWRfY29udGFpbmVyX2lkcyI6W10sInJldHVybnMiOiJpbmNsdWRlZCIsIm1heGltdW1fZW50aXR5X2NvdW50Ijo1MDAsImlkX2ZpZWxkIjoiSUQiLCJfX2RlZmF1bHRzX3NldCI6dHJ1ZX0=","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:28:51","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=190","post_mime_type":"","meta":{"source":"galleries","display_type":"photocrati-nextgen_basic_thumbnails","slug":"","order_by":"sortorder","order_direction":"ASC","returns":"included","maximum_entity_count":"500","__defaults_set":"1","container_ids":"W10=","entity_ids":"W10=","display_settings":"eyJ1c2VfbGlnaHRib3hfZWZmZWN0Ijp0cnVlLCJpbWFnZXNfcGVyX3BhZ2UiOiIyMCIsIm51bWJlcl9vZl9jb2x1bW5zIjoiMCIsInRodW1ibmFpbF93aWR0aCI6IjI0MCIsInRodW1ibmFpbF9oZWlnaHQiOiIxNjAiLCJzaG93X2FsbF9pbl9saWdodGJveCI6IjAiLCJhamF4X3BhZ2luYXRpb24iOiIwIiwidXNlX2ltYWdlYnJvd3Nlcl9lZmZlY3QiOiIwIiwidGVtcGxhdGUiOiIiLCJkaXNwbGF5X25vX2ltYWdlc19lcnJvciI6MSwiZGlzYWJsZV9wYWdpbmF0aW9uIjowLCJzaG93X3NsaWRlc2hvd19saW5rIjoiMCIsInNsaWRlc2hvd19saW5rX3RleHQiOiJDbGljayBmb3IgU2xpZGUgU2hvdyIsIm92ZXJyaWRlX3RodW1ibmFpbF9zZXR0aW5ncyI6IjAiLCJ0aHVtYm5haWxfcXVhbGl0eSI6IjEwMCIsInRodW1ibmFpbF9jcm9wIjoiMSIsInRodW1ibmFpbF93YXRlcm1hcmsiOjAsIm5nZ190cmlnZ2Vyc19kaXNwbGF5IjoibmV2ZXIifQ==","exclusions":"W10=","sortorder":"W10=","excluded_container_ids":"W10=","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}}],"display_type":[{"type_title":"NextGEN Gallery - Display Type","post_id":118,"post_title":"NextGEN Basic Thumbnails","post_status":"draft","post_name":"","post_content":"eyJmaWx0ZXIiOiJyYXciLCJtZXRhX2lkIjoiMzMzIiwicG9zdF9pZCI6IjExOCIsIm1ldGFfa2V5IjoibmFtZSIsIm1ldGFfdmFsdWUiOiJwaG90b2NyYXRpLW5leHRnZW5fYmFzaWNfdGh1bWJuYWlscyIsInRpdGxlIjoiTmV4dEdFTiBCYXNpYyBUaHVtYm5haWxzIiwiZW50aXR5X3R5cGVzIjpbImltYWdlIl0sInByZXZpZXdfaW1hZ2VfcmVscGF0aCI6InBob3RvY3JhdGktbmV4dGdlbl9iYXNpY19nYWxsZXJ5I3RodW1iX3ByZXZpZXcuanBnIiwiZGVmYXVsdF9zb3VyY2UiOiJnYWxsZXJpZXMiLCJ2aWV3X29yZGVyIjoxMDAwMCwibmFtZSI6InBob3RvY3JhdGktbmV4dGdlbl9iYXNpY190aHVtYm5haWxzIiwiaW5zdGFsbGVkX2F0X3ZlcnNpb24iOiIzLjIuMSIsImlkX2ZpZWxkIjoiSUQiLCJzZXR0aW5ncyI6eyJ1c2VfbGlnaHRib3hfZWZmZWN0Ijp0cnVlLCJpbWFnZXNfcGVyX3BhZ2UiOiIyMCIsIm51bWJlcl9vZl9jb2x1bW5zIjowLCJ0aHVtYm5haWxfd2lkdGgiOjI0MCwidGh1bWJuYWlsX2hlaWdodCI6MTYwLCJzaG93X2FsbF9pbl9saWdodGJveCI6MCwiYWpheF9wYWdpbmF0aW9uIjowLCJ1c2VfaW1hZ2Vicm93c2VyX2VmZmVjdCI6MCwidGVtcGxhdGUiOiIiLCJkaXNwbGF5X25vX2ltYWdlc19lcnJvciI6MSwiZGlzYWJsZV9wYWdpbmF0aW9uIjowLCJzaG93X3NsaWRlc2hvd19saW5rIjoxLCJzbGlkZXNob3dfbGlua190ZXh0IjoiW1Nob3cgc2xpZGVzaG93XSIsIm92ZXJyaWRlX3RodW1ibmFpbF9zZXR0aW5ncyI6MCwidGh1bWJuYWlsX3F1YWxpdHkiOiIxMDAiLCJ0aHVtYm5haWxfY3JvcCI6MSwidGh1bWJuYWlsX3dhdGVybWFyayI6MCwibmdnX3RyaWdnZXJzX2Rpc3BsYXkiOiJuZXZlciIsIl9lcnJvcnMiOltdLCJkaXNwbGF5X3ZpZXciOiJkZWZhdWx0In0sImhpZGRlbl9mcm9tX3VpIjpmYWxzZSwiYWxpYXNlcyI6WyJiYXNpY190aHVtYm5haWwiLCJiYXNpY190aHVtYm5haWxzIiwibmV4dGdlbl9iYXNpY190aHVtYm5haWxzIl0sImhpZGRlbl9mcm9tX2lndyI6ZmFsc2UsIm1vZHVsZV9pZCI6InBob3RvY3JhdGktbmV4dGdlbl9iYXNpY19nYWxsZXJ5IiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:09:05","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?post_type=display_type&#038;p=118","post_mime_type":"","meta":{"filter":"raw","meta_id":"333","post_id":"118","meta_key":"name","meta_value":"photocrati-nextgen_basic_thumbnails","title":"NextGEN Basic Thumbnails","preview_image_relpath":"photocrati-nextgen_basic_gallery#thumb_preview.jpg","default_source":"galleries","view_order":"10000","name":"photocrati-nextgen_basic_thumbnails","installed_at_version":"3.2.1","hidden_from_ui":"","hidden_from_igw":"","module_id":"photocrati-nextgen_basic_gallery","__defaults_set":"1","entity_types":"WyJpbWFnZSJd","id_field":"ID","settings":"eyJ1c2VfbGlnaHRib3hfZWZmZWN0Ijp0cnVlLCJpbWFnZXNfcGVyX3BhZ2UiOiIyMCIsIm51bWJlcl9vZl9jb2x1bW5zIjowLCJ0aHVtYm5haWxfd2lkdGgiOjI0MCwidGh1bWJuYWlsX2hlaWdodCI6MTYwLCJzaG93X2FsbF9pbl9saWdodGJveCI6MCwiYWpheF9wYWdpbmF0aW9uIjowLCJ1c2VfaW1hZ2Vicm93c2VyX2VmZmVjdCI6MCwidGVtcGxhdGUiOiIiLCJkaXNwbGF5X25vX2ltYWdlc19lcnJvciI6MSwiZGlzYWJsZV9wYWdpbmF0aW9uIjowLCJzaG93X3NsaWRlc2hvd19saW5rIjoxLCJzbGlkZXNob3dfbGlua190ZXh0IjoiW1Nob3cgc2xpZGVzaG93XSIsIm92ZXJyaWRlX3RodW1ibmFpbF9zZXR0aW5ncyI6MCwidGh1bWJuYWlsX3F1YWxpdHkiOiIxMDAiLCJ0aHVtYm5haWxfY3JvcCI6MSwidGh1bWJuYWlsX3dhdGVybWFyayI6MCwibmdnX3RyaWdnZXJzX2Rpc3BsYXkiOiJuZXZlciIsIl9lcnJvcnMiOltdLCJkaXNwbGF5X3ZpZXciOiJkZWZhdWx0In0=","aliases":"WyJiYXNpY190aHVtYm5haWwiLCJiYXNpY190aHVtYm5haWxzIiwibmV4dGdlbl9iYXNpY190aHVtYm5haWxzIl0="},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Display Type","post_id":119,"post_title":"NextGEN Basic Slideshow","post_status":"draft","post_name":"","post_content":"eyJmaWx0ZXIiOiJyYXciLCJtZXRhX2lkIjoiMzQ1IiwicG9zdF9pZCI6IjExOSIsIm1ldGFfa2V5IjoibmFtZSIsIm1ldGFfdmFsdWUiOiJwaG90b2NyYXRpLW5leHRnZW5fYmFzaWNfc2xpZGVzaG93IiwidGl0bGUiOiJOZXh0R0VOIEJhc2ljIFNsaWRlc2hvdyIsImVudGl0eV90eXBlcyI6WyJpbWFnZSJdLCJwcmV2aWV3X2ltYWdlX3JlbHBhdGgiOiJwaG90b2NyYXRpLW5leHRnZW5fYmFzaWNfZ2FsbGVyeSNzbGlkZXNob3dfcHJldmlldy5qcGciLCJkZWZhdWx0X3NvdXJjZSI6ImdhbGxlcmllcyIsInZpZXdfb3JkZXIiOjEwMDEwLCJuYW1lIjoicGhvdG9jcmF0aS1uZXh0Z2VuX2Jhc2ljX3NsaWRlc2hvdyIsImluc3RhbGxlZF9hdF92ZXJzaW9uIjoiMy4yLjEiLCJpZF9maWVsZCI6IklEIiwic2V0dGluZ3MiOnsidXNlX2xpZ2h0Ym94X2VmZmVjdCI6dHJ1ZSwiZ2FsbGVyeV93aWR0aCI6NjAwLCJnYWxsZXJ5X2hlaWdodCI6NDAwLCJ0aHVtYm5haWxfd2lkdGgiOjI0MCwidGh1bWJuYWlsX2hlaWdodCI6MTYwLCJjeWNsZV9pbnRlcnZhbCI6MTAsImN5Y2xlX2VmZmVjdCI6ImZhZGUiLCJlZmZlY3RfY29kZSI6ImNsYXNzPVwibmdnLWZhbmN5Ym94XCIgcmVsPVwiJUdBTExFUllfTkFNRSVcIiIsInNob3dfdGh1bWJuYWlsX2xpbmsiOjEsInRodW1ibmFpbF9saW5rX3RleHQiOiJbU2hvdyB0aHVtYm5haWxzXSIsInRlbXBsYXRlIjoiIiwibmdnX3RyaWdnZXJzX2Rpc3BsYXkiOiJuZXZlciIsIl9lcnJvcnMiOltdLCJkaXNwbGF5X3ZpZXciOiJkZWZhdWx0IiwiYXV0b3BsYXkiOjEsInBhdXNlb25ob3ZlciI6MSwiYXJyb3dzIjowLCJpbnRlcnZhbCI6MzAwMCwidHJhbnNpdGlvbl9zcGVlZCI6MzAwLCJ0cmFuc2l0aW9uX3N0eWxlIjoiZmFkZSJ9LCJoaWRkZW5fZnJvbV91aSI6ZmFsc2UsImFsaWFzZXMiOlsiYmFzaWNfc2xpZGVzaG93IiwibmV4dGdlbl9iYXNpY19zbGlkZXNob3ciXSwiaGlkZGVuX2Zyb21faWd3IjpmYWxzZSwibW9kdWxlX2lkIjoicGhvdG9jcmF0aS1uZXh0Z2VuX2Jhc2ljX2dhbGxlcnkiLCJfX2RlZmF1bHRzX3NldCI6dHJ1ZX0=","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:09:05","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?post_type=display_type&#038;p=119","post_mime_type":"","meta":{"filter":"raw","meta_id":"345","post_id":"119","meta_key":"name","meta_value":"photocrati-nextgen_basic_slideshow","title":"NextGEN Basic Slideshow","preview_image_relpath":"photocrati-nextgen_basic_gallery#slideshow_preview.jpg","default_source":"galleries","view_order":"10010","name":"photocrati-nextgen_basic_slideshow","installed_at_version":"3.2.1","hidden_from_ui":"","hidden_from_igw":"","module_id":"photocrati-nextgen_basic_gallery","__defaults_set":"1","entity_types":"WyJpbWFnZSJd","id_field":"ID","settings":"eyJ1c2VfbGlnaHRib3hfZWZmZWN0Ijp0cnVlLCJnYWxsZXJ5X3dpZHRoIjo2MDAsImdhbGxlcnlfaGVpZ2h0Ijo0MDAsInRodW1ibmFpbF93aWR0aCI6MjQwLCJ0aHVtYm5haWxfaGVpZ2h0IjoxNjAsImN5Y2xlX2ludGVydmFsIjoxMCwiY3ljbGVfZWZmZWN0IjoiZmFkZSIsImVmZmVjdF9jb2RlIjoiY2xhc3M9XCJuZ2ctZmFuY3lib3hcIiByZWw9XCIlR0FMTEVSWV9OQU1FJVwiIiwic2hvd190aHVtYm5haWxfbGluayI6MSwidGh1bWJuYWlsX2xpbmtfdGV4dCI6IltTaG93IHRodW1ibmFpbHNdIiwidGVtcGxhdGUiOiIiLCJuZ2dfdHJpZ2dlcnNfZGlzcGxheSI6Im5ldmVyIiwiX2Vycm9ycyI6W10sImRpc3BsYXlfdmlldyI6ImRlZmF1bHQiLCJhdXRvcGxheSI6MSwicGF1c2VvbmhvdmVyIjoxLCJhcnJvd3MiOjAsImludGVydmFsIjozMDAwLCJ0cmFuc2l0aW9uX3NwZWVkIjozMDAsInRyYW5zaXRpb25fc3R5bGUiOiJmYWRlIn0=","aliases":"WyJiYXNpY19zbGlkZXNob3ciLCJuZXh0Z2VuX2Jhc2ljX3NsaWRlc2hvdyJd"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Display Type","post_id":120,"post_title":"NextGEN Basic ImageBrowser","post_status":"draft","post_name":"","post_content":"eyJmaWx0ZXIiOiJyYXciLCJtZXRhX2lkIjoiMzU3IiwicG9zdF9pZCI6IjEyMCIsIm1ldGFfa2V5IjoibmFtZSIsIm1ldGFfdmFsdWUiOiJwaG90b2NyYXRpLW5leHRnZW5fYmFzaWNfaW1hZ2Vicm93c2VyIiwidGl0bGUiOiJOZXh0R0VOIEJhc2ljIEltYWdlQnJvd3NlciIsImVudGl0eV90eXBlcyI6WyJpbWFnZSJdLCJwcmV2aWV3X2ltYWdlX3JlbHBhdGgiOiJwaG90b2NyYXRpLW5leHRnZW5fYmFzaWNfaW1hZ2Vicm93c2VyI3ByZXZpZXcuanBnIiwiZGVmYXVsdF9zb3VyY2UiOiJnYWxsZXJpZXMiLCJ2aWV3X29yZGVyIjoxMDAyMCwibmFtZSI6InBob3RvY3JhdGktbmV4dGdlbl9iYXNpY19pbWFnZWJyb3dzZXIiLCJpbnN0YWxsZWRfYXRfdmVyc2lvbiI6IjMuMi4xIiwiaWRfZmllbGQiOiJJRCIsInNldHRpbmdzIjp7InVzZV9saWdodGJveF9lZmZlY3QiOnRydWUsInRlbXBsYXRlIjoiIiwibmdnX3RyaWdnZXJzX2Rpc3BsYXkiOiJuZXZlciIsIl9lcnJvcnMiOltdLCJkaXNwbGF5X3ZpZXciOiJkZWZhdWx0IiwiYWpheF9wYWdpbmF0aW9uIjoiMSJ9LCJoaWRkZW5fZnJvbV91aSI6ZmFsc2UsImFsaWFzZXMiOlsiYmFzaWNfaW1hZ2Vicm93c2VyIiwiaW1hZ2Vicm93c2VyIiwibmV4dGdlbl9iYXNpY19pbWFnZWJyb3dzZXIiXSwiaGlkZGVuX2Zyb21faWd3IjpmYWxzZSwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:09:05","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?post_type=display_type&#038;p=120","post_mime_type":"","meta":{"filter":"raw","meta_id":"357","post_id":"120","meta_key":"name","meta_value":"photocrati-nextgen_basic_imagebrowser","title":"NextGEN Basic ImageBrowser","preview_image_relpath":"photocrati-nextgen_basic_imagebrowser#preview.jpg","default_source":"galleries","view_order":"10020","name":"photocrati-nextgen_basic_imagebrowser","installed_at_version":"3.2.1","hidden_from_ui":"","hidden_from_igw":"","__defaults_set":"1","entity_types":"WyJpbWFnZSJd","id_field":"ID","settings":"eyJ1c2VfbGlnaHRib3hfZWZmZWN0Ijp0cnVlLCJ0ZW1wbGF0ZSI6IiIsIm5nZ190cmlnZ2Vyc19kaXNwbGF5IjoibmV2ZXIiLCJfZXJyb3JzIjpbXSwiZGlzcGxheV92aWV3IjoiZGVmYXVsdCIsImFqYXhfcGFnaW5hdGlvbiI6IjEifQ==","aliases":"WyJiYXNpY19pbWFnZWJyb3dzZXIiLCJpbWFnZWJyb3dzZXIiLCJuZXh0Z2VuX2Jhc2ljX2ltYWdlYnJvd3NlciJd"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Display Type","post_id":121,"post_title":"NextGEN Basic SinglePic","post_status":"draft","post_name":"","post_content":"eyJmaWx0ZXIiOiJyYXciLCJtZXRhX2lkIjoiMzcwIiwicG9zdF9pZCI6IjEyMSIsIm1ldGFfa2V5IjoibmFtZSIsIm1ldGFfdmFsdWUiOiJwaG90b2NyYXRpLW5leHRnZW5fYmFzaWNfc2luZ2xlcGljIiwidGl0bGUiOiJOZXh0R0VOIEJhc2ljIFNpbmdsZVBpYyIsImVudGl0eV90eXBlcyI6WyJpbWFnZSJdLCJwcmV2aWV3X2ltYWdlX3JlbHBhdGgiOiJwaG90b2NyYXRpLW5leHRnZW5fYmFzaWNfc2luZ2xlcGljI3ByZXZpZXcuZ2lmIiwiZGVmYXVsdF9zb3VyY2UiOiJnYWxsZXJpZXMiLCJ2aWV3X29yZGVyIjoxMDA2MCwiaGlkZGVuX2Zyb21fdWkiOnRydWUsIm5hbWUiOiJwaG90b2NyYXRpLW5leHRnZW5fYmFzaWNfc2luZ2xlcGljIiwiaW5zdGFsbGVkX2F0X3ZlcnNpb24iOiIzLjIuMSIsImlkX2ZpZWxkIjoiSUQiLCJzZXR0aW5ncyI6eyJ1c2VfbGlnaHRib3hfZWZmZWN0Ijp0cnVlLCJ3aWR0aCI6IiIsImhlaWdodCI6IiIsIm1vZGUiOiIiLCJkaXNwbGF5X3dhdGVybWFyayI6MCwiZGlzcGxheV9yZWZsZWN0aW9uIjowLCJmbG9hdCI6IiIsImxpbmsiOiIiLCJsaW5rX3RhcmdldCI6Il9ibGFuayIsInF1YWxpdHkiOjEwMCwiY3JvcCI6MCwidGVtcGxhdGUiOiIiLCJuZ2dfdHJpZ2dlcnNfZGlzcGxheSI6Im5ldmVyIiwiX2Vycm9ycyI6W119LCJoaWRkZW5fZnJvbV9pZ3ciOnRydWUsImFsaWFzZXMiOlsiYmFzaWNfc2luZ2xlcGljIiwic2luZ2xlcGljIiwibmV4dGdlbl9iYXNpY19zaW5nbGVwaWMiXSwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:09:05","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?post_type=display_type&#038;p=121","post_mime_type":"","meta":{"filter":"raw","meta_id":"370","post_id":"121","meta_key":"name","meta_value":"photocrati-nextgen_basic_singlepic","title":"NextGEN Basic SinglePic","preview_image_relpath":"photocrati-nextgen_basic_singlepic#preview.gif","default_source":"galleries","view_order":"10060","hidden_from_ui":"1","name":"photocrati-nextgen_basic_singlepic","installed_at_version":"3.2.1","hidden_from_igw":"1","__defaults_set":"1","entity_types":"WyJpbWFnZSJd","id_field":"ID","settings":"eyJ1c2VfbGlnaHRib3hfZWZmZWN0Ijp0cnVlLCJ3aWR0aCI6IiIsImhlaWdodCI6IiIsIm1vZGUiOiIiLCJkaXNwbGF5X3dhdGVybWFyayI6MCwiZGlzcGxheV9yZWZsZWN0aW9uIjowLCJmbG9hdCI6IiIsImxpbmsiOiIiLCJsaW5rX3RhcmdldCI6Il9ibGFuayIsInF1YWxpdHkiOjEwMCwiY3JvcCI6MCwidGVtcGxhdGUiOiIiLCJuZ2dfdHJpZ2dlcnNfZGlzcGxheSI6Im5ldmVyIiwiX2Vycm9ycyI6W119","aliases":"WyJiYXNpY19zaW5nbGVwaWMiLCJzaW5nbGVwaWMiLCJuZXh0Z2VuX2Jhc2ljX3NpbmdsZXBpYyJd"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Display Type","post_id":122,"post_title":"NextGEN Basic TagCloud","post_status":"draft","post_name":"","post_content":"eyJmaWx0ZXIiOiJyYXciLCJtZXRhX2lkIjoiMzgxIiwicG9zdF9pZCI6IjEyMiIsIm1ldGFfa2V5IjoibmFtZSIsIm1ldGFfdmFsdWUiOiJwaG90b2NyYXRpLW5leHRnZW5fYmFzaWNfdGFnY2xvdWQiLCJ0aXRsZSI6Ik5leHRHRU4gQmFzaWMgVGFnQ2xvdWQiLCJlbnRpdHlfdHlwZXMiOlsiaW1hZ2UiXSwicHJldmlld19pbWFnZV9yZWxwYXRoIjoicGhvdG9jcmF0aS1uZXh0Z2VuX2Jhc2ljX3RhZ2Nsb3VkI3ByZXZpZXcuZ2lmIiwiZGVmYXVsdF9zb3VyY2UiOiJ0YWdzIiwidmlld19vcmRlciI6MTAxMDAsIm5hbWUiOiJwaG90b2NyYXRpLW5leHRnZW5fYmFzaWNfdGFnY2xvdWQiLCJpbnN0YWxsZWRfYXRfdmVyc2lvbiI6IjMuMi4xIiwiaWRfZmllbGQiOiJJRCIsInNldHRpbmdzIjp7InVzZV9saWdodGJveF9lZmZlY3QiOnRydWUsIm51bWJlciI6NDUsIm5nZ190cmlnZ2Vyc19kaXNwbGF5IjoibmV2ZXIiLCJnYWxsZXJ5X2Rpc3BsYXlfdHlwZSI6InBob3RvY3JhdGktbmV4dGdlbl9iYXNpY190aHVtYm5haWxzIiwiX2Vycm9ycyI6W119LCJoaWRkZW5fZnJvbV91aSI6ZmFsc2UsImFsaWFzZXMiOlsiYmFzaWNfdGFnY2xvdWQiLCJ0YWdjbG91ZCIsIm5leHRnZW5fYmFzaWNfdGFnY2xvdWQiXSwiaGlkZGVuX2Zyb21faWd3IjpmYWxzZSwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:09:05","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?post_type=display_type&#038;p=122","post_mime_type":"","meta":{"filter":"raw","meta_id":"381","post_id":"122","meta_key":"name","meta_value":"photocrati-nextgen_basic_tagcloud","title":"NextGEN Basic TagCloud","preview_image_relpath":"photocrati-nextgen_basic_tagcloud#preview.gif","default_source":"tags","view_order":"10100","name":"photocrati-nextgen_basic_tagcloud","installed_at_version":"3.2.1","hidden_from_ui":"","hidden_from_igw":"","__defaults_set":"1","entity_types":"WyJpbWFnZSJd","id_field":"ID","settings":"eyJ1c2VfbGlnaHRib3hfZWZmZWN0Ijp0cnVlLCJudW1iZXIiOjQ1LCJuZ2dfdHJpZ2dlcnNfZGlzcGxheSI6Im5ldmVyIiwiZ2FsbGVyeV9kaXNwbGF5X3R5cGUiOiJwaG90b2NyYXRpLW5leHRnZW5fYmFzaWNfdGh1bWJuYWlscyIsIl9lcnJvcnMiOltdfQ==","aliases":"WyJiYXNpY190YWdjbG91ZCIsInRhZ2Nsb3VkIiwibmV4dGdlbl9iYXNpY190YWdjbG91ZCJd"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Display Type","post_id":123,"post_title":"NextGEN Basic Compact Album","post_status":"draft","post_name":"","post_content":"eyJmaWx0ZXIiOiJyYXciLCJtZXRhX2lkIjoiMzkzIiwicG9zdF9pZCI6IjEyMyIsIm1ldGFfa2V5IjoibmFtZSIsIm1ldGFfdmFsdWUiOiJwaG90b2NyYXRpLW5leHRnZW5fYmFzaWNfY29tcGFjdF9hbGJ1bSIsInRpdGxlIjoiTmV4dEdFTiBCYXNpYyBDb21wYWN0IEFsYnVtIiwiZW50aXR5X3R5cGVzIjpbImFsYnVtIiwiZ2FsbGVyeSJdLCJwcmV2aWV3X2ltYWdlX3JlbHBhdGgiOiJwaG90b2NyYXRpLW5leHRnZW5fYmFzaWNfYWxidW0jY29tcGFjdF9wcmV2aWV3LmpwZyIsImRlZmF1bHRfc291cmNlIjoiYWxidW1zIiwidmlld19vcmRlciI6MTAyMDAsIm5hbWUiOiJwaG90b2NyYXRpLW5leHRnZW5fYmFzaWNfY29tcGFjdF9hbGJ1bSIsImluc3RhbGxlZF9hdF92ZXJzaW9uIjoiMy4yLjEiLCJpZF9maWVsZCI6IklEIiwic2V0dGluZ3MiOnsidXNlX2xpZ2h0Ym94X2VmZmVjdCI6dHJ1ZSwiZ2FsbGVyaWVzX3Blcl9wYWdlIjowLCJlbmFibGVfYnJlYWRjcnVtYnMiOjEsImRpc2FibGVfcGFnaW5hdGlvbiI6MCwiZW5hYmxlX2Rlc2NyaXB0aW9ucyI6MCwidGVtcGxhdGUiOiIiLCJnYWxsZXJ5X2Rpc3BsYXlfdHlwZSI6InBob3RvY3JhdGktbmV4dGdlbl9iYXNpY190aHVtYm5haWxzIiwiZ2FsbGVyeV9kaXNwbGF5X3RlbXBsYXRlIjoiIiwibmdnX3RyaWdnZXJzX2Rpc3BsYXkiOiJuZXZlciIsIm9wZW5fZ2FsbGVyeV9pbl9saWdodGJveCI6MCwiX2Vycm9ycyI6W10sImRpc3BsYXlfdmlldyI6ImRlZmF1bHQiLCJvdmVycmlkZV90aHVtYm5haWxfc2V0dGluZ3MiOjEsInRodW1ibmFpbF9xdWFsaXR5IjoxMDAsInRodW1ibmFpbF9jcm9wIjoxLCJ0aHVtYm5haWxfd2F0ZXJtYXJrIjowLCJ0aHVtYm5haWxfd2lkdGgiOjI0MCwidGh1bWJuYWlsX2hlaWdodCI6MTYwfSwiaGlkZGVuX2Zyb21fdWkiOmZhbHNlLCJhbGlhc2VzIjpbImJhc2ljX2NvbXBhY3RfYWxidW0iLCJuZXh0Z2VuX2Jhc2ljX2FsYnVtIiwiYmFzaWNfYWxidW1fY29tcGFjdCIsImNvbXBhY3RfYWxidW0iXSwiaGlkZGVuX2Zyb21faWd3IjpmYWxzZSwibW9kdWxlX2lkIjoicGhvdG9jcmF0aS1uZXh0Z2VuX2Jhc2ljX2FsYnVtIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:09:05","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?post_type=display_type&#038;p=123","post_mime_type":"","meta":{"filter":"raw","meta_id":"393","post_id":"123","meta_key":"name","meta_value":"photocrati-nextgen_basic_compact_album","title":"NextGEN Basic Compact Album","preview_image_relpath":"photocrati-nextgen_basic_album#compact_preview.jpg","default_source":"albums","view_order":"10200","name":"photocrati-nextgen_basic_compact_album","installed_at_version":"3.2.1","hidden_from_ui":"","hidden_from_igw":"","module_id":"photocrati-nextgen_basic_album","__defaults_set":"1","entity_types":"WyJhbGJ1bSIsImdhbGxlcnkiXQ==","id_field":"ID","settings":"eyJ1c2VfbGlnaHRib3hfZWZmZWN0Ijp0cnVlLCJnYWxsZXJpZXNfcGVyX3BhZ2UiOjAsImVuYWJsZV9icmVhZGNydW1icyI6MSwiZGlzYWJsZV9wYWdpbmF0aW9uIjowLCJlbmFibGVfZGVzY3JpcHRpb25zIjowLCJ0ZW1wbGF0ZSI6IiIsImdhbGxlcnlfZGlzcGxheV90eXBlIjoicGhvdG9jcmF0aS1uZXh0Z2VuX2Jhc2ljX3RodW1ibmFpbHMiLCJnYWxsZXJ5X2Rpc3BsYXlfdGVtcGxhdGUiOiIiLCJuZ2dfdHJpZ2dlcnNfZGlzcGxheSI6Im5ldmVyIiwib3Blbl9nYWxsZXJ5X2luX2xpZ2h0Ym94IjowLCJfZXJyb3JzIjpbXSwiZGlzcGxheV92aWV3IjoiZGVmYXVsdCIsIm92ZXJyaWRlX3RodW1ibmFpbF9zZXR0aW5ncyI6MSwidGh1bWJuYWlsX3F1YWxpdHkiOjEwMCwidGh1bWJuYWlsX2Nyb3AiOjEsInRodW1ibmFpbF93YXRlcm1hcmsiOjAsInRodW1ibmFpbF93aWR0aCI6MjQwLCJ0aHVtYm5haWxfaGVpZ2h0IjoxNjB9","aliases":"WyJiYXNpY19jb21wYWN0X2FsYnVtIiwibmV4dGdlbl9iYXNpY19hbGJ1bSIsImJhc2ljX2FsYnVtX2NvbXBhY3QiLCJjb21wYWN0X2FsYnVtIl0="},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Display Type","post_id":124,"post_title":"NextGEN Basic Extended Album","post_status":"draft","post_name":"","post_content":"eyJmaWx0ZXIiOiJyYXciLCJtZXRhX2lkIjoiNDA1IiwicG9zdF9pZCI6IjEyNCIsIm1ldGFfa2V5IjoibmFtZSIsIm1ldGFfdmFsdWUiOiJwaG90b2NyYXRpLW5leHRnZW5fYmFzaWNfZXh0ZW5kZWRfYWxidW0iLCJ0aXRsZSI6Ik5leHRHRU4gQmFzaWMgRXh0ZW5kZWQgQWxidW0iLCJlbnRpdHlfdHlwZXMiOlsiYWxidW0iLCJnYWxsZXJ5Il0sInByZXZpZXdfaW1hZ2VfcmVscGF0aCI6InBob3RvY3JhdGktbmV4dGdlbl9iYXNpY19hbGJ1bSNleHRlbmRlZF9wcmV2aWV3LmpwZyIsImRlZmF1bHRfc291cmNlIjoiYWxidW1zIiwidmlld19vcmRlciI6MTAyMTAsIm5hbWUiOiJwaG90b2NyYXRpLW5leHRnZW5fYmFzaWNfZXh0ZW5kZWRfYWxidW0iLCJpbnN0YWxsZWRfYXRfdmVyc2lvbiI6IjMuMi4xIiwiaWRfZmllbGQiOiJJRCIsInNldHRpbmdzIjp7InVzZV9saWdodGJveF9lZmZlY3QiOnRydWUsImdhbGxlcmllc19wZXJfcGFnZSI6MCwiZW5hYmxlX2JyZWFkY3J1bWJzIjoxLCJkaXNhYmxlX3BhZ2luYXRpb24iOjAsImVuYWJsZV9kZXNjcmlwdGlvbnMiOjAsInRlbXBsYXRlIjoiIiwib3ZlcnJpZGVfdGh1bWJuYWlsX3NldHRpbmdzIjowLCJ0aHVtYm5haWxfd2lkdGgiOjI0MCwidGh1bWJuYWlsX2hlaWdodCI6MTYwLCJ0aHVtYm5haWxfcXVhbGl0eSI6MTAwLCJ0aHVtYm5haWxfY3JvcCI6dHJ1ZSwidGh1bWJuYWlsX3dhdGVybWFyayI6MCwiZ2FsbGVyeV9kaXNwbGF5X3R5cGUiOiJwaG90b2NyYXRpLW5leHRnZW5fYmFzaWNfdGh1bWJuYWlscyIsImdhbGxlcnlfZGlzcGxheV90ZW1wbGF0ZSI6IiIsIm5nZ190cmlnZ2Vyc19kaXNwbGF5IjoibmV2ZXIiLCJvcGVuX2dhbGxlcnlfaW5fbGlnaHRib3giOjAsIl9lcnJvcnMiOltdLCJkaXNwbGF5X3ZpZXciOiJkZWZhdWx0In0sImhpZGRlbl9mcm9tX3VpIjpmYWxzZSwiYWxpYXNlcyI6WyJiYXNpY19leHRlbmRlZF9hbGJ1bSIsIm5leHRnZW5fYmFzaWNfZXh0ZW5kZWRfYWxidW0iLCJleHRlbmRlZF9hbGJ1bSJdLCJoaWRkZW5fZnJvbV9pZ3ciOmZhbHNlLCJtb2R1bGVfaWQiOiJwaG90b2NyYXRpLW5leHRnZW5fYmFzaWNfYWxidW0iLCJfX2RlZmF1bHRzX3NldCI6dHJ1ZX0=","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:09:05","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?post_type=display_type&#038;p=124","post_mime_type":"","meta":{"filter":"raw","meta_id":"405","post_id":"124","meta_key":"name","meta_value":"photocrati-nextgen_basic_extended_album","title":"NextGEN Basic Extended Album","preview_image_relpath":"photocrati-nextgen_basic_album#extended_preview.jpg","default_source":"albums","view_order":"10210","name":"photocrati-nextgen_basic_extended_album","installed_at_version":"3.2.1","hidden_from_ui":"","hidden_from_igw":"","module_id":"photocrati-nextgen_basic_album","__defaults_set":"1","entity_types":"WyJhbGJ1bSIsImdhbGxlcnkiXQ==","id_field":"ID","settings":"eyJ1c2VfbGlnaHRib3hfZWZmZWN0Ijp0cnVlLCJnYWxsZXJpZXNfcGVyX3BhZ2UiOjAsImVuYWJsZV9icmVhZGNydW1icyI6MSwiZGlzYWJsZV9wYWdpbmF0aW9uIjowLCJlbmFibGVfZGVzY3JpcHRpb25zIjowLCJ0ZW1wbGF0ZSI6IiIsIm92ZXJyaWRlX3RodW1ibmFpbF9zZXR0aW5ncyI6MCwidGh1bWJuYWlsX3dpZHRoIjoyNDAsInRodW1ibmFpbF9oZWlnaHQiOjE2MCwidGh1bWJuYWlsX3F1YWxpdHkiOjEwMCwidGh1bWJuYWlsX2Nyb3AiOnRydWUsInRodW1ibmFpbF93YXRlcm1hcmsiOjAsImdhbGxlcnlfZGlzcGxheV90eXBlIjoicGhvdG9jcmF0aS1uZXh0Z2VuX2Jhc2ljX3RodW1ibmFpbHMiLCJnYWxsZXJ5X2Rpc3BsYXlfdGVtcGxhdGUiOiIiLCJuZ2dfdHJpZ2dlcnNfZGlzcGxheSI6Im5ldmVyIiwib3Blbl9nYWxsZXJ5X2luX2xpZ2h0Ym94IjowLCJfZXJyb3JzIjpbXSwiZGlzcGxheV92aWV3IjoiZGVmYXVsdCJ9","aliases":"WyJiYXNpY19leHRlbmRlZF9hbGJ1bSIsIm5leHRnZW5fYmFzaWNfZXh0ZW5kZWRfYWxidW0iLCJleHRlbmRlZF9hbGJ1bSJd"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}}],"gal_display_source":[],"nav_menu_item":[{"type_title":"Navigation Menu Items","post_id":249,"post_title":"Another Demo","post_status":"publish","post_name":"another-demo","post_content":"","post_excerpt":"","post_parent":0,"menu_order":11,"post_date":"2016-11-05 11:17:50","post_date_gmt":"2016-11-05 11:17:50","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/blog\/2016\/11\/05\/another-demo\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"249","_menu_item_object":"custom","_menu_item_target":"_blank","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":7,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":7,"taxonomy":"nav_menu","description":"","parent":0,"count":11,"filter":"raw","meta":[]}],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Navigation Menu Items","post_id":244,"post_title":"","post_status":"publish","post_name":"244","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":3,"post_date":"2016-11-05 11:14:09","post_date_gmt":"2016-11-05 11:14:09","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/blog\/2016\/11\/05\/244\/","post_mime_type":"","meta":{"_menu_item_type":"taxonomy","_menu_item_menu_item_parent":"208","_menu_item_object_id":"2","_menu_item_object":"category","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":7,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":7,"taxonomy":"nav_menu","description":"","parent":0,"count":11,"filter":"raw","meta":[]}],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Navigation Menu Items","post_id":245,"post_title":"","post_status":"publish","post_name":"245","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":5,"post_date":"2016-11-05 11:14:09","post_date_gmt":"2016-11-05 11:14:09","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/blog\/2016\/11\/05\/245\/","post_mime_type":"","meta":{"_menu_item_type":"taxonomy","_menu_item_menu_item_parent":"208","_menu_item_object_id":"4","_menu_item_object":"category","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":7,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":7,"taxonomy":"nav_menu","description":"","parent":0,"count":11,"filter":"raw","meta":[]}],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Navigation Menu Items","post_id":246,"post_title":"","post_status":"publish","post_name":"246","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":4,"post_date":"2016-11-05 11:14:09","post_date_gmt":"2016-11-05 11:14:09","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/blog\/2016\/11\/05\/246\/","post_mime_type":"","meta":{"_menu_item_type":"taxonomy","_menu_item_menu_item_parent":"208","_menu_item_object_id":"3","_menu_item_object":"category","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":7,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":7,"taxonomy":"nav_menu","description":"","parent":0,"count":11,"filter":"raw","meta":[]}],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Navigation Menu Items","post_id":247,"post_title":"","post_status":"publish","post_name":"247","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":7,"post_date":"2016-11-05 11:14:09","post_date_gmt":"2016-11-05 11:14:09","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/blog\/2016\/11\/05\/247\/","post_mime_type":"","meta":{"_menu_item_type":"taxonomy","_menu_item_menu_item_parent":"245","_menu_item_object_id":"5","_menu_item_object":"category","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":7,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":7,"taxonomy":"nav_menu","description":"","parent":0,"count":11,"filter":"raw","meta":[]}],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Navigation Menu Items","post_id":248,"post_title":"","post_status":"publish","post_name":"248","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":6,"post_date":"2016-11-05 11:14:09","post_date_gmt":"2016-11-05 11:14:09","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/blog\/2016\/11\/05\/248\/","post_mime_type":"","meta":{"_menu_item_type":"taxonomy","_menu_item_menu_item_parent":"245","_menu_item_object_id":"6","_menu_item_object":"category","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":7,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":7,"taxonomy":"nav_menu","description":"","parent":0,"count":11,"filter":"raw","meta":[]}],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Navigation Menu Items","post_id":208,"post_title":"Category","post_status":"publish","post_name":"category","post_content":"","post_excerpt":"","post_parent":0,"menu_order":2,"post_date":"2016-08-31 06:53:05","post_date_gmt":"2016-08-31 06:53:05","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/2016\/08\/31\/category\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"208","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"#"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":7,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":7,"taxonomy":"nav_menu","description":"","parent":0,"count":11,"filter":"raw","meta":[]}],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Navigation Menu Items","post_id":197,"post_title":"AcmeBlog","post_status":"publish","post_name":"acmeblog","post_content":"","post_excerpt":"","post_parent":0,"menu_order":6,"post_date":"2016-08-30 11:21:47","post_date_gmt":"2016-08-30 11:21:47","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/2016\/08\/30\/acmeblog\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"197","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"https:\/\/www.acmethemes.com\/themes\/acmeblog"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":8,"name":"Custom Menu","slug":"custom-menu","term_group":0,"term_taxonomy_id":8,"taxonomy":"nav_menu","description":"","parent":0,"count":6,"filter":"raw","meta":[]}],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Navigation Menu Items","post_id":198,"post_title":"SuperMag","post_status":"publish","post_name":"supermag","post_content":"","post_excerpt":"","post_parent":0,"menu_order":5,"post_date":"2016-08-30 11:21:47","post_date_gmt":"2016-08-30 11:21:47","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/2016\/08\/30\/supermag\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"198","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"https:\/\/www.acmethemes.com\/themes\/supermag"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":8,"name":"Custom Menu","slug":"custom-menu","term_group":0,"term_taxonomy_id":8,"taxonomy":"nav_menu","description":"","parent":0,"count":6,"filter":"raw","meta":[]}],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Navigation Menu Items","post_id":199,"post_title":"Corporate Plus","post_status":"publish","post_name":"corporate-plus","post_content":"","post_excerpt":"","post_parent":0,"menu_order":4,"post_date":"2016-08-30 11:21:47","post_date_gmt":"2016-08-30 11:21:47","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/2016\/08\/30\/corporate-plus\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"199","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"https:\/\/www.acmethemes.com\/themes\/corporate-plus"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":8,"name":"Custom Menu","slug":"custom-menu","term_group":0,"term_taxonomy_id":8,"taxonomy":"nav_menu","description":"","parent":0,"count":6,"filter":"raw","meta":[]}],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Navigation Menu Items","post_id":200,"post_title":"Infinite Photography","post_status":"publish","post_name":"infinite-photography","post_content":"","post_excerpt":"","post_parent":0,"menu_order":3,"post_date":"2016-08-30 11:21:47","post_date_gmt":"2016-08-30 11:21:47","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/2016\/08\/30\/infinite-photography\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"200","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"https:\/\/www.acmethemes.com\/themes\/infinite-photography"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":8,"name":"Custom Menu","slug":"custom-menu","term_group":0,"term_taxonomy_id":8,"taxonomy":"nav_menu","description":"","parent":0,"count":6,"filter":"raw","meta":[]}],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Navigation Menu Items","post_id":201,"post_title":"SuperNews","post_status":"publish","post_name":"supernews","post_content":"","post_excerpt":"","post_parent":0,"menu_order":2,"post_date":"2016-08-30 11:21:47","post_date_gmt":"2016-08-30 11:21:47","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/2016\/08\/30\/supernews\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"201","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"https:\/\/www.acmethemes.com\/themes\/supernews"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":8,"name":"Custom Menu","slug":"custom-menu","term_group":0,"term_taxonomy_id":8,"taxonomy":"nav_menu","description":"","parent":0,"count":6,"filter":"raw","meta":[]}],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Navigation Menu Items","post_id":202,"post_title":"Weblog","post_status":"publish","post_name":"weblog","post_content":"","post_excerpt":"","post_parent":0,"menu_order":1,"post_date":"2016-08-30 11:21:47","post_date_gmt":"2016-08-30 11:21:47","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/2016\/08\/30\/weblog\/","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"202","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"https:\/\/www.acmethemes.com\/themes\/weblog"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":8,"name":"Custom Menu","slug":"custom-menu","term_group":0,"term_taxonomy_id":8,"taxonomy":"nav_menu","description":"","parent":0,"count":6,"filter":"raw","meta":[]}],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Navigation Menu Items","post_id":193,"post_title":"","post_status":"publish","post_name":"193","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":10,"post_date":"2016-08-30 09:36:29","post_date_gmt":"2016-08-30 09:36:29","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=193","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"0","_menu_item_object_id":"185","_menu_item_object":"page","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":7,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":7,"taxonomy":"nav_menu","description":"","parent":0,"count":11,"filter":"raw","meta":[]}],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Navigation Menu Items","post_id":80,"post_title":"","post_status":"publish","post_name":"80","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":8,"post_date":"2016-08-29 12:39:30","post_date_gmt":"2016-08-29 12:39:30","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=80","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"0","_menu_item_object_id":"77","_menu_item_object":"page","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":7,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":7,"taxonomy":"nav_menu","description":"","parent":0,"count":11,"filter":"raw","meta":[]}],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Navigation Menu Items","post_id":81,"post_title":"","post_status":"publish","post_name":"81","post_content":" ","post_excerpt":"","post_parent":0,"menu_order":9,"post_date":"2016-08-29 12:39:30","post_date_gmt":"2016-08-29 12:39:30","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=81","post_mime_type":"","meta":{"_menu_item_type":"post_type","_menu_item_menu_item_parent":"0","_menu_item_object_id":"75","_menu_item_object":"page","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":""},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":7,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":7,"taxonomy":"nav_menu","description":"","parent":0,"count":11,"filter":"raw","meta":[]}],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Navigation Menu Items","post_id":47,"post_title":"Home","post_status":"publish","post_name":"home","post_content":"","post_excerpt":"","post_parent":0,"menu_order":1,"post_date":"2016-08-29 10:05:32","post_date_gmt":"2016-08-29 10:05:32","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=47","post_mime_type":"","meta":{"_menu_item_type":"custom","_menu_item_menu_item_parent":"0","_menu_item_object_id":"47","_menu_item_object":"custom","_menu_item_target":"","_menu_item_classes":[""],"_menu_item_xfn":"","_menu_item_url":"http:\/\/www.demo.acmethemes.com\/acmephoto\/"},"terms":{"category":[],"post_tag":[],"nav_menu":[{"term_id":7,"name":"Primary Menu","slug":"primary-menu","term_group":0,"term_taxonomy_id":7,"taxonomy":"nav_menu","description":"","parent":0,"count":11,"filter":"raw","meta":[]}],"link_category":[],"post_format":[],"ngg_tag":[]}}]}
includes/demo-data/acmephoto/demo-1/options.json ADDED
@@ -0,0 +1 @@
 
1
+ {"menu":{"primary":7},"options":{"blogname":"AcmePhoto","blogname-child":"AcmePhoto","blogdescription":"For All Photographers","blogdescription-child":"For All Photographers","posts_per_page":"10","posts_per_page-child":"10","date_format":"F j, Y","date_format-child":"F j, Y","time_format":"g:i a","time_format-child":"g:i a","show_on_front":"posts","show_on_front-child":"posts","thumbnail_size_w":"150","thumbnail_size_w-child":"150","thumbnail_size_h":"150","thumbnail_size_h-child":"150","thumbnail_crop":"1","thumbnail_crop-child":"1","medium_size_w":"300","medium_size_w-child":"300","medium_size_h":"300","medium_size_h-child":"300","avatar_default":"mystery","avatar_default-child":"mystery","large_size_w":"1024","large_size_w-child":"1024","large_size_h":"1024","large_size_h-child":"1024","page_for_posts":"0","page_for_posts-child":"0","page_on_front":"0","page_on_front-child":"0","medium_large_size_w":"768","medium_large_size_w-child":"768","medium_large_size_h":"0","medium_large_size_h-child":"0","theme_mods_acmephoto":{"0":false,"acmephoto_theme_options":{"acmephoto-enable-feature":true,"acmephoto-feature-page":"226","acmephoto-pagination-option":"numeric","acmephoto-facebook-url":"http:\/\/facebook.com\/acmethemes","acmephoto-twitter-url":"http:\/\/twitter.com\/acme_themes","acmephoto-instagram-url":"http:\/\/instagram.com\/acmethemes","acmephoto-enable-social":false,"acmephoto-enable-footer-social":true,"acmephoto-feature-height":"73","acmephoto-feature-enable-social":true,"acmephoto-primary-color":"#e8228f","acmephoto-show-breadcrumb":true},"custom_css_post_id":-1},"theme_mods_acmephoto-child":{"0":false,"acmephoto_theme_options":{"acmephoto-enable-feature":true,"acmephoto-feature-page":"226","acmephoto-pagination-option":"numeric","acmephoto-facebook-url":"http:\/\/facebook.com\/acmethemes","acmephoto-twitter-url":"http:\/\/twitter.com\/acme_themes","acmephoto-instagram-url":"http:\/\/instagram.com\/acmethemes","acmephoto-enable-social":false,"acmephoto-enable-footer-social":true,"acmephoto-feature-height":"73","acmephoto-feature-enable-social":true,"acmephoto-primary-color":"#e8228f","acmephoto-show-breadcrumb":true},"nav_menu_locations":{"primary":7},"custom_css_post_id":-1}}}
includes/demo-data/acmephoto/demo-1/screenshot.jpg ADDED
Binary file
includes/demo-data/acmephoto/demo-1/widgets.json ADDED
@@ -0,0 +1 @@
 
1
+ {"widget_positions":{"orphaned_widgets_1":["search-2","recent-posts-2","recent-comments-2","archives-2","categories-2","meta-2"],"wp_inactive_widgets":["search-4","text-3","recent-posts-5"],"acmephoto-sidebar":["acmephoto_author-2","recent-posts-3","nav_menu-5","categories-3","archives-3"],"footer-top-col-one":["recent-posts-6"],"footer-top-col-two":["nav_menu-3"],"footer-top-col-three":["text-4"],"array_version":3},"widget_options":{"search":{"2":{"title":""},"_multiwidget":1,"4":[]},"recent-posts":{"2":{"title":"","number":5},"3":{"title":"Recent Photos","number":5,"show_date":false},"_multiwidget":1,"5":{"title":"Recent Posts","number":6,"show_date":false},"6":{"title":"","number":6,"show_date":false}},"recent-comments":{"2":{"title":"","number":5},"_multiwidget":1},"archives":{"2":{"title":"","count":0,"dropdown":0},"3":{"title":"","count":0,"dropdown":0},"_multiwidget":1},"categories":{"2":{"title":"","count":0,"hierarchical":0,"dropdown":0},"3":{"title":"","count":0,"hierarchical":0,"dropdown":0},"_multiwidget":1},"meta":{"2":{"title":""},"_multiwidget":1},"text":{"1":[],"_multiwidget":1,"3":{"title":"About Us","text":"","filter":false},"4":{"title":"About Us","text":"<img src=\"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/08\/logo-white-1.png\"><\/br>\r\nAcme Themes is team of expert WordPress developers. <\/br> We provide Best Premium and Free Responsive WordPress Themes with incredible support & many other services. \r\nAcmePhoto is the splendid mix of Quality Code & Elegant Design. This theme will give you the best ever experience in the world of photography website.","filter":false}},"acmephoto_author":{"2":{"acmephoto_author_title":"Photographer","acmephoto_author_image":"http:\/\/www.demo.acmethemes.com\/acmephoto\/wp-content\/uploads\/2016\/08\/acmephoto-author.jpg","acmephoto_author_link":"http:\/\/www.demo.acmethemes.com\/acmephoto\/author\/acmephoto\/","acmephoto_author_short_disc":"I enjoyed photography as a hobby for a year. Very happy that people who don't have premium stock subscriptions can enjoy\/and find use for my shots. ","acmephoto_author_new_window":0},"_multiwidget":1},"nav_menu":{"_multiwidget":1,"3":{"title":"Free Themes","nav_menu":8},"5":{"title":"Our Free Themes","nav_menu":8}}}}
includes/demo-data/acmephoto/demo-2/content.json ADDED
@@ -0,0 +1 @@
 
1
+ {"attachment":[{"type_title":"Media","post_id":252,"post_title":"woman-1246625_1280","post_status":"inherit","post_name":"woman-1246625_1280","post_content":"","post_excerpt":"","post_parent":41,"menu_order":0,"post_date":"2016-11-05 11:01:56","post_date_gmt":"2016-11-05 11:01:56","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/08\/woman-1246625_1280.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/woman-1246625_1280.jpg","_wp_attachment_metadata":{"width":848,"height":1280,"file":"2016\/08\/woman-1246625_1280.jpg","sizes":{"thumbnail":{"file":"woman-1246625_1280-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"woman-1246625_1280-199x300.jpg","width":199,"height":300,"mime-type":"image\/jpeg"},"medium_large":{"file":"woman-1246625_1280-768x1159.jpg","width":768,"height":1159,"mime-type":"image\/jpeg"},"large":{"file":"woman-1246625_1280-678x1024.jpg","width":678,"height":1024,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":250,"post_title":"man-1150058_1280","post_status":"inherit","post_name":"man-1150058_1280","post_content":"","post_excerpt":"","post_parent":44,"menu_order":0,"post_date":"2016-11-05 10:58:23","post_date_gmt":"2016-11-05 10:58:23","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/08\/man-1150058_1280.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/man-1150058_1280.jpg","_wp_attachment_metadata":{"width":1280,"height":853,"file":"2016\/08\/man-1150058_1280.jpg","sizes":{"thumbnail":{"file":"man-1150058_1280-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"man-1150058_1280-300x200.jpg","width":300,"height":200,"mime-type":"image\/jpeg"},"medium_large":{"file":"man-1150058_1280-768x512.jpg","width":768,"height":512,"mime-type":"image\/jpeg"},"large":{"file":"man-1150058_1280-1024x682.jpg","width":1024,"height":682,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":248,"post_title":"shoe-238068_1280","post_status":"inherit","post_name":"shoe-238068_1280","post_content":"","post_excerpt":"","post_parent":54,"menu_order":0,"post_date":"2016-11-05 10:48:45","post_date_gmt":"2016-11-05 10:48:45","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/08\/shoe-238068_1280.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/shoe-238068_1280.jpg","_wp_attachment_metadata":{"width":1280,"height":856,"file":"2016\/08\/shoe-238068_1280.jpg","sizes":{"thumbnail":{"file":"shoe-238068_1280-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"shoe-238068_1280-300x201.jpg","width":300,"height":201,"mime-type":"image\/jpeg"},"medium_large":{"file":"shoe-238068_1280-768x514.jpg","width":768,"height":514,"mime-type":"image\/jpeg"},"large":{"file":"shoe-238068_1280-1024x685.jpg","width":1024,"height":685,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":246,"post_title":"balloons-1331564_1280","post_status":"inherit","post_name":"balloons-1331564_1280","post_content":"","post_excerpt":"","post_parent":60,"menu_order":0,"post_date":"2016-11-05 10:40:37","post_date_gmt":"2016-11-05 10:40:37","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/08\/balloons-1331564_1280.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/balloons-1331564_1280.jpg","_wp_attachment_metadata":{"width":1280,"height":851,"file":"2016\/08\/balloons-1331564_1280.jpg","sizes":{"thumbnail":{"file":"balloons-1331564_1280-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"balloons-1331564_1280-300x199.jpg","width":300,"height":199,"mime-type":"image\/jpeg"},"medium_large":{"file":"balloons-1331564_1280-768x511.jpg","width":768,"height":511,"mime-type":"image\/jpeg"},"large":{"file":"balloons-1331564_1280-1024x681.jpg","width":1024,"height":681,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":243,"post_title":"woman-1703768_1280","post_status":"inherit","post_name":"woman-1703768_1280","post_content":"","post_excerpt":"","post_parent":57,"menu_order":0,"post_date":"2016-11-05 10:37:25","post_date_gmt":"2016-11-05 10:37:25","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/08\/woman-1703768_1280.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/woman-1703768_1280.jpg","_wp_attachment_metadata":{"width":1280,"height":856,"file":"2016\/08\/woman-1703768_1280.jpg","sizes":{"thumbnail":{"file":"woman-1703768_1280-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"woman-1703768_1280-300x201.jpg","width":300,"height":201,"mime-type":"image\/jpeg"},"medium_large":{"file":"woman-1703768_1280-768x514.jpg","width":768,"height":514,"mime-type":"image\/jpeg"},"large":{"file":"woman-1703768_1280-1024x685.jpg","width":1024,"height":685,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"5.3","credit":"","camera":"NIKON D60","caption":"","created_timestamp":"0","copyright":"","focal_length":"45","iso":"200","shutter_speed":"0.01","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":241,"post_title":"girl-803155_1280","post_status":"inherit","post_name":"girl-803155_1280-2","post_content":"","post_excerpt":"","post_parent":63,"menu_order":0,"post_date":"2016-11-05 10:34:59","post_date_gmt":"2016-11-05 10:34:59","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/08\/girl-803155_1280.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/girl-803155_1280.jpg","_wp_attachment_metadata":{"width":1280,"height":999,"file":"2016\/08\/girl-803155_1280.jpg","sizes":{"thumbnail":{"file":"girl-803155_1280-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"girl-803155_1280-300x234.jpg","width":300,"height":234,"mime-type":"image\/jpeg"},"medium_large":{"file":"girl-803155_1280-768x599.jpg","width":768,"height":599,"mime-type":"image\/jpeg"},"large":{"file":"girl-803155_1280-1024x799.jpg","width":1024,"height":799,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":239,"post_title":"ballet-534357_1280","post_status":"inherit","post_name":"ballet-534357_1280","post_content":"","post_excerpt":"","post_parent":220,"menu_order":0,"post_date":"2016-11-05 10:32:40","post_date_gmt":"2016-11-05 10:32:40","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/08\/ballet-534357_1280.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/ballet-534357_1280.jpg","_wp_attachment_metadata":{"width":1280,"height":857,"file":"2016\/08\/ballet-534357_1280.jpg","sizes":{"thumbnail":{"file":"ballet-534357_1280-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"ballet-534357_1280-300x201.jpg","width":300,"height":201,"mime-type":"image\/jpeg"},"medium_large":{"file":"ballet-534357_1280-768x514.jpg","width":768,"height":514,"mime-type":"image\/jpeg"},"large":{"file":"ballet-534357_1280-1024x686.jpg","width":1024,"height":686,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":237,"post_title":"mirror-1464840_1280","post_status":"inherit","post_name":"mirror-1464840_1280","post_content":"","post_excerpt":"","post_parent":66,"menu_order":0,"post_date":"2016-11-05 10:29:12","post_date_gmt":"2016-11-05 10:29:12","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/08\/mirror-1464840_1280.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/mirror-1464840_1280.jpg","_wp_attachment_metadata":{"width":851,"height":1280,"file":"2016\/08\/mirror-1464840_1280.jpg","sizes":{"thumbnail":{"file":"mirror-1464840_1280-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"mirror-1464840_1280-199x300.jpg","width":199,"height":300,"mime-type":"image\/jpeg"},"medium_large":{"file":"mirror-1464840_1280-768x1155.jpg","width":768,"height":1155,"mime-type":"image\/jpeg"},"large":{"file":"mirror-1464840_1280-681x1024.jpg","width":681,"height":1024,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":231,"post_title":"woman-885845_1280","post_status":"inherit","post_name":"woman-885845_1280","post_content":"","post_excerpt":"","post_parent":230,"menu_order":0,"post_date":"2016-11-05 10:02:39","post_date_gmt":"2016-11-05 10:02:39","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/11\/woman-885845_1280.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/11\/woman-885845_1280.jpg","_wp_attachment_metadata":{"width":1280,"height":846,"file":"2016\/11\/woman-885845_1280.jpg","sizes":{"thumbnail":{"file":"woman-885845_1280-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"woman-885845_1280-300x198.jpg","width":300,"height":198,"mime-type":"image\/jpeg"},"medium_large":{"file":"woman-885845_1280-768x508.jpg","width":768,"height":508,"mime-type":"image\/jpeg"},"large":{"file":"woman-885845_1280-1024x677.jpg","width":1024,"height":677,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":228,"post_title":"girl-803155_1280","post_status":"inherit","post_name":"girl-803155_1280","post_content":"","post_excerpt":"","post_parent":227,"menu_order":0,"post_date":"2016-11-05 10:00:41","post_date_gmt":"2016-11-05 10:00:41","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/11\/girl-803155_1280.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/11\/girl-803155_1280.jpg","_wp_attachment_metadata":{"width":1280,"height":999,"file":"2016\/11\/girl-803155_1280.jpg","sizes":{"thumbnail":{"file":"girl-803155_1280-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"girl-803155_1280-300x234.jpg","width":300,"height":234,"mime-type":"image\/jpeg"},"medium_large":{"file":"girl-803155_1280-768x599.jpg","width":768,"height":599,"mime-type":"image\/jpeg"},"large":{"file":"girl-803155_1280-1024x799.jpg","width":1024,"height":799,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":204,"post_title":"logo-white","post_status":"inherit","post_name":"logo-white-2","post_content":"","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 11:30:04","post_date_gmt":"2016-08-30 11:30:04","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/08\/logo-white-1.png","post_mime_type":"image\/png","meta":{"_wp_attached_file":"2016\/08\/logo-white-1.png","_wp_attachment_metadata":{"width":208,"height":44,"file":"2016\/08\/logo-white-1.png","sizes":{"thumbnail":{"file":"logo-white-1-150x44.png","width":150,"height":44,"mime-type":"image\/png"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":196,"post_title":"acmethemes-logo","post_status":"inherit","post_name":"acmethemes-logo","post_content":"","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 11:18:05","post_date_gmt":"2016-08-30 11:18:05","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/08\/acmethemes-logo.png","post_mime_type":"image\/png","meta":{"_wp_attached_file":"2016\/08\/acmethemes-logo.png","_wp_attachment_metadata":{"width":208,"height":44,"file":"2016\/08\/acmethemes-logo.png","sizes":{"thumbnail":{"file":"acmethemes-logo-150x44.png","width":150,"height":44,"mime-type":"image\/png"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":110,"post_title":"child-428690_1280 (1)","post_status":"inherit","post_name":"child-428690_1280-1","post_content":"","post_excerpt":"","post_parent":104,"menu_order":0,"post_date":"2016-08-30 08:08:23","post_date_gmt":"2016-08-30 08:08:23","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/07\/child-428690_1280-1.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/07\/child-428690_1280-1.jpg","_wp_attachment_metadata":{"width":1280,"height":855,"file":"2016\/07\/child-428690_1280-1.jpg","sizes":{"thumbnail":{"file":"child-428690_1280-1-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"child-428690_1280-1-300x200.jpg","width":300,"height":200,"mime-type":"image\/jpeg"},"medium_large":{"file":"child-428690_1280-1-768x513.jpg","width":768,"height":513,"mime-type":"image\/jpeg"},"large":{"file":"child-428690_1280-1-1024x684.jpg","width":1024,"height":684,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":109,"post_title":"girl-429380_1280 (1)","post_status":"inherit","post_name":"girl-429380_1280-1","post_content":"","post_excerpt":"","post_parent":104,"menu_order":0,"post_date":"2016-08-30 08:05:49","post_date_gmt":"2016-08-30 08:05:49","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/07\/girl-429380_1280-1.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/07\/girl-429380_1280-1.jpg","_wp_attachment_metadata":{"width":1280,"height":853,"file":"2016\/07\/girl-429380_1280-1.jpg","sizes":{"thumbnail":{"file":"girl-429380_1280-1-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"girl-429380_1280-1-300x200.jpg","width":300,"height":200,"mime-type":"image\/jpeg"},"medium_large":{"file":"girl-429380_1280-1-768x512.jpg","width":768,"height":512,"mime-type":"image\/jpeg"},"large":{"file":"girl-429380_1280-1-1024x682.jpg","width":1024,"height":682,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":108,"post_title":"beach-1368021_1280 (1)","post_status":"inherit","post_name":"beach-1368021_1280-1","post_content":"","post_excerpt":"","post_parent":104,"menu_order":0,"post_date":"2016-08-30 08:04:18","post_date_gmt":"2016-08-30 08:04:18","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/07\/beach-1368021_1280-1.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/07\/beach-1368021_1280-1.jpg","_wp_attachment_metadata":{"width":1280,"height":847,"file":"2016\/07\/beach-1368021_1280-1.jpg","sizes":{"thumbnail":{"file":"beach-1368021_1280-1-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"beach-1368021_1280-1-300x199.jpg","width":300,"height":199,"mime-type":"image\/jpeg"},"medium_large":{"file":"beach-1368021_1280-1-768x508.jpg","width":768,"height":508,"mime-type":"image\/jpeg"},"large":{"file":"beach-1368021_1280-1-1024x678.jpg","width":1024,"height":678,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":105,"post_title":"girl-1572419_1280 (1)","post_status":"inherit","post_name":"girl-1572419_1280-1","post_content":"","post_excerpt":"","post_parent":104,"menu_order":0,"post_date":"2016-08-30 08:00:11","post_date_gmt":"2016-08-30 08:00:11","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/08\/girl-1572419_1280-1.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/girl-1572419_1280-1.jpg","_wp_attachment_metadata":{"width":1280,"height":888,"file":"2016\/08\/girl-1572419_1280-1.jpg","sizes":{"thumbnail":{"file":"girl-1572419_1280-1-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"girl-1572419_1280-1-300x208.jpg","width":300,"height":208,"mime-type":"image\/jpeg"},"medium_large":{"file":"girl-1572419_1280-1-768x533.jpg","width":768,"height":533,"mime-type":"image\/jpeg"},"large":{"file":"girl-1572419_1280-1-1024x710.jpg","width":1024,"height":710,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":100,"post_title":"balloons-388973_1280 (1)","post_status":"inherit","post_name":"balloons-388973_1280-1","post_content":"","post_excerpt":"","post_parent":95,"menu_order":0,"post_date":"2016-08-30 07:54:37","post_date_gmt":"2016-08-30 07:54:37","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/07\/balloons-388973_1280-1.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/07\/balloons-388973_1280-1.jpg","_wp_attachment_metadata":{"width":1280,"height":853,"file":"2016\/07\/balloons-388973_1280-1.jpg","sizes":{"thumbnail":{"file":"balloons-388973_1280-1-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"balloons-388973_1280-1-300x200.jpg","width":300,"height":200,"mime-type":"image\/jpeg"},"medium_large":{"file":"balloons-388973_1280-1-768x512.jpg","width":768,"height":512,"mime-type":"image\/jpeg"},"large":{"file":"balloons-388973_1280-1-1024x682.jpg","width":1024,"height":682,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":98,"post_title":"feet-538245_1280 (1)","post_status":"inherit","post_name":"feet-538245_1280-1","post_content":"","post_excerpt":"","post_parent":95,"menu_order":0,"post_date":"2016-08-30 07:52:55","post_date_gmt":"2016-08-30 07:52:55","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/07\/feet-538245_1280-1.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/07\/feet-538245_1280-1.jpg","_wp_attachment_metadata":{"width":1280,"height":853,"file":"2016\/07\/feet-538245_1280-1.jpg","sizes":{"thumbnail":{"file":"feet-538245_1280-1-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"feet-538245_1280-1-300x200.jpg","width":300,"height":200,"mime-type":"image\/jpeg"},"medium_large":{"file":"feet-538245_1280-1-768x512.jpg","width":768,"height":512,"mime-type":"image\/jpeg"},"large":{"file":"feet-538245_1280-1-1024x682.jpg","width":1024,"height":682,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":96,"post_title":"walking-591202_1280 (1)","post_status":"inherit","post_name":"walking-591202_1280-1","post_content":"","post_excerpt":"","post_parent":95,"menu_order":0,"post_date":"2016-08-30 07:50:54","post_date_gmt":"2016-08-30 07:50:54","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/08\/walking-591202_1280-1.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/walking-591202_1280-1.jpg","_wp_attachment_metadata":{"width":1280,"height":853,"file":"2016\/08\/walking-591202_1280-1.jpg","sizes":{"thumbnail":{"file":"walking-591202_1280-1-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"walking-591202_1280-1-300x200.jpg","width":300,"height":200,"mime-type":"image\/jpeg"},"medium_large":{"file":"walking-591202_1280-1-768x512.jpg","width":768,"height":512,"mime-type":"image\/jpeg"},"large":{"file":"walking-591202_1280-1-1024x682.jpg","width":1024,"height":682,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":91,"post_title":"selfie-429449_1280 (1)","post_status":"inherit","post_name":"selfie-429449_1280-1","post_content":"","post_excerpt":"","post_parent":87,"menu_order":0,"post_date":"2016-08-30 07:42:08","post_date_gmt":"2016-08-30 07:42:08","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/08\/selfie-429449_1280-1.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/selfie-429449_1280-1.jpg","_wp_attachment_metadata":{"width":1280,"height":853,"file":"2016\/08\/selfie-429449_1280-1.jpg","sizes":{"thumbnail":{"file":"selfie-429449_1280-1-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"selfie-429449_1280-1-300x200.jpg","width":300,"height":200,"mime-type":"image\/jpeg"},"medium_large":{"file":"selfie-429449_1280-1-768x512.jpg","width":768,"height":512,"mime-type":"image\/jpeg"},"large":{"file":"selfie-429449_1280-1-1024x682.jpg","width":1024,"height":682,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":89,"post_title":"car-1577048_1280 (2)","post_status":"inherit","post_name":"car-1577048_1280-2","post_content":"","post_excerpt":"","post_parent":87,"menu_order":0,"post_date":"2016-08-30 07:37:59","post_date_gmt":"2016-08-30 07:37:59","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/08\/car-1577048_1280-2.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/car-1577048_1280-2.jpg","_wp_attachment_metadata":{"width":1280,"height":853,"file":"2016\/08\/car-1577048_1280-2.jpg","sizes":{"thumbnail":{"file":"car-1577048_1280-2-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"car-1577048_1280-2-300x200.jpg","width":300,"height":200,"mime-type":"image\/jpeg"},"medium_large":{"file":"car-1577048_1280-2-768x512.jpg","width":768,"height":512,"mime-type":"image\/jpeg"},"large":{"file":"car-1577048_1280-2-1024x682.jpg","width":1024,"height":682,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":85,"post_title":"aroni-738287_1280 (1)","post_status":"inherit","post_name":"aroni-738287_1280-1","post_content":"","post_excerpt":"","post_parent":83,"menu_order":0,"post_date":"2016-08-30 07:26:42","post_date_gmt":"2016-08-30 07:26:42","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/08\/aroni-738287_1280-1.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/aroni-738287_1280-1.jpg","_wp_attachment_metadata":{"width":857,"height":1280,"file":"2016\/08\/aroni-738287_1280-1.jpg","sizes":{"thumbnail":{"file":"aroni-738287_1280-1-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"aroni-738287_1280-1-201x300.jpg","width":201,"height":300,"mime-type":"image\/jpeg"},"medium_large":{"file":"aroni-738287_1280-1-768x1147.jpg","width":768,"height":1147,"mime-type":"image\/jpeg"},"large":{"file":"aroni-738287_1280-1-686x1024.jpg","width":686,"height":1024,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":74,"post_title":"acmephoto-author","post_status":"inherit","post_name":"acmephoto-author","post_content":"","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-29 11:47:51","post_date_gmt":"2016-08-29 11:47:51","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/08\/acmephoto-author.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/acmephoto-author.jpg","_wp_attachment_metadata":{"width":250,"height":250,"file":"2016\/08\/acmephoto-author.jpg","sizes":{"thumbnail":{"file":"acmephoto-author-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":67,"post_title":"girl-1538818_1920","post_status":"inherit","post_name":"girl-1538818_1920","post_content":"","post_excerpt":"","post_parent":66,"menu_order":0,"post_date":"2016-08-29 10:48:04","post_date_gmt":"2016-08-29 10:48:04","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/08\/girl-1538818_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/girl-1538818_1920.jpg","_wp_attachment_metadata":{"width":1528,"height":1920,"file":"2016\/08\/girl-1538818_1920.jpg","sizes":{"thumbnail":{"file":"girl-1538818_1920-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"girl-1538818_1920-239x300.jpg","width":239,"height":300,"mime-type":"image\/jpeg"},"medium_large":{"file":"girl-1538818_1920-768x965.jpg","width":768,"height":965,"mime-type":"image\/jpeg"},"large":{"file":"girl-1538818_1920-815x1024.jpg","width":815,"height":1024,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":64,"post_title":"girl-1532733_1920","post_status":"inherit","post_name":"girl-1532733_1920","post_content":"","post_excerpt":"","post_parent":63,"menu_order":0,"post_date":"2016-08-29 10:43:56","post_date_gmt":"2016-08-29 10:43:56","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/08\/girl-1532733_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/girl-1532733_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1280,"file":"2016\/08\/girl-1532733_1920.jpg","sizes":{"thumbnail":{"file":"girl-1532733_1920-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"girl-1532733_1920-300x200.jpg","width":300,"height":200,"mime-type":"image\/jpeg"},"medium_large":{"file":"girl-1532733_1920-768x512.jpg","width":768,"height":512,"mime-type":"image\/jpeg"},"large":{"file":"girl-1532733_1920-1024x683.jpg","width":1024,"height":683,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":61,"post_title":"photography-1477075_1280","post_status":"inherit","post_name":"photography-1477075_1280","post_content":"","post_excerpt":"","post_parent":60,"menu_order":0,"post_date":"2016-08-29 10:31:45","post_date_gmt":"2016-08-29 10:31:45","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/08\/photography-1477075_1280.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/photography-1477075_1280.jpg","_wp_attachment_metadata":{"width":1280,"height":847,"file":"2016\/08\/photography-1477075_1280.jpg","sizes":{"thumbnail":{"file":"photography-1477075_1280-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"photography-1477075_1280-300x199.jpg","width":300,"height":199,"mime-type":"image\/jpeg"},"medium_large":{"file":"photography-1477075_1280-768x508.jpg","width":768,"height":508,"mime-type":"image\/jpeg"},"large":{"file":"photography-1477075_1280-1024x678.jpg","width":1024,"height":678,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":58,"post_title":"woman-1129248_1920","post_status":"inherit","post_name":"woman-1129248_1920","post_content":"","post_excerpt":"","post_parent":57,"menu_order":0,"post_date":"2016-08-29 10:24:13","post_date_gmt":"2016-08-29 10:24:13","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/08\/woman-1129248_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/woman-1129248_1920.jpg","_wp_attachment_metadata":{"width":1280,"height":1920,"file":"2016\/08\/woman-1129248_1920.jpg","sizes":{"thumbnail":{"file":"woman-1129248_1920-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"woman-1129248_1920-200x300.jpg","width":200,"height":300,"mime-type":"image\/jpeg"},"medium_large":{"file":"woman-1129248_1920-768x1152.jpg","width":768,"height":1152,"mime-type":"image\/jpeg"},"large":{"file":"woman-1129248_1920-683x1024.jpg","width":683,"height":1024,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":55,"post_title":"yosemite-1590012_1280","post_status":"inherit","post_name":"yosemite-1590012_1280","post_content":"","post_excerpt":"","post_parent":54,"menu_order":0,"post_date":"2016-08-29 10:19:11","post_date_gmt":"2016-08-29 10:19:11","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/08\/yosemite-1590012_1280.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/yosemite-1590012_1280.jpg","_wp_attachment_metadata":{"width":1280,"height":807,"file":"2016\/08\/yosemite-1590012_1280.jpg","sizes":{"thumbnail":{"file":"yosemite-1590012_1280-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"yosemite-1590012_1280-300x189.jpg","width":300,"height":189,"mime-type":"image\/jpeg"},"medium_large":{"file":"yosemite-1590012_1280-768x484.jpg","width":768,"height":484,"mime-type":"image\/jpeg"},"large":{"file":"yosemite-1590012_1280-1024x646.jpg","width":1024,"height":646,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":45,"post_title":"mountain-984277_1280","post_status":"inherit","post_name":"mountain-984277_1280","post_content":"","post_excerpt":"","post_parent":44,"menu_order":0,"post_date":"2016-08-29 10:02:05","post_date_gmt":"2016-08-29 10:02:05","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/08\/mountain-984277_1280.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/mountain-984277_1280.jpg","_wp_attachment_metadata":{"width":1280,"height":853,"file":"2016\/08\/mountain-984277_1280.jpg","sizes":{"thumbnail":{"file":"mountain-984277_1280-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"mountain-984277_1280-300x200.jpg","width":300,"height":200,"mime-type":"image\/jpeg"},"medium_large":{"file":"mountain-984277_1280-768x512.jpg","width":768,"height":512,"mime-type":"image\/jpeg"},"large":{"file":"mountain-984277_1280-1024x682.jpg","width":1024,"height":682,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":42,"post_title":"trendy-1030996_1280","post_status":"inherit","post_name":"trendy-1030996_1280","post_content":"","post_excerpt":"","post_parent":41,"menu_order":0,"post_date":"2016-08-29 09:57:54","post_date_gmt":"2016-08-29 09:57:54","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/08\/trendy-1030996_1280.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/trendy-1030996_1280.jpg","_wp_attachment_metadata":{"width":1180,"height":1280,"file":"2016\/08\/trendy-1030996_1280.jpg","sizes":{"thumbnail":{"file":"trendy-1030996_1280-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"trendy-1030996_1280-277x300.jpg","width":277,"height":300,"mime-type":"image\/jpeg"},"medium_large":{"file":"trendy-1030996_1280-768x833.jpg","width":768,"height":833,"mime-type":"image\/jpeg"},"large":{"file":"trendy-1030996_1280-944x1024.jpg","width":944,"height":1024,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":39,"post_title":"woman-642118_1280","post_status":"inherit","post_name":"woman-642118_1280","post_content":"","post_excerpt":"","post_parent":38,"menu_order":0,"post_date":"2016-08-29 09:53:20","post_date_gmt":"2016-08-29 09:53:20","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/08\/woman-642118_1280.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/woman-642118_1280.jpg","_wp_attachment_metadata":{"width":1280,"height":853,"file":"2016\/08\/woman-642118_1280.jpg","sizes":{"thumbnail":{"file":"woman-642118_1280-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"woman-642118_1280-300x200.jpg","width":300,"height":200,"mime-type":"image\/jpeg"},"medium_large":{"file":"woman-642118_1280-768x512.jpg","width":768,"height":512,"mime-type":"image\/jpeg"},"large":{"file":"woman-642118_1280-1024x682.jpg","width":1024,"height":682,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":37,"post_title":"photographer-407068_1280","post_status":"inherit","post_name":"photographer-407068_1280","post_content":"","post_excerpt":"","post_parent":35,"menu_order":0,"post_date":"2016-08-29 09:50:57","post_date_gmt":"2016-08-29 09:50:57","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/08\/photographer-407068_1280.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/photographer-407068_1280.jpg","_wp_attachment_metadata":{"width":1280,"height":853,"file":"2016\/08\/photographer-407068_1280.jpg","sizes":{"thumbnail":{"file":"photographer-407068_1280-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"photographer-407068_1280-300x200.jpg","width":300,"height":200,"mime-type":"image\/jpeg"},"medium_large":{"file":"photographer-407068_1280-768x512.jpg","width":768,"height":512,"mime-type":"image\/jpeg"},"large":{"file":"photographer-407068_1280-1024x682.jpg","width":1024,"height":682,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":33,"post_title":"guess-attic-837156_1920","post_status":"inherit","post_name":"guess-attic-837156_1920","post_content":"","post_excerpt":"","post_parent":32,"menu_order":0,"post_date":"2016-08-29 09:48:14","post_date_gmt":"2016-08-29 09:48:14","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/08\/guess-attic-837156_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/guess-attic-837156_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1280,"file":"2016\/08\/guess-attic-837156_1920.jpg","sizes":{"thumbnail":{"file":"guess-attic-837156_1920-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"guess-attic-837156_1920-300x200.jpg","width":300,"height":200,"mime-type":"image\/jpeg"},"medium_large":{"file":"guess-attic-837156_1920-768x512.jpg","width":768,"height":512,"mime-type":"image\/jpeg"},"large":{"file":"guess-attic-837156_1920-1024x683.jpg","width":1024,"height":683,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":30,"post_title":"dress-864107_1280","post_status":"inherit","post_name":"dress-864107_1280","post_content":"","post_excerpt":"","post_parent":29,"menu_order":0,"post_date":"2016-08-29 09:45:23","post_date_gmt":"2016-08-29 09:45:23","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/08\/dress-864107_1280.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/dress-864107_1280.jpg","_wp_attachment_metadata":{"width":1280,"height":852,"file":"2016\/08\/dress-864107_1280.jpg","sizes":{"thumbnail":{"file":"dress-864107_1280-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"dress-864107_1280-300x200.jpg","width":300,"height":200,"mime-type":"image\/jpeg"},"medium_large":{"file":"dress-864107_1280-768x511.jpg","width":768,"height":511,"mime-type":"image\/jpeg"},"large":{"file":"dress-864107_1280-1024x682.jpg","width":1024,"height":682,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":27,"post_title":"basketball-557192_1920","post_status":"inherit","post_name":"basketball-557192_1920","post_content":"","post_excerpt":"","post_parent":25,"menu_order":0,"post_date":"2016-08-29 09:42:02","post_date_gmt":"2016-08-29 09:42:02","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/08\/basketball-557192_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/basketball-557192_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1277,"file":"2016\/08\/basketball-557192_1920.jpg","sizes":{"thumbnail":{"file":"basketball-557192_1920-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"basketball-557192_1920-300x200.jpg","width":300,"height":200,"mime-type":"image\/jpeg"},"medium_large":{"file":"basketball-557192_1920-768x511.jpg","width":768,"height":511,"mime-type":"image\/jpeg"},"large":{"file":"basketball-557192_1920-1024x681.jpg","width":1024,"height":681,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":23,"post_title":"football-693564_1920","post_status":"inherit","post_name":"football-693564_1920","post_content":"","post_excerpt":"","post_parent":22,"menu_order":0,"post_date":"2016-08-29 09:39:23","post_date_gmt":"2016-08-29 09:39:23","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/08\/football-693564_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/football-693564_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1280,"file":"2016\/08\/football-693564_1920.jpg","sizes":{"thumbnail":{"file":"football-693564_1920-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"football-693564_1920-300x200.jpg","width":300,"height":200,"mime-type":"image\/jpeg"},"medium_large":{"file":"football-693564_1920-768x512.jpg","width":768,"height":512,"mime-type":"image\/jpeg"},"large":{"file":"football-693564_1920-1024x683.jpg","width":1024,"height":683,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":20,"post_title":"woman-918458_1920","post_status":"inherit","post_name":"woman-918458_1920","post_content":"","post_excerpt":"","post_parent":19,"menu_order":0,"post_date":"2016-08-29 09:36:22","post_date_gmt":"2016-08-29 09:36:22","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/08\/woman-918458_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/woman-918458_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1280,"file":"2016\/08\/woman-918458_1920.jpg","sizes":{"thumbnail":{"file":"woman-918458_1920-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"woman-918458_1920-300x200.jpg","width":300,"height":200,"mime-type":"image\/jpeg"},"medium_large":{"file":"woman-918458_1920-768x512.jpg","width":768,"height":512,"mime-type":"image\/jpeg"},"large":{"file":"woman-918458_1920-1024x683.jpg","width":1024,"height":683,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":17,"post_title":"antique-662203_1280","post_status":"inherit","post_name":"antique-662203_1280","post_content":"","post_excerpt":"","post_parent":16,"menu_order":0,"post_date":"2016-08-29 09:34:00","post_date_gmt":"2016-08-29 09:34:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/08\/antique-662203_1280.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/antique-662203_1280.jpg","_wp_attachment_metadata":{"width":1280,"height":937,"file":"2016\/08\/antique-662203_1280.jpg","sizes":{"thumbnail":{"file":"antique-662203_1280-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"antique-662203_1280-300x220.jpg","width":300,"height":220,"mime-type":"image\/jpeg"},"medium_large":{"file":"antique-662203_1280-768x562.jpg","width":768,"height":562,"mime-type":"image\/jpeg"},"large":{"file":"antique-662203_1280-1024x750.jpg","width":1024,"height":750,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":14,"post_title":"mobile-616012_1920","post_status":"inherit","post_name":"mobile-616012_1920","post_content":"","post_excerpt":"","post_parent":219,"menu_order":0,"post_date":"2016-08-29 09:31:17","post_date_gmt":"2016-08-29 09:31:17","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/08\/mobile-616012_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/mobile-616012_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1275,"file":"2016\/08\/mobile-616012_1920.jpg","sizes":{"thumbnail":{"file":"mobile-616012_1920-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"mobile-616012_1920-300x199.jpg","width":300,"height":199,"mime-type":"image\/jpeg"},"medium_large":{"file":"mobile-616012_1920-768x510.jpg","width":768,"height":510,"mime-type":"image\/jpeg"},"large":{"file":"mobile-616012_1920-1024x680.jpg","width":1024,"height":680,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":13,"post_title":"girl-422334_1920","post_status":"inherit","post_name":"girl-422334_1920","post_content":"","post_excerpt":"","post_parent":220,"menu_order":0,"post_date":"2016-08-29 09:27:00","post_date_gmt":"2016-08-29 09:27:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/08\/girl-422334_1920.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/girl-422334_1920.jpg","_wp_attachment_metadata":{"width":1920,"height":1288,"file":"2016\/08\/girl-422334_1920.jpg","sizes":{"thumbnail":{"file":"girl-422334_1920-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"girl-422334_1920-300x201.jpg","width":300,"height":201,"mime-type":"image\/jpeg"},"medium_large":{"file":"girl-422334_1920-768x515.jpg","width":768,"height":515,"mime-type":"image\/jpeg"},"large":{"file":"girl-422334_1920-1024x687.jpg","width":1024,"height":687,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Media","post_id":12,"post_title":"acme-photo-feature","post_status":"inherit","post_name":"acme-photo-feature","post_content":"","post_excerpt":"","post_parent":218,"menu_order":0,"post_date":"2016-08-29 08:42:08","post_date_gmt":"2016-08-29 08:42:08","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/08\/acme-photo-feature.jpg","post_mime_type":"image\/jpeg","meta":{"_wp_attached_file":"2016\/08\/acme-photo-feature.jpg","_wp_attachment_metadata":{"width":1280,"height":610,"file":"2016\/08\/acme-photo-feature.jpg","sizes":{"thumbnail":{"file":"acme-photo-feature-150x150.jpg","width":150,"height":150,"mime-type":"image\/jpeg"},"medium":{"file":"acme-photo-feature-300x143.jpg","width":300,"height":143,"mime-type":"image\/jpeg"},"medium_large":{"file":"acme-photo-feature-768x366.jpg","width":768,"height":366,"mime-type":"image\/jpeg"},"large":{"file":"acme-photo-feature-1024x488.jpg","width":1024,"height":488,"mime-type":"image\/jpeg"}},"image_meta":{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0","keywords":[]}}},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}}],"post":[{"type_title":"Posts","post_id":220,"post_title":"Young Beautiful Girl","post_status":"publish","post_name":"young-beautiful-girl","post_content":"Lorem ipsum dolor sit amet, posse docendi similique te mea, omnes graeci delenit nam ex. Eos at omnium dolores expetendis, no hinc vocent philosophia mei. Saepe melius intellegat et has, enim deleniti ne nec. Mea ex lorem laoreet.\r\n\r\nEos et sententiae liberavisse. Velit latine nonumes ne has, tale omnesque eam te. Cum te illud graece hendrerit, quo rebum solet quando no, dicant omnesque necessitatibus an usu. Debet numquam quaestio has an, diceret eruditi salutandi cu mel. Congue meliore intellegam pri an.\r\n\r\nNo nec debet legendos torquatos, cu duo pertinax consulatu. Mazim utinam duo no, an alii malis vis. Ex quo laoreet interesset scribentur. Viderer dissentiunt mea in, in dico aliquando cum. Cu nec rebum mollis, wisi nulla epicuri mei in, quo inani prodesset in.\r\n\r\nVix ei mollis ornatus legendos, ei soleat explicari mel, pri id labores volutpat. Sit in inermis offendit noluisse, ne iudico nominati duo, enim omittam mediocrem eu sea. Id vel liber vidisse abhorreant, duo vulputate interesset deterruisset in, probo argumentum ne has. Sit ne porro suscipit.\r\n\r\nCu modo autem vim, qui blandit fastidii verterem et. Ne bonorum mandamus pertinacia pri, sea mentitum salutandi ei. Ut eum errem homero soluta, mei in ubique euismod, est senserit euripidis id. Te tritani complectitur duo, falli verterem perfecto et eum, te eum veri expetenda efficiantur. Tollit semper atomorum sed ei, prima liberavisse complectitur per ne. Veniam ancillae appetere mel ea. Te vel saepe petentium, per cu aperiam tincidunt assueverit.\r\n\r\nQui ea conceptam comprehensam, mei legere invidunt neglegentur et, pri illum habemus te. Debitis ancillae pertinacia vis at, ad sed ridens oblique molestiae. Ad cibo vitae deserunt per, per ei graeci putent timeam. Duo an idque equidem postulant, suas audiam assueverit mei id.\r\n\r\nEt vidisse oblique cotidieque qui, pri id elitr aliquip diceret. In sea regione vivendum. Ad per altera graeco, has te iudico intellegat dissentiet. Vix an offendit reprimique, te ius postea denique dissentias, veniam corrumpit omittantur vim no. Qui an latine copiosae, omittam facilisi pri ad. Qui ea summo postea commune, vim ut ullum inermis, mei lorem pertinax evertitur no. Iudico mnesarchum vis cu, qui omnes dicam civibus an.\r\n\r\nNo vel dico congue, quis eripuit dolorum per in. Eos vituperata deterruisset ne, vel ad cetero delicatissimi. Ullum oratio periculis vix ut. In per nulla integre incorrupte. No mea dolore aperiri reprimique.\r\n\r\nEruditi impedit ad est, ne movet mollis nonumes vis, sea mentitum vivendum cu. Nec nonumy deterruisset ad, in petentium sadipscing pri. Augue recusabo ius cu, an melius impedit appareat usu. Nam in tempor appetere, eam ad natum suavitate.\r\n\r\nId veri adipisci duo, mel solet alterum rationibus eu. Est atqui accusata maiestatis eu. Porro quaerendum an his. Id sumo intellegat usu, pro fabulas platonem eu, ea quem meis vel. Vis senserit adolescens et, mea duis fuisset id.","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 01:12:11","post_date_gmt":"2016-08-30 01:12:11","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=10","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"239","_edit_lock":"1478341849:1"},"terms":{"category":[{"term_id":2,"name":"Fashion","slug":"fashion","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":14,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Posts","post_id":66,"post_title":"Blue Beauty","post_status":"publish","post_name":"blue-beauty","post_content":"<p>Lorem ipsum dolor sit amet, voluptatum efficiendi nec et! Partiendo salutandi repudiandae vis ea. In sed maiorum comprehensam, nam te case possit sapientem! Ius eu malis convenire, cu movet detracto similique mei? Aliquip volumus perpetua ne mel.<\/p>\r\n\r\n<p>Te probo ipsum altera vis, quem praesent posidonium mei at. Eos dicam mentitum ea, nam an blandit deleniti, sonet eloquentiam an eam? Ad pri lobortis conclusionemque, usu ut magna libris? Alia offendit epicurei pro id, interesset liberavisse ei eum, eu sed dico dictas imperdiet. An vix semper probatus iudicabit.<\/p>\r\n\r\n<p>Epicurei detraxit principes quo an, ut est errem minimum patrioque, ius cu dicant bonorum. Consetetur disputando usu eu, ad quo sint dicit doming. Lobortis mandamus eam at. Eu vix quis comprehensam, stet nostro indoctum te nam. Usu at autem voluptatum, quo dicat intellegat vituperata ex! Natum inermis vel ut, ut unum fugit evertitur eos, quis vocibus an ius. Nec tota honestatis ut?<\/p>\r\n\r\n<p>Vel ne nibh detracto, duo no ridens offendit apeirian. Nam reque propriae et. Et vivendum argumentum pro, iusto intellegam interpretaris eu eam! Eu usu quidam scaevola fabellas, pri ea consul integre efficiendi, usu facilis pericula accommodare in.<\/p>\r\n\r\n<p>Iisque gubergren constituto ea pri, vocibus delicatissimi eum ex. Vel ferri gloriatur vulputate eu, ut maiestatis liberavisse qui. At postea volutpat vel? Eu tale tollit voluptatum pro, mea ferri illud et.<\/p>","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-29 10:48:10","post_date_gmt":"2016-08-29 10:48:10","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=66","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"237","_edit_lock":"1478341847:1"},"terms":{"category":[{"term_id":2,"name":"Fashion","slug":"fashion","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":14,"filter":"raw","meta":[]},{"term_id":3,"name":"Nature","slug":"nature","term_group":0,"term_taxonomy_id":3,"taxonomy":"category","description":"","parent":0,"count":7,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Posts","post_id":63,"post_title":"Flowers Nature","post_status":"publish","post_name":"flowers-nature","post_content":"<p>Lorem ipsum dolor sit amet, pro an nisl quaeque consectetuer, cu vel modus concludaturque, eam et patrioque philosophia! Usu dicta erant singulis ad, at eum viderer laoreet vocibus. Facilis maiorum complectitur ut ius! His et tollit malorum facilisis, rebum accusamus iracundia pri no? Ex unum laudem philosophia usu? Te sea modus dicam. Eu percipitur accommodare eos, eros vituperata inciderint ei vix!<\/p>\r\n\r\n<p>Modo quidam mediocritatem pro et, ex mel debet consectetuer signiferumque, erant fabulas et vim. Vel tota postea praesent an, nam alia scripserit te. Stet tota nominati ei per. Qui ex wisi efficiendi quaerendum, iudico convenire ei vel, mucius civibus ne pri? Sed ei erant menandri, sea nisl periculis ei.<\/p>\r\n\r\n<p>No vis elit volutpat philosophia, ornatus placerat ea est? Magna legere eu quo, cum odio hinc te. Ex nibh audire vis! Te partem graece legimus sea. Sit expetendis efficiantur et, cum ei tale commodo, libris putent at nec?<\/p>\r\n\r\n<p>Sit altera instructior at. At per erant recusabo scribentur. Quas accusata aliquando cum te. Vim ipsum erant praesent in, iudico nostrum sententiae et usu!<\/p>\r\n\r\n<p>Esse commodo lucilius id est, mel omnes mandamus an. Ex vim mandamus tincidunt, alii dicat explicari ad eos. Ei perpetua consequat contentiones usu, ex nec ferri causae docendi. Ex vivendum electram duo, consul elaboraret nec te. Verear persius definitiones cum te. Homero labores interesset an eum?<\/p>","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-29 10:44:09","post_date_gmt":"2016-08-29 10:44:09","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=63","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"241","_edit_lock":"1478342248:1"},"terms":{"category":[{"term_id":2,"name":"Fashion","slug":"fashion","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":14,"filter":"raw","meta":[]},{"term_id":3,"name":"Nature","slug":"nature","term_group":0,"term_taxonomy_id":3,"taxonomy":"category","description":"","parent":0,"count":7,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Posts","post_id":60,"post_title":"Just Beautiful","post_status":"publish","post_name":"just-beautiful","post_content":"<p>Lorem ipsum dolor sit amet, vel assum elaboraret eu, paulo qualisque moderatius no his, cu vulputate abhorreant accommodare his. Ne eligendi adipisci sea, apeirian detraxit salutandi ex eum? Aeque paulo propriae mel at, cu iusto interpretaris vis. Exerci electram ad nec, ne recteque cotidieque referrentur pri, cum id accumsan pertinacia?<\/p>\r\n\r\n<p>Assum everti vim cu. Pri ferri soleat ut, id adhuc facer discere nam, duis voluptua mea no. Vix liber imperdiet ne, cum inani denique repudiare ex, reque ubique theophrastus ut pro? Ut wisi dolore perfecto nec.<\/p>\r\n\r\n<p>Hinc gloriatur duo at, modus splendide vis et. Movet invidunt maluisset mel et, sit illud alienum an, movet accusam intellegebat ei eos. Eu sea prima dicant consectetuer, in nostrud eligendi consequuntur est! Ut elitr deseruisse eos. Id labitur conceptam ius, sint tamquam qui ex, eum liber clita alienum ea?<\/p>\r\n\r\n<p>Erat perfecto signiferumque mei ad, magna brute lucilius quo ne. In nominati temporibus per? Movet facilis quo ad, tota electram et usu, ancillae accumsan placerat ea sed. Quo ea vitae possit fuisset, id wisi quodsi argumentum sea.<\/p>\r\n\r\n<p>No quo meis ullum offendit, an integre utroque eos, unum aperiri no nam. Ei per blandit noluisse, quo ut minim nobis conceptam, at praesent torquatos sea? Eu dicat partiendo duo, fugit clita cu mel, eligendi constituam no ius. Nullam eruditi ei nam, eum cu consul appareat pericula. Vis iracundia mediocritatem ex.<\/p>","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-29 10:31:59","post_date_gmt":"2016-08-29 10:31:59","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=60","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"246","_edit_lock":"1478342740:1"},"terms":{"category":[{"term_id":2,"name":"Fashion","slug":"fashion","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":14,"filter":"raw","meta":[]},{"term_id":3,"name":"Nature","slug":"nature","term_group":0,"term_taxonomy_id":3,"taxonomy":"category","description":"","parent":0,"count":7,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Posts","post_id":57,"post_title":"Portrait Photo","post_status":"publish","post_name":"portrait-photo","post_content":"<p>Lorem ipsum dolor sit amet, ut nam consul equidem gubergren, qui decore mentitum lobortis et. Nec semper assueverit no! Tota postea cum no! Ad sale assum scripserit eum!<\/p>\r\n\r\n<p>Has probatus assueverit in! Odio saepe euripidis ea nec, mel ne stet falli erroribus, mea blandit petentium at. Exerci malorum consetetur vel an, te mei delicata torquatos. Qui semper electram in, est dicta constituam in? Justo vivendum deserunt vis id.<\/p>\r\n\r\n<p>Hinc forensibus has in, in mel mazim aperiam atomorum, eos no tamquam nostrum. Prima facilisis per at, in sit dicant inimicus salutandi, vim dico soleat oporteat ei? Cu consul aliquip eum, no eos audire placerat! In nisl singulis mei, te nonumy voluptatum accommodare sit. Duo ea melius imperdiet gubergren, audiam delenit sapientem eu mel, hinc nostrum rationibus ex his! Quod reque animal sed te, wisi minim sea et.<\/p>\r\n\r\n<p>Et nam docendi appellantur. Paulo forensibus est an. Id eam erat expetenda? Cum nulla perpetua reformidans in, case consulatu assentior vim ei?<\/p>\r\n\r\n<p>Ad augue dolor perpetua eam, sea ne evertitur persecuti sententiae, alii cetero audire et his. Vim an audire aeterno, an nostrum oporteat vim. Saperet vocibus duo id, ad qui eruditi dissentias. Minim accusam vituperatoribus vel ad.<\/p>","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-29 10:24:27","post_date_gmt":"2016-08-29 10:24:27","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=57","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"243","_edit_lock":"1478344937:1"},"terms":{"category":[{"term_id":2,"name":"Fashion","slug":"fashion","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":14,"filter":"raw","meta":[]},{"term_id":3,"name":"Nature","slug":"nature","term_group":0,"term_taxonomy_id":3,"taxonomy":"category","description":"","parent":0,"count":7,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Posts","post_id":54,"post_title":"Yosemite","post_status":"publish","post_name":"yosemite","post_content":"<p>Lorem ipsum dolor sit amet, ad usu inani oblique accusam, rebum placerat repudiandae nam ex. Cu his putent equidem, voluptatum interpretaris ad vim, ei consul cotidieque ullamcorper est. Usu graeci dolorum accommodare ei, eu labores corrumpit conclusionemque duo? Integre insolens liberavisse mea at, novum theophrastus in mei! Et nihil saperet constituto sea, idque dolores ne mel, dicam latine qui eu.<\/p>\r\n\r\n<p>Ei eam homero lobortis. Vim fierent iracundia molestiae ad, sit ei reque democritum. Audire offendit deterruisset cu his, ad vel sensibus laboramus, atqui inermis laboramus quo ea. Erat minim maiorum nam at.<\/p>\r\n\r\n<p>Ut zril essent ius! Ad eam numquam fabellas scriptorem, et tota possim adolescens cum. Pro fabulas facilis et? Eam dicam ocurreret et, ei sit mazim fabulas commune. Ex nemore platonem volutpat vel, cu probo expetendis ullamcorper pro, decore quaerendum vim ea.<\/p>\r\n\r\n<p>Qui ad diam dolore audiam, euismod abhorreant nec an! Per cu affert laboramus. Id option vituperata his. Ea nam quem molestie adipisci, exerci partiendo mel cu, eu cum consul delenit fabellas.<\/p>\r\n\r\n<p>Te mei alii sensibus, per dicta quaerendum te. Vis eu alii debet appareat, vis simul timeam expetendis cu! Vocibus ocurreret in sit, in officiis erroribus intellegat nam? Ei has porro melius persequeris? Sit sonet solet elaboraret id, purto voluptua senserit te usu!<\/p>","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-29 10:19:20","post_date_gmt":"2016-08-29 10:19:20","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=54","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"248","_edit_lock":"1478344163:1"},"terms":{"category":[{"term_id":3,"name":"Nature","slug":"nature","term_group":0,"term_taxonomy_id":3,"taxonomy":"category","description":"","parent":0,"count":7,"filter":"raw","meta":[]},{"term_id":6,"name":"Travel","slug":"travel","term_group":0,"term_taxonomy_id":6,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Posts","post_id":44,"post_title":"Standing Boy","post_status":"publish","post_name":"mountain-view-panorama","post_content":"<p>Lorem ipsum dolor sit amet, case novum intellegebat te ius. At sed rebum tacimates invenire. In mundi quodsi duo, usu ne veritus eloquentiam vituperatoribus, debet putent evertitur pri in! Ne noluisse mandamus vis. Sed homero dignissim id, has wisi copiosae sapientem ex, ad omnes dolorem ius. Phaedrum suscipiantur nam cu.<\/p>\r\n\r\n<p>Et duo saepe impetus mediocrem. Nisl omittantur vix ad, usu graece adipiscing no. Ex minim iudicabit eos. Ut habemus definiebas efficiendi ius, ex blandit accusamus eum, dolores definitiones ut quo. Sumo omnes affert ius cu.<\/p>\r\n\r\n<p>Pri dicta suavitate ei. Eos viris doctus rationibus ex. Facer epicurei his in, vim graeci diceret intellegebat in? Iudico perpetua qui in, liber ceteros ei vis, his malis postea persius ne? An esse consul sit, sumo aeque corpora eu ius. Omnium debitis ocurreret qui in! Recteque erroribus necessitatibus et vim.<\/p>\r\n\r\n<p>Mea ex volumus legendos theophrastus, eum eu cibo omnis. Mea eu veritus luptatum, ea nibh posse graecis nam, quo lorem malis nulla in. Ea eam simul virtute signiferumque, quem sale labitur est ut, neglegentur deterruisset eu sed. Sea argumentum adversarium et! Vel no movet tempor ocurreret, sed gubergren honestatis at? Ei elit duis malorum est, has te possim petentium.<\/p>\r\n\r\n<p>Ad enim postea conceptam eam, ius autem oportere assentior te. Accusata percipitur mei at, sea eu iudico accusam repudiare! Ne aeque blandit efficiendi vis, sea unum idque scribentur ea. Harum facilisis eam at, ne nec indoctum dissentiet! Sea ut everti feugait, qui at facer congue voluptaria, eu recusabo partiendo consequuntur mel.<\/p>","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-29 10:02:11","post_date_gmt":"2016-08-29 10:02:11","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=44","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"250","_edit_lock":"1478343675:1"},"terms":{"category":[{"term_id":3,"name":"Nature","slug":"nature","term_group":0,"term_taxonomy_id":3,"taxonomy":"category","description":"","parent":0,"count":7,"filter":"raw","meta":[]},{"term_id":6,"name":"Travel","slug":"travel","term_group":0,"term_taxonomy_id":6,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Posts","post_id":41,"post_title":"Trendy Guys","post_status":"publish","post_name":"trendy-guys","post_content":"<p>Lorem ipsum dolor sit amet, nam ea tempor bonorum petentium? Eu clita albucius liberavisse mea. Nam ignota maluisset ut, ea vix assum definitiones! Atqui iisque suavitate vel ea. Magna aeque iriure vim te, pri scaevola explicari abhorreant an.<\/p>\r\n\r\n<p>Illum propriae ad cum, dicat euismod inermis te eos. Cu ius dicant quaestio democritum, cum at sanctus utroque, justo vocent ea usu. Cu mel vero quodsi forensibus? Ferri sententiae no per. Id est vero postea!<\/p>\r\n\r\n<p>Prima fugit postea vel cu, alterum oporteat deterruisset cum at, sed in omittam facilisis definitiones? Vix quot velit nominavi ad. Ius et malis cotidieque. Persius perfecto vix te! Sea diam admodum id, admodum corpora sed id.<\/p>\r\n\r\n<p>Sit ei clita ignota, vocent recusabo oportere pro te, iuvaret detracto temporibus ei eum. Eam etiam iusto conclusionemque no. Solum repudiare vim et, ne quo quem senserit molestiae. Sumo oporteat ei vel! Id graeci indoctum per, ius facer tibique eu, ei civibus fastidii duo. Ad animal nominavi usu?<\/p>\r\n\r\n<p>Vitae qualisque te sed. Ea usu veniam facilisi consequuntur? Ius atqui appareat eleifend cu, ea nec ullum admodum, te pri natum putant causae. Mel ut mazim habemus, at his diam veritus eleifend?<\/p>","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-29 09:58:07","post_date_gmt":"2016-08-29 09:58:07","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=41","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"252","_edit_lock":"1478345075:1"},"terms":{"category":[{"term_id":2,"name":"Fashion","slug":"fashion","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":14,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Posts","post_id":38,"post_title":"Photo Taking","post_status":"publish","post_name":"photo-taking","post_content":"<p>Lorem ipsum dolor sit amet, quis intellegebat cum et, et altera reprimique persequeris eam? Torquatos disputando contentiones mea ne. Est persequeris instructior ex, eleifend tractatos referrentur vix ea, ea duo timeam volumus. Ad duo delicata mandamus, dicam singulis no eam. Id eum hinc euripidis, ex sea odio convenire. Debitis detracto offendit ne vix, ea eos docendi posidonium.<\/p>\n\n<p>Cu cum prompta consetetur efficiantur, eripuit labores deleniti mei at? Invenire eleifend an mei, fastidii dissentiunt et has, justo molestiae democritum pri ei! At viris vituperata sit? Vero animal ex his, ex eripuit delenit vituperatoribus vim?<\/p>\n\n<p>Sit an everti reformidans, luptatum invidunt phaedrum id vix! Mel saperet vituperata at, nec ex tale scriptorem. Sea ubique numquam salutatus an, vis in adipisci prodesset dissentias, duo id mazim virtute. Pri ex assentior mnesarchum consequuntur. In mundi alterum ornatus sea?<\/p>\n\n<p>Sed cu movet choro quando, illum petentium te eum. Ea eos omnium sapientem! Debet referrentur usu ex. Sit fuisset denique cu, sumo choro ius ei! Prompta temporibus in eos, consul accusam disputationi et sit. Sed ne tritani albucius!<\/p>\n\n<p>Mea et detraxit pericula, eu nam senserit reprehendunt. Adhuc verterem torquatos ex mea. Nec porro conceptam et, his quidam nusquam delicata cu. No partem graecis definitiones ius, sit cu verterem interesset sadipscing! Eos summo doming ea! Id tantas expetenda temporibus vis, id pri scripta iuvaret definiebas?<\/p>","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-29 09:53:38","post_date_gmt":"2016-08-29 09:53:38","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=38","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"39"},"terms":{"category":[{"term_id":2,"name":"Fashion","slug":"fashion","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":14,"filter":"raw","meta":[]},{"term_id":6,"name":"Travel","slug":"travel","term_group":0,"term_taxonomy_id":6,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Posts","post_id":87,"post_title":"Selfie on Bedroom","post_status":"publish","post_name":"selfie-on-bedroom","post_content":"Prima fugit postea vel cu, alterum oporteat deterruisset cum at, sed in omittam facilisis definitiones? Vix quot velit nominavi ad. Ius et malis cotidieque. Persius perfecto vix te! Sea diam admodum id, admodum corpora sed id.\n\nSit ei clita ignota, vocent recusabo oportere pro te, iuvaret detracto temporibus ei eum. Eam etiam iusto conclusionemque no. Solum repudiare vim et, ne quo quem senserit molestiae. Sumo oporteat ei vel! Id graeci indoctum per, ius facer tibique eu, ei civibus fastidii duo. Ad animal nominavi usu?\n<blockquote>Prima fugit postea vel cu, alterum oporteat deterruisset cum at, sed in omittam facilisis definitiones? Vix quot velit nominavi ad. Ius et malis cotidieque. Persius perfecto vix te! Sea diam admodum id, admodum corpora sed id.<\/blockquote>\nSit ei clita ignota, vocent recusabo oportere pro te, iuvaret detracto temporibus ei eum. Eam etiam iusto conclusionemque no. Solum repudiare vim et, ne quo quem senserit molestiae. Sumo oporteat ei vel! Id graeci indoctum per, ius facer tibique eu, ei civibus fastidii duo. Ad animal nominavi usu?\n\nPrima fugit postea vel cu, alterum oporteat deterruisset cum at, sed in omittam facilisis definitiones? Vix quot velit nominavi ad. Ius et malis cotidieque. Persius perfecto vix te! Sea diam admodum id, admodum corpora sed id.\n\nSit ei clita ignota, vocent recusabo oportere pro te, iuvaret detracto temporibus ei eum. Eam etiam iusto conclusionemque no. Solum repudiare vim et, ne quo quem senserit molestiae. Sumo oporteat ei vel! Id graeci indoctum per, ius facer tibique eu, ei civibus fastidii duo. Ad animal nominavi usu?","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-29 09:50:21","post_date_gmt":"2016-08-29 09:50:21","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=87","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"91","_wp_old_slug":"baby-with-car"},"terms":{"category":[{"term_id":2,"name":"Fashion","slug":"fashion","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":14,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Posts","post_id":35,"post_title":"Tourist Snapshot","post_status":"publish","post_name":"tourist-snapshot","post_content":"<p>Lorem ipsum dolor sit amet, usu ad ludus facete, modo unum mazim in sit! Primis saperet maiestatis eos te, dicunt accusata cu vis, et mel laoreet suscipit perpetua. Vel ut harum theophrastus. Ridens singulis ex vix, qui purto porro quodsi te? Per conceptam honestatis an, graecis detraxit eos ei!<\/p>\n\n<p>Magna aeterno quo ne. Eu summo invidunt consetetur has, dico scriptorem eum ex, in eum virtute numquam! Dicam dictas vis ad? Mei ex albucius corrumpit. Quo an adhuc delenit deserunt.<\/p>\n\n<p>Te usu vocibus habemus facilisis, per meis pertinax sensibus in! Et case consulatu interpretaris duo, sed id zril clita. Quo propriae maiestatis cu, usu ei vero solet! Iisque labitur fastidii sit cu. Quis nostro cu duo! Cum ei nihil eruditi nusquam!<\/p>\n\n<p>Eu eos timeam officiis adipisci. Quodsi sadipscing id mea, id sed cibo numquam! Ad ornatus molestiae sit, lorem blandit torquatos mea cu. Nibh denique ea eam? His dolor dissentias et. Has an diam mucius suavitate, ignota invenire at duo?<\/p>\n\n<p>Elit illum sit et. Vim prima tantas vivendum te, cu definitionem conclusionemque eam? Eos erat nonumes te, at tempor lobortis prodesset sit? In novum invidunt sit, tale omnium eos ad?<\/p>","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-29 09:50:20","post_date_gmt":"2016-08-29 09:50:20","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=35","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"37"},"terms":{"category":[{"term_id":2,"name":"Fashion","slug":"fashion","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":14,"filter":"raw","meta":[]},{"term_id":6,"name":"Travel","slug":"travel","term_group":0,"term_taxonomy_id":6,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Posts","post_id":32,"post_title":"Pretty Hair","post_status":"publish","post_name":"pretty-hair","post_content":"<p>Lorem ipsum dolor sit amet, eu sed elitr accumsan, ne eam falli mediocrem. Ius ea novum commodo alterum, eu latine saperet blandit vim. Nam te fabulas iudicabit, quo cu albucius nominati, nibh minim ut ius. At alii appellantur mei, brute dicant et mel, an dignissim delicatissimi ius.<\/p>\n\n<p>Usu velit suscipit electram an, ea vide cetero petentium sit, vim sale probo ridens cu. Quod suscipit at sed, sea ad tractatos partiendo, postulant disputationi comprehensam ne vix. Scripta molestiae efficiendi ei nam. Ea quod docendi sea, id mentitum pericula sit! In his epicuri mandamus, vel ad choro epicuri petentium, iisque hendrerit mei at. Laoreet electram id eam, mea option utamur scaevola ei. Ei eos consequat cotidieque, nec libris accusata ne!<\/p>\n\n<p>Id nobis putent his! An pri veritus cotidieque? Persius prodesset an qui, ei reque appellantur reprehendunt quo. Eos graecis honestatis at, pri at numquam albucius. At eum homero suscipit phaedrum, no impedit iracundia duo, recteque delicatissimi at sit! Ferri soleat temporibus pri ea. Id eam erat omnium expetenda, sed unum quas an, velit nusquam honestatis te est?<\/p>\n\n<p>Pro quando convenire in. Eu nam wisi autem iuvaret, et alterum epicuri per? Tollit fuisset cu vis, at per brute nonumy persius. Autem diceret ne nam. Duo ne semper gubergren, id virtute appetere evertitur vel, quo modo moderatius suscipiantur ei. Decore sadipscing usu et, et mei labitur perfecto mediocritatem!<\/p>\n\n<p>Vel porro minim graeci at, dicam vulputate scriptorem per ex, ea vis vitae fastidii. Audiam scriptorem ne eos, ut sed suas primis perpetua. Id sit case regione recusabo, sed ut putent quidam semper! In debet nominati honestatis his, case decore mandamus id vim.<\/p>","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-29 09:48:25","post_date_gmt":"2016-08-29 09:48:25","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=32","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"33"},"terms":{"category":[{"term_id":2,"name":"Fashion","slug":"fashion","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":14,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Posts","post_id":29,"post_title":"Beautiful Girl, Red Dress","post_status":"publish","post_name":"beautiful-girl-red-dress","post_content":"<p>Lorem ipsum dolor sit amet, usu decore docendi accumsan no. Est in error movet? Iriure oportere sententiae an sed. Aliquam verterem volutpat per te, te nulla convenire eos? Ferri tibique elaboraret ad sea, et iuvaret fierent mei? Vel no autem indoctum, vis eirmod nominavi at. Id possim nominati cotidieque est, nisl ceteros eum id!<\/p>\n\n<p>Consul verear suscipit ea qui, in tritani fastidii mandamus pri! Mei prima labitur eu, no quo habemus percipitur theophrastus, percipit maluisset cum no. Et his case probatus urbanitas, sit no natum persius voluptaria. Id falli virtute eam, ignota suscipit usu eu.<\/p>\n\n<p>Cu has novum labitur maiestatis, te his iuvaret vivendum adversarium. Mel ea elit accommodare, his ea error mediocritatem. Ipsum oporteat reprehendunt ut pri, pri ut homero scripta, nec aliquam probatus ne. Has et equidem tibique, vim scripta corrumpit imperdiet et! In moderatius omittantur eos.<\/p>\n\n<p>Ad eum erat neglegentur liberavisse, at oratio maluisset duo, singulis tractatos te usu! Cu mel sonet facete scribentur? Verear facilisi nec ne. Has ei viderer perpetua! Ius ne saepe habemus suscipiantur, sea putent audiam ex, mea electram forensibus complectitur et. Pri ei veniam sanctus invenire. Ad usu nemore patrioque rationibus, usu debet facete ullamcorper no.<\/p>\n\n<p>Enim vide contentiones ne eam, an vix eirmod fuisset! Ad duo utroque incorrupte reformidans, decore labore possit id qui, ut pro fastidii petentium. Sale prompta suscipit te duo, maluisset expetendis appellantur in vix! An altera voluptaria his, quo at reque minim semper? Id vocibus corrumpit vituperata vis, te tantas probatus nam.<\/p>","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-29 09:45:30","post_date_gmt":"2016-08-29 09:45:30","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=29","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"30"},"terms":{"category":[{"term_id":2,"name":"Fashion","slug":"fashion","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":14,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Posts","post_id":25,"post_title":"Basketball","post_status":"publish","post_name":"basketball","post_content":"<p>Lorem ipsum dolor sit amet, mei ex choro debitis alienum! Mei tollit referrentur id, his an aliquid pertinacia, in eam idque possim interpretaris. Tation munere nam ad, veritus intellegam quo cu. Ex usu porro luptatum invidunt, ei sea dolor vocent utroque. At pri choro munere, te nec eius intellegat! Ut vix ubique mediocrem, an nostro nusquam expetenda eum, pri in mollis equidem abhorreant. Mea et saepe dicant semper, diam harum et sit.<\/p>\n\n<p>Ex solum delicata sea, te mandamus abhorreant concludaturque duo! Cum te graece dissentias, justo malis honestatis quo te, cu audire conceptam duo? Ad nibh tibique delectus his, facer melius invenire an per, eu nam eleifend salutatus? An falli noster sea? Prima eripuit eum at? In harum eruditi dignissim eam. Alii justo prodesset et pro, munere fierent ponderum cu qui, in vix tempor prompta delenit.<\/p>\n\n<p>No his duis velit, ea sea persius copiosae menandri, no nullam vocent adipisci sea? Minim graeci in est, audire perfecto eum ei. Pri ex utinam comprehensam, an saperet liberavisse mel. Mazim exerci eam et, usu doming utamur appareat ea, in stet malorum omittantur eam? Omnes quaestio et duo, eu quo quaeque periculis vituperatoribus. Unum quaeque neglegentur cum ne, id omnium aliquid pro.<\/p>\n\n<p>Id mei atqui munere possim, ad errem nobis ius, vel utinam soleat dissentiet cu. Cu usu vivendo suscipit, augue nostrum et mea. Ne dico libris singulis quo? His eu audire expetenda, his ei honestatis consequuntur.<\/p>\n\n<p>Ne dicit corpora inimicus mea, an vim falli simul aliquid. Sit ea aliquam expetendis, suas elaboraret no per. Ut nam harum appareat consetetur, libris temporibus comprehensam his id. Et dicit senserit duo, ex sale movet quo. Quo quem iisque inermis ad, no eos minimum argumentum scribentur, cu eum nobis aliquid aliquando.<\/p>","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-29 09:42:09","post_date_gmt":"2016-08-29 09:42:09","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=25","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"27"},"terms":{"category":[{"term_id":5,"name":"Sports","slug":"sports","term_group":0,"term_taxonomy_id":5,"taxonomy":"category","description":"","parent":0,"count":2,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Posts","post_id":22,"post_title":"American Football","post_status":"publish","post_name":"american-football","post_content":"<p>Lorem ipsum dolor sit amet, sed timeam numquam petentium ad, id sea facilisi recusabo assueverit! Eirmod regione alienum cu mea, has mutat nominavi an, eam nulla assentior no! Te est ridens habemus principes, accusam reprimique vix in? Sea an facete assentior, at illum eligendi volutpat vim, ad vel falli tempor numquam!<\/p>\n\n<p>Eius dicant vocibus has an, eos in affert homero reprimique, an eirmod utamur dissentias usu. Quo erroribus urbanitas ne, quidam aliquid pericula id pri, te vix posse labores. Cu vis deleniti mandamus? No novum partiendo sit, iudico offendit mei cu. Dico blandit democritum nec et, ius ei reque iudicabit.<\/p>\n\n<p>Sed habeo sapientem ea, diam iracundia cu per, idque primis eam ne. Ad sea error honestatis dissentiunt, no dolore oportere quo. Pro graeco fierent id, agam viderer pri et? An quod amet illum cum, an dico dicat expetendis nam, no aeque nostrud maiorum vis. Ad scripta dissentiunt vis, malis iracundia in sed! Quo an alterum voluptatum?<\/p>\n\n<p>Harum dolorum offendit ut cum, ea qui agam reprimique deterruisset. Sed illud porro fastidii ut, ridens consequuntur his cu? Mel utamur splendide no, sea verear aliquando ad! Sit te partiendo assentior, vim option nonumes nusquam in, cu cum consul similique elaboraret.<\/p>\n\n<p>Congue postulant accusamus mel ut. Te est ludus malorum. Dicta suscipit vim eu, mei at adhuc debitis delicatissimi. Dolorum petentium sadipscing ad qui. Mel id suas feugait. Cu sea delenit appetere. Et eruditi volumus tibique nam.<\/p>","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-29 09:39:32","post_date_gmt":"2016-08-29 09:39:32","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=22","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"23"},"terms":{"category":[{"term_id":5,"name":"Sports","slug":"sports","term_group":0,"term_taxonomy_id":5,"taxonomy":"category","description":"","parent":0,"count":2,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Posts","post_id":19,"post_title":"Woman In Snow","post_status":"publish","post_name":"woman-in-snow","post_content":"<p>Lorem ipsum dolor sit amet, mel erant choro alterum eu, dolorem expetenda maiestatis has te, ut vix zril iudicabit abhorreant! Sit solum recteque ea, ius ut illum facilisi! Maiorum invidunt usu ei, malis convenire nec eu! Ut sed utroque singulis expetendis, ex congue voluptatibus quo, odio voluptatibus id duo!<\/p>\n\n<p> Et nemore semper perpetua vix? Ei vis possim contentiones, vim eu agam sonet, sed no porro persius interesset. Epicuri dissentiet te eum, eum impetus oporteat consequuntur ei, et integre nominati pro. Te cum meis efficiendi complectitur.<\/p>\n\n<p> Qui cu wisi sanctus dissentiunt, blandit offendit salutatus ne sit! Pro cu rebum omnium! At amet partem semper qui, soleat adolescens an est. Dicant intellegat id vis, mei ea semper erroribus, in vim doming vidisse discere. Quo paulo quando euripidis at, at qui graeco possim scriptorem. Mea dicat assentior cu.<\/p>\n\n<p> Eu graeci nemore dissentiunt mel. Te his vidit aliquid delenit. Eius aeterno an duo? Assum dicam habemus cum te, porro admodum ullamcorper vix ea.<\/p>\n\n<p> Ad has graecis accumsan officiis! Duo euismod dolorem facilis te. Ridens graecis offendit mel ad, vim accusamus temporibus necessitatibus te. An impetus definiebas pro, suscipiantur concludaturque nec an.<\/p>\n\n<p> Usu nulla labore persius ut, an usu illud hendrerit deterruisset. Per ignota perpetua constituto ne! Eu oportere ocurreret duo, dico tincidunt neglegentur mei et, cu iusto nemore omnium usu. Ex conceptam argumentum pro, meis constituto voluptatibus vim ei? Vix enim nonumes ea. Ceteros omittam cu cum, no elit dicit duo! Pri viris solet phaedrum ne.<\/p>\n\n<p> Cu has ipsum fastidii invenire, sed cu diam clita salutatus, mei ex semper liberavisse? Cu cum tamquam reprehendunt, assum democritum eloquentiam pri no, qui timeam voluptaria in! Vim te fugit mediocrem, eam ea omnium dolores partiendo? Id liber aliquip nostrum est, omnesque pertinax ei eam. Ex simul signiferumque sed?<\/p>\n\n<p> An cum atqui apeirian disputando. Dicam voluptaria constituto te vis, impetus adolescens his et, sed ut inani audiam concludaturque. Pro idque assum ut, sonet aliquid vim id. Mea ut euismod legendos accusamus, patrioque interesset et sea! Soluta integre usu et, te mea velit utroque vituperata?<\/p>\n\n<p> Te eam nobis platonem, graeco senserit ex sit, dicam vocibus pro eu. Est cu sale honestatis, constituto neglegentur theophrastus ius an. Eu sit errem diceret suavitate, ius ne persius vituperatoribus? An nihil theophrastus vel, disputando reformidans ea ius, ius id erat nonumes referrentur! Omnes nostrud per cu, mei ipsum labores platonem at, melius labores cu sed. Cu dicat clita intellegebat pro, putent facilis noluisse an usu.<\/p>\n\n<p> Ut has aliquip fastidii lobortis! Quo graeci aeterno ut! Suas timeam nam ad, ad usu inimicus democritum posidonium. Id officiis praesent rationibus qui. Has ei diceret quaestio atomorum, ignota putent sanctus nec ad! Vis at exerci alterum conclusionemque, iisque intellegebat usu ne?<\/p>\n\n<p> Usu sumo aperiam delicatissimi in? Ea dicam delectus interpretaris per, semper civibus signiferumque id cum. Etiam corpora pri ut, te iracundia moderatius consectetuer vim. Eu eum aperiri scaevola dissentiunt, ei tollit fuisset reprehendunt est?<\/p>\n\n<p> Pri in meis congue consequat. Zril cetero ut sed? Ut eum legimus postulant posidonium, eam erant soleat elaboraret an. His case pertinax at. Soleat blandit sea et, ea sumo nulla moderatius mea? Usu epicuri referrentur et.<\/p>\n\n<p> Meliore pertinacia dissentiet eos cu, noster postulant eu sea, vero dicunt explicari nec in. Scripta ceteros nec in, consul detracto incorrupte vis an. Pro esse brute rationibus ea. Est tale eruditi scripserit ne. Pro an modo deseruisse, putant pericula disputando ei duo, duo at nonumy corrumpit! Numquam senserit et usu, cum in unum quando ancillae, ex sit tamquam ancillae recusabo.<\/p>\n\n<p> Debitis periculis ex nam, vel dicta labitur definitionem ex? Dolor quaerendum liberavisse mea te, convenire definitiones eam an, intellegam temporibus deterruisset usu ad. Vim causae disputationi et! Sea invidunt facilisi id, audiam diceret vim ut. Sea nobis accusam facilisi cu.<\/p>\n\n<p> No vel amet hinc commodo, usu te facete possim expetendis. Eos nemore deserunt cu! Nibh iusto concludaturque ad sea, at eligendi urbanitas liberavisse eam! Impetus adipisci id qui. At quo vero probo magna, qui probo voluptaria intellegebat ut? Mazim elitr mei eu, numquam indoctum eum ne?<\/p>\n\n<p> Eos natum singulis maluisset te, eam cu dicta eruditi accusam. An usu dicta placerat forensibus! In vix oblique pertinax abhorreant, ubique mucius ius ne. At decore eleifend evertitur pri, unum probo cotidieque sed ut. His ut utamur perpetua, ne erroribus repudiare nec, probo tollit hendrerit ne mel. Eos ex stet nusquam?<\/p>\n\n<p> Vel nibh dicit periculis ei. Mea ad abhorreant voluptatibus. Ne usu everti equidem. Mea utamur commune in, sed viderer saperet ut.<\/p>\n\n<p> Mel decore inciderint ne, ne sea minim laoreet? Sed labores accumsan detracto te. Ei mei legimus assentior. Sed in erant adversarium? Atqui zril posidonium eam ea, et usu affert temporibus! Ne veri decore vel. Autem euismod comprehensam vim ea, viderer accumsan phaedrum ei qui!<\/p>\n\n<p> Mei erat nemore detracto eu. Vix ei aliquip apeirian repudiare, in has nusquam lucilius inciderint. Suscipit partiendo at sea, justo animal delenit eu sit! Mea atqui tollit delenit te.<\/p>\n\n<p> Dicta maluisset vis no, has alii quas ut? Ea iuvaret patrioque mea. Te mea putent labores inciderint, graeci consectetuer vel et! Esse mundi pri id, ne dicam detracto forensibus mea? Ius in ludus conclusionemque, sea alia accommodare cu! Nihil primis adversarium ne mea, an mucius scriptorem has! Possit dissentias cum no, natum reque nulla ad pro.<\/p>\n\n<p> His soluta platonem scriptorem cu? An semper accusata mei, etiam ridens no duo? Homero maluisset pro no, mandamus evertitur no cum. Ius ad facilisis laboramus, eu vix quaestio mandamus prodesset. In mea brute summo concludaturque, eos iusto tacimates gubergren ut. Eros alterum constituto sed ad, amet virtute quo at.<\/p>\n\n<p> Cum ne odio inermis. Dicat invidunt democritum ut vis, an vim scripta impedit adipiscing, ei ipsum appareat usu? Mei vide causae suavitate ut, feugait mediocrem periculis id eum! Vis epicurei democritum repudiandae no! Ut sit clita corrumpit, habeo sensibus definitionem eos at, pro dolorum singulis maiestatis cu?<\/p>\n\n<p> Ornatus suavitate sed an? Molestie pertinacia expetendis pri ad! Quas elaboraret eum no? Sonet labore minimum ius cu, eam at vocent definitiones, admodum copiosae ex has. Cu est doming euripidis theophrastus!<\/p>\n\n<p> Quaeque torquatos has te, mazim putant per no, mel ad iisque offendit.<\/p>","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-29 09:36:38","post_date_gmt":"2016-08-29 09:36:38","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=19","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"20"},"terms":{"category":[{"term_id":2,"name":"Fashion","slug":"fashion","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":14,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Posts","post_id":16,"post_title":"Antique Car","post_status":"publish","post_name":"antique-car","post_content":"<p>Lorem ipsum dolor sit amet, mei no diam nostrud, mel dolore noluisse in. Sea nisl iisque id, nullam latine definiebas vel eu? Ad eos fugit labitur. Debet dolore corrumpit ad mei. Est ex doctus honestatis scribentur, per liber neglegentur no! An mel epicurei insolens, an cum diceret nusquam sadipscing.<\/p>\n\n<p>Causae omittantur ea eum, mei in habeo vidisse intellegam. Velit aeque evertitur mel ad, vis ei autem molestie inimicus. Te omittam argumentum vim, vix id vidit adhuc error. Vix ne sint mucius, his choro option id, ei dolores sapientem nam! Civibus pericula ut vim, duo at malis vituperatoribus.<\/p>\n\n<p>Possit interpretaris te mea, omnis iriure efficiendi quo cu! Inermis honestatis duo ea, pri congue meliore ne? Ridens veritus nam cu, autem legere at sit. Sale eruditi ad sit, et wisi tritani mel. Ne solum tation percipit sea, vim eu sint equidem. Has inimicus deterruisset ut. No animal suavitate quaerendum per.<\/p>\n\n<p>Qualisque splendide interesset id per, assum ubique labitur id est, congue tation senserit no qui. Aeque adipisci ex est, vocent veritus mandamus ut vel, at nobis eligendi sea. Id timeam honestatis eum, eu civibus definiebas mei, vix in mutat probatus eloquentiam? Vix no eius prima probatus, no cum brute congue. Ad porro perpetua eam, eam facer volutpat scriptorem an!<\/p>\n\n<p>Natum quidam utamur at sit, at aperiam meliore vix? Eu suas docendi sed, id eos nostro numquam, mei ea nibh numquam delectus. Ne eam zril inciderint appellantur, utinam delenit voluptua te cum, modus labitur dolorum est ex. Dicit latine ad eam, nihil apeirian suavitate eu per, vel at dolor urbanitas. Est ad stet everti omnesque, cum cibo appetere tincidunt ne. At utinam laudem sea. Ne mei aeterno equidem molestie, sit fugit exerci lobortis id.<\/p>\n\n<p>No est meliore signiferumque? Ei dolores facilisi nec, sea ex erant nominati tractatos, nostro qualisque vis no? Ex augue putent mea, elit solet postea at mea. Stet quodsi ne usu! Graeci qualisque iudicabit ex pri, ut est modus voluptaria scriptorem, molestie honestatis nam id.<\/p>\n\n<p>Sea phaedrum abhorreant ne, equidem splendide eam an. Ei homero eirmod civibus ius! Ei pri novum saperet perfecto, pri debet affert maluisset cu. Natum consequat pertinacia est te, brute phaedrum in ius! Veniam feugiat no mel.<\/p>\n\n<p>Sit rebum cetero iisque et! An pri congue munere, placerat scripserit sit at, eu ipsum nullam impetus eum. Quas dicit nobis cu qui, an mundi fabellas definitionem nec? Est et mediocrem voluptatum constituam, vel veri aliquid scriptorem at, ea nibh menandri pro. Nam et sonet theophrastus!<\/p>","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-29 09:34:10","post_date_gmt":"2016-08-29 09:34:10","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=16","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"17"},"terms":{"category":[{"term_id":4,"name":"Science","slug":"science","term_group":0,"term_taxonomy_id":4,"taxonomy":"category","description":"","parent":0,"count":2,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Posts","post_id":219,"post_title":"Mobile phone music","post_status":"publish","post_name":"mobile-phone-music","post_content":"<p>Lorem ipsum dolor sit amet, nec dicit noster habemus an, an populo dolorem cum. Te his primis deseruisse percipitur. Ex alienum temporibus est, aperiri voluptatibus vix ei. Deserunt moderatius te has, mel eruditi efficiantur in.<\/p>\n\n<p> Id quo quodsi detraxit, mea ut suavitate suscipiantur. At has nihil quidam. Ne vim diceret necessitatibus, per ut homero latine reprimique. Vis id hinc apeirian sadipscing, noster contentiones eu has.<\/p>\n\n<p> Eu nec graecis accommodare, purto laudem in quo! Te qui laudem partem persecuti! Ad error neglegentur vel, vel ne error debitis adolescens, ius quaeque omnesque et. Putent scaevola eam cu, ne fierent splendide vim. Iusto errem feugiat quo et, ut ius modus iuvaret, et sit fuisset consequat?<\/p>\n\n<p> Nulla ludus aliquando mel te? Lorem inciderint vis in, est iisque virtute discere ex. Pri eu diam sonet labore? Ex vel copiosae verterem, est at debet soleat ceteros. Et iusto gloriatur vim. Recusabo indoctum efficiantur nam id, et sit illud dolorum! Wisi numquam oporteat nec an.<\/p>\n\n<p> Purto solet impetus te usu, ea eum dicit maiorum conclusionemque! Noluisse disputationi ex vel? Ex usu fugit utamur partiendo. Dolor signiferumque eu vix, id ferri modus fabulas duo? Mei cu diam corrumpit.<\/p>\n\n<p> Purto senserit ex cum, pro no malis iudicabit maiestatis? Facete principes qui in. Sed an inermis delectus inimicus, nam et melius virtute hendrerit, sea id mucius iracundia. Ne maiorum omittantur sed? Te aperiam maiorum cum, est ut latine lucilius consequat?<\/p>\n\n<p> Ne has dictas iriure? Mel semper meliore constituto ei, nam velit labitur et, in sit populo delectus. Usu rebum falli omnium ei, per id sint impetus percipit. Ne nibh rationibus pro.<\/p>\n\n<p> Fabulas forensibus te mel? Ex enim persius persecuti vix, etiam quaestio omittantur ne eum, nec tantas accommodare ei. Eu audire consequat mei, ei exerci referrentur vim. An homero graeci mea, eius denique accommodare no est, in per etiam adolescens vituperata. Harum delectus ex pro, in vel reque dolore, ea vix nostrum adipisci interesset.<\/p>\n\n<p> Ut nam quod impetus detracto? Ut sed enim labitur contentiones. Ex eum hinc tritani, iriure disputando pro an. Ne cum clita quodsi incorrupte, usu natum vivendum at! An nam similique persecuti, iusto tritani nec ex?<\/p>\n\n<p> Vim te partem timeam scripta. An sea aperiam deleniti persequeris. Eam in nostrud assueverit, id quo dicant docendi sententiae. Per tota nominati perpetua id? Apeirian atomorum assueverit nam et, modo menandri an usu. Eum ea noster mandamus, laoreet detraxit has ut, pri at sumo labore doctus. Errem efficiendi scriptorem nec cu, mea ignota voluptaria theophrastus an.<\/p>\n\n<p> Tota saperet ponderum quo id. Cu primis nostrud has, usu dicit solet inciderint cu, dictas fuisset principes quo id? Pri dolorem volutpat quaerendum no, adhuc dicit ullamcorper te vix, eum ad duis laboramus efficiantur! Inani omnesque ei cum. Eu elitr admodum est, dicant dissentiet in mel.<\/p>\n\n<p> Duis modus vis eu, id vel nonumy voluptua? Et nec vero habeo ancillae, errem legendos dissentiet cu est? Agam harum dissentias at sed, his eu voluptatum efficiantur, eos enim velit at. Ei ius probo nostrud! Ut vel legere recusabo corrumpit, his iudico adversarium ei, errem percipit assueverit ius et. Soluta tibique an duo, qui luptatum repudiare et, ex pro apeirian repudiandae.<\/p>\n\n<p> Nam dicam eruditi an. Eos ut facilisis reprehendunt, duo wisi reformidans ex. Cum voluptatum disputationi no, sea viris mollis maiorum te? Nam id elit feugait, eum agam brute ut. Nullam maiorum platonem cum ut, eu aeque veritus posidonium vix.<\/p>\n\n<p> Purto assum maiestatis ei sit, regione temporibus ea per. Ut quo mundi vulputate, nostro expetendis ea vix? Vix modo duis atqui ne, ut etiam graeci sanctus his, vim vide elit no. Pro eu mutat scripta, usu tacimates suscipiantur ei, velit scaevola eum at?<\/p>\n\n<p> Ea dolore ubique disputationi mea, ad saepe euismod eum, te sed errem ceteros convenire. Albucius perpetua vim id, quem dicat pri an. Persecuti assueverit te cum, duo nobis commune instructior ne, has ei percipit voluptatum. Dicant mentitum recteque cu has, ius ex verterem probatus invenire. Et his iisque persecuti interesset, id qui modus oporteat instructior? No sint iisque assueverit nec, mel ad graeci quaerendum scribentur, stet nusquam accusam cu ius.<\/p>\n\n<p> Natum liber solet ex mei, idque dicunt est ad, vix paulo oratio mediocritatem cu? Eum ad impedit lobortis, sed id integre convenire, nec case dicant soleat eu. Rebum definitiones pro ea, labitur neglegentur vis ut? Pro ut tota possit habemus, nec ne melius impetus omittantur, ex qui sumo soleat referrentur! Sea nusquam consequat no, senserit euripidis te vix. An timeam vocibus concludaturque cum, qualisque dissentiet eum ea. Te iriure delenit eos!<\/p>\n\n<p> Te quaeque denique nominati pri, pro autem illum audiam id! Adipisci dignissim neglegentur eos ut, vis altera primis et. Equidem corrumpit assueverit sed cu, vis cu melius maluisset, ea paulo utinam eum! Ea vide apeirian tacimates eam! Mea porro inani cu? Quo dicunt dolores in, qui oratio labitur propriae ne, equidem eleifend nam ne?<\/p>\n\n<p> Nisl affert imperdiet ex sed. Quo ea natum soluta splendide, ne mucius debitis prodesset vel, id sit detracto percipitur. Appareat convenire vis cu! At eos error verear.<\/p>\n\n<p> An pericula imperdiet conclusionemque mea, mel congue accusata te. Ea semper audire verterem pri, sea ei quem quidam equidem, libris forensibus ad usu. Nonumy dissentiet eos te, pro ei iracundia vulputate! Id pro aeterno antiopam, amet solet indoctum vix ex. Vim malis verterem neglegentur ad, ferri nusquam facilisis nec ex. In qui simul oblique cotidieque? Reprimique intellegebat at est, ut ullum quando laoreet qui, mea convenire vulputate ei?<\/p>\n\n<p> Sit ad soleat tamquam, est id mutat accusam. Autem adipiscing in his, usu an alii elit. Usu facete melius inermis an, sonet voluptatibus mel in, mea cu etiam probatus mediocritatem! Adhuc sonet delicatissimi vis cu, errem omittam praesent ea nec? Vix ut modus dignissim, eos virtute sapientem ne! An affert eirmod duo!<\/p>\n\n<p> Id porro etiam necessitatibus quo, adipiscing argumentum delicatissimi no vim, id delectus adipisci abhorreant qui. Quo natum offendit ne, qui solet iriure maiorum no? Ea aeque laudem referrentur qui. Sea oporteat patrioque theophrastus ea.<\/p>\n\n<p> Eam omnes dolores et! No iudico timeam per, mei malorum vituperata in, eam alterum facilisis ad! Mei te tacimates volutpat, cu quo elitr fabulas accusam? Ut legimus debitis habemus vis.<\/p>","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-29 09:31:40","post_date_gmt":"2016-08-29 09:31:40","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=13","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"14"},"terms":{"category":[{"term_id":4,"name":"Science","slug":"science","term_group":0,"term_taxonomy_id":4,"taxonomy":"category","description":"","parent":0,"count":2,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Posts","post_id":83,"post_title":"Baby With Smiling Face","post_status":"publish","post_name":"baby-with-smiling-face","post_content":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n<blockquote>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\/blockquote>\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-28 07:19:43","post_date_gmt":"2016-08-28 07:19:43","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=83","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"85"},"terms":{"category":[{"term_id":2,"name":"Fashion","slug":"fashion","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":14,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Posts","post_id":104,"post_title":"Gorgeous Girl On Sea","post_status":"publish","post_name":"gorgeous-girl-on-sea","post_content":"Lorem ipsum dolor sit amet, voluptatum efficiendi nec et! Partiendo salutandi repudiandae vis ea. In sed maiorum comprehensam, nam te case possit sapientem! Ius eu malis convenire, cu movet detracto similique mei? Aliquip volumus perpetua ne mel.\n\n<strong>Lorem ipsum dolor sit amet, voluptatum efficiendi nec et<\/strong>!\n\n<img class=\"alignnone wp-image-108 size-full\" src=\"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/07\/beach-1368021_1280-1.jpg\" alt=\"beach-1368021_1280 (1)\" width=\"1280\" height=\"847\" \/>\n<p style=\"text-align: center\"><em>Photo Credit: Pixabay\u00a0<\/em><\/p>\n<p style=\"text-align: left\"><strong>Lorem ipsum dolor sit amet, voluptatum efficiendi nec et<\/strong>!<\/p>\n<p style=\"text-align: center\"><img class=\"alignnone wp-image-109 size-full\" src=\"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/07\/girl-429380_1280-1.jpg\" alt=\"girl-429380_1280 (1)\" width=\"1280\" height=\"853\" \/><\/p>\n<p style=\"text-align: center\"><em>Photo Credit: Pixabay\u00a0<\/em><\/p>\n<p style=\"text-align: left\"><strong>Lorem ipsum dolor sit amet, voluptatum efficiendi nec et<\/strong>!<\/p>\n<p style=\"text-align: center\"><img class=\"alignnone wp-image-110 size-full\" src=\"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/07\/child-428690_1280-1.jpg\" alt=\"child-428690_1280 (1)\" width=\"1280\" height=\"855\" \/><\/p>\n<p style=\"text-align: center\"><em>Photo Credit: Pixabay\u00a0<\/em><\/p>","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-07-30 07:59:23","post_date_gmt":"2016-07-30 07:59:23","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=104","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"105"},"terms":{"category":[{"term_id":2,"name":"Fashion","slug":"fashion","term_group":0,"term_taxonomy_id":2,"taxonomy":"category","description":"","parent":0,"count":14,"filter":"raw","meta":[]},{"term_id":6,"name":"Travel","slug":"travel","term_group":0,"term_taxonomy_id":6,"taxonomy":"category","description":"","parent":0,"count":5,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Posts","post_id":95,"post_title":"Walking Filili","post_status":"publish","post_name":"walking-filili","post_content":"<blockquote>Lorem ipsum dolor sit amet, voluptatum efficiendi nec et! Partiendo salutandi repudiandae vis ea. In sed maiorum comprehensam, nam te case possit sapientem! Ius eu malis convenire, cu movet detracto similique mei? Aliquip volumus perpetua ne mel.<\/blockquote>\nTe probo ipsum altera vis, quem praesent posidonium mei at. Eos dicam mentitum ea, nam an blandit deleniti, sonet eloquentiam an eam? Ad pri lobortis conclusionemque, usu ut magna libris? Alia offendit epicurei pro id, interesset liberavisse ei eum, eu sed dico dictas imperdiet. An vix semper probatus iudicabit.\n\n<img class=\"alignnone wp-image-98 size-full\" src=\"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/07\/feet-538245_1280-1.jpg\" alt=\"feet-538245_1280 (1)\" width=\"1280\" height=\"853\" \/>\n\nEpicurei detraxit principes quo an, ut est errem minimum patrioque, ius cu dicant bonorum. Consetetur disputando usu eu, ad quo sint dicit doming. Lobortis mandamus eam at. Eu vix quis comprehensam, stet nostro indoctum te nam. Usu at autem voluptatum, quo dicat intellegat vituperata ex! Natum inermis vel ut, ut unum fugit evertitur eos, quis vocibus an ius. Nec tota honestatis ut?\n\n<img class=\"alignleft wp-image-100 size-large\" src=\"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/07\/balloons-388973_1280-1-1024x682.jpg\" alt=\"balloons-388973_1280 (1)\" width=\"640\" height=\"426\" \/>\n\nVel ne nibh detracto, duo no ridens offendit apeirian. Nam reque propriae et. Et vivendum argumentum pro, iusto intellegam interpretaris eu eam! Eu usu quidam scaevola fabellas, pri ea consul integre efficiendi, usu facilis pericula accommodare in.\n\nIisque gubergren constituto ea pri, vocibus delicatissimi eum ex. Vel ferri gloriatur vulputate eu, ut maiestatis liberavisse qui. At postea volutpat vel? Eu tale tollit voluptatum pro, mea ferri illud et.\n\nTe probo ipsum altera vis, quem praesent posidonium mei at. Eos dicam mentitum ea, nam an blandit deleniti, sonet eloquentiam an eam? Ad pri lobortis conclusionemque, usu ut magna libris? Alia offendit epicurei pro id, interesset liberavisse ei eum, eu sed dico dictas imperdiet. An vix semper probatus iudicabit.\n<blockquote>Te probo ipsum altera vis, quem praesent posidonium mei at. Eos dicam mentitum ea, nam an blandit deleniti, sonet eloquentiam an eam? Ad pri lobortis conclusionemque, usu ut magna libris? Alia offendit epicurei pro id, interesset liberavisse ei eum, eu sed dico dictas imperdiet. An vix semper probatus iudicabit.\u00a0<img class=\"size-medium wp-image-45 alignright\" src=\"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/08\/mountain-984277_1280-300x200.jpg\" alt=\"mountain-984277_1280\" width=\"300\" height=\"200\" \/><\/blockquote>\nTe probo ipsum altera vis, quem praesent posidonium mei at. Eos dicam mentitum ea, nam an blandit deleniti, sonet eloquentiam an eam? Ad pri lobortis conclusionemque, usu ut magna libris? Alia offendit epicurei pro id, interesset liberavisse ei eum, eu sed dico dictas imperdiet. An vix semper probatus iudicabit\n\nTe probo ipsum altera vis, quem praesent posidonium mei at. Eos dicam mentitum ea, nam an blandit deleniti, sonet eloquentiam an eam? Ad pri lobortis conclusionemque, usu ut magna libris? Alia offendit epicurei pro id, interesset liberavisse ei eum, eu sed dico dictas imperdiet. An vix semper probatus iudicabit\n\n&nbsp;","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-07-30 07:49:43","post_date_gmt":"2016-07-30 07:49:43","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=95","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"96"},"terms":{"category":[{"term_id":3,"name":"Nature","slug":"nature","term_group":0,"term_taxonomy_id":3,"taxonomy":"category","description":"","parent":0,"count":7,"filter":"raw","meta":[]}],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}}],"page":[{"type_title":"Pages","post_id":230,"post_title":"Awesome Featured Section","post_status":"publish","post_name":"awesome-featured-section","post_content":"<img class=\"alignnone wp-image-231 size-full\" src=\"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/11\/woman-885845_1280.jpg\" alt=\"woman-885845_1280\" width=\"1280\" height=\"846\">\r\n\r\nContrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.\r\n\r\nContrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.","post_excerpt":"Highly crafted featured section with slider. ","post_parent":225,"menu_order":0,"post_date":"2016-11-05 10:02:48","post_date_gmt":"2016-11-05 10:02:48","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/?page_id=230","post_mime_type":"","meta":{"_edit_lock":"1480429245:1","_edit_last":"1","_thumbnail_id":"39"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Pages","post_id":227,"post_title":"Multiple Menu Position","post_status":"publish","post_name":"multiple-menu-position","post_content":"<img class=\"alignnone wp-image-228 size-full\" src=\"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/11\/girl-803155_1280.jpg\" alt=\"girl-803155_1280\" width=\"1280\" height=\"999\">\r\n\r\nContrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.\r\n\r\nContrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.\r\n\r\nContrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.\r\n\r\nContrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.","post_excerpt":"You can easily change the position of menu on the theme.","post_parent":225,"menu_order":0,"post_date":"2016-11-05 10:00:54","post_date_gmt":"2016-11-05 10:00:54","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/?page_id=227","post_mime_type":"","meta":{"_edit_lock":"1480429327:1","_edit_last":"1","_thumbnail_id":"37"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Pages","post_id":225,"post_title":"Slider","post_status":"publish","post_name":"slider","post_content":"","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-11-05 09:59:55","post_date_gmt":"2016-11-05 09:59:55","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/?page_id=225","post_mime_type":"","meta":{"_edit_lock":"1478339855:1","_edit_last":"1"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Pages","post_id":2,"post_title":"Sample Page","post_status":"publish","post_name":"sample-page","post_content":"This is an example page. It's different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n<blockquote>Hi there! I'm a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin' caught in the rain.)<\/blockquote>\n\n...or something like this:\n\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.<\/blockquote>\n\nAs a new WordPress user, you should go to <a href=\"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-admin\/\">your dashboard<\/a> to delete this page and create new pages for your content. Have fun!","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-11-05 06:07:30","post_date_gmt":"2016-11-05 06:07:30","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/?page_id=2","post_mime_type":"","meta":{"_wp_page_template":"default"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Pages","post_id":187,"post_title":"Gallery","post_status":"publish","post_name":"gallery","post_content":"[nggallery id=\"1\"]","post_excerpt":"","post_parent":185,"menu_order":0,"post_date":"2016-08-30 09:13:33","post_date_gmt":"2016-08-30 09:13:33","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/gallery\/gallery\/","post_mime_type":"","meta":[],"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Pages","post_id":185,"post_title":"Gallery","post_status":"publish","post_name":"gallery","post_content":"<img class=\"ngg_displayed_gallery mceItem\" src=\"http:\/\/www.demo.acmethemes.com\/acmephoto\/nextgen-attach_to_post\/preview\/id--190\" \/>","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:13:18","post_date_gmt":"2016-08-30 09:13:18","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?page_id=185","post_mime_type":"","meta":{"_edit_last":"1"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Pages","post_id":77,"post_title":"Contact","post_status":"publish","post_name":"contact","post_content":"Are you looking for a professional photographer ? Please contact me.\r\n\r\n[contact-form-7 id=\"112\" title=\"Contact form 1\"]","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-29 12:38:25","post_date_gmt":"2016-08-29 12:38:25","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?page_id=77","post_mime_type":"","meta":{"_edit_last":"1","_edit_lock":"1478340910:1"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Pages","post_id":75,"post_title":"About","post_status":"publish","post_name":"about","post_content":"Acme Themes is team of expert WordPress developers. We provide Best Premium and Free Responsive WordPress Themes with incredible support &amp; many other services.\n\n<img class=\"alignnone wp-image-14 size-full\" src=\"http:\/\/www.demo.acmethemes.com\/acmephoto\/home-1\/wp-content\/uploads\/sites\/2\/2016\/08\/mobile-616012_1920.jpg\" alt=\"mobile-616012_1920\" width=\"1920\" height=\"1275\" \/>\n\nWe design and Build Amazing things.","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-29 12:38:09","post_date_gmt":"2016-08-29 12:38:09","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?page_id=75","post_mime_type":"","meta":{"_edit_last":"1"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"Pages","post_id":218,"post_title":"Life Is Beautiful","post_status":"publish","post_name":"life-is-beautiful","post_content":"Don't miss anything","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-29 08:42:31","post_date_gmt":"2016-08-29 08:42:31","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?page_id=6","post_mime_type":"","meta":{"_edit_last":"1","_thumbnail_id":"12"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}}],"custom_css":[],"wp_block":[],"wpcf7_contact_form":[{"type_title":"Contact Forms","post_id":112,"post_title":"Contact form 1","post_status":"publish","post_name":"contact-form-1","post_content":"<label> Your Name (required)\n [text* your-name] <\/label>\n\n<label> Your Email (required)\n [email* your-email] <\/label>\n\n<label> Subject\n [text your-subject] <\/label>\n\n<label> Your Message\n [textarea your-message] <\/label>\n\n[submit \"Send\"]\nAcmePhoto \"[your-subject]\"\n[your-name] \nFrom: [your-name] \nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on AcmePhoto (http:\/\/www.demo.acmethemes.com\/acmephoto)\nacmethemes@gmail.com\nReply-To: [your-email]\n\n0\n0\n\nAcmePhoto \"[your-subject]\"\nAcmePhoto \nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on AcmePhoto (http:\/\/www.demo.acmethemes.com\/acmephoto)\n[your-email]\nReply-To: acmethemes@gmail.com\n\n0\n0\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 08:10:53","post_date_gmt":"2016-08-30 08:10:53","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?post_type=wpcf7_contact_form&amp;p=112","post_mime_type":"","meta":{"_form":"<label> Your Name (required)\n [text* your-name] <\/label>\n\n<label> Your Email (required)\n [email* your-email] <\/label>\n\n<label> Subject\n [text your-subject] <\/label>\n\n<label> Your Message\n [textarea your-message] <\/label>\n\n[submit \"Send\"]","_mail":{"subject":"AcmePhoto \"[your-subject]\"","sender":"[your-name] <wordpress@demo.acmethemes.com>","body":"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on AcmePhoto (http:\/\/www.demo.acmethemes.com\/acmephoto)","recipient":"acmethemes@gmail.com","additional_headers":"Reply-To: [your-email]","attachments":"","use_html":0,"exclude_blank":0},"_mail_2":{"active":false,"subject":"AcmePhoto \"[your-subject]\"","sender":"AcmePhoto <wordpress@demo.acmethemes.com>","body":"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on AcmePhoto (http:\/\/www.demo.acmethemes.com\/acmephoto)","recipient":"[your-email]","additional_headers":"Reply-To: acmethemes@gmail.com","attachments":"","use_html":0,"exclude_blank":0},"_messages":{"mail_sent_ok":"Thank you for your message. It has been sent.","mail_sent_ng":"There was an error trying to send your message. Please try again later.","validation_error":"One or more fields have an error. Please check and try again.","spam":"There was an error trying to send your message. Please try again later.","accept_terms":"You must accept the terms and conditions before sending your message.","invalid_required":"The field is required.","invalid_too_long":"The field is too long.","invalid_too_short":"The field is too short."},"_additional_settings":"","_locale":"en_US"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}}],"ngg_album":[],"ngg_gallery":[{"type_title":"NextGEN Gallery - Gallery","post_id":128,"post_title":"Untitled ngg_gallery","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:22:18","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=128","post_mime_type":"","meta":{"__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Gallery","post_id":125,"post_title":"Untitled ngg_gallery","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:10:50","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=125","post_mime_type":"","meta":{"__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}}],"ngg_pictures":[{"type_title":"NextGEN Gallery - Image","post_id":150,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4OTM5LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:22:19","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=150","post_mime_type":"","meta":{"updated_at":"1472548939","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":127,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4OTM4LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:22:18","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=127","post_mime_type":"","meta":{"updated_at":"1472548938","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":183,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4Mjc0LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:11:14","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=183","post_mime_type":"","meta":{"updated_at":"1472548274","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":181,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4MjczLCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:11:13","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=181","post_mime_type":"","meta":{"updated_at":"1472548273","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":179,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4MjcyLCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:11:12","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=179","post_mime_type":"","meta":{"updated_at":"1472548272","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":175,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4MjcxLCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:11:11","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=175","post_mime_type":"","meta":{"updated_at":"1472548271","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":173,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4MjcwLCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:11:10","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=173","post_mime_type":"","meta":{"updated_at":"1472548270","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":171,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4MjY5LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:11:09","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=171","post_mime_type":"","meta":{"updated_at":"1472548269","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":169,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4MjY4LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:11:08","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=169","post_mime_type":"","meta":{"updated_at":"1472548268","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":165,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4MjY3LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:11:07","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=165","post_mime_type":"","meta":{"updated_at":"1472548267","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":163,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4MjY2LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:11:06","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=163","post_mime_type":"","meta":{"updated_at":"1472548266","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":159,"post_title":"Untitled ngg_pictures","post_status":"draft","post_name":"mixin_nextgen_table_extras","post_content":"eyJ1cGRhdGVkX2F0IjoxNDcyNTQ4MjY0LCJpZF9maWVsZCI6IklEIiwiX19kZWZhdWx0c19zZXQiOnRydWV9","post_excerpt":"","post_parent":0,"menu_order":0,"post_date":"2016-08-30 09:11:04","post_date_gmt":"0000-00-00 00:00:00","guid":"http:\/\/www.demo.acmethemes.com\/acmephoto\/?p=159","post_mime_type":"","meta":{"updated_at":"1472548264","__defaults_set":"1","filter":"raw","id_field":"ID"},"terms":{"category":[],"post_tag":[],"nav_menu":[],"link_category":[],"post_format":[],"ngg_tag":[]}},{"type_title":"NextGEN Gallery - Image","post_id":157,"post_title":"