From 2b1f0b635809d0b8723460a88460b04bcfadd1ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20Zieli=C5=84ski?= Date: Sat, 2 Nov 2024 15:23:53 +0100 Subject: [PATCH] [Data Liberation] WP_WXR_Reader (#1972) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR introduces the `WP_WXR_Reader` class for parsing WordPress eXtended RSS (WXR) files, along with supporting improvements to the XML processing infrastructure. **Note: `WP_WXR_Reader` is just a reader. It won't actually import the data into WordPress** – that part is coming soon. A part of https://github.com/WordPress/wordpress-playground/issues/1894 ## Motivation There is no WordPress importer that would check all these boxes: * Supports 100GB+ WXR files without running out of memory * Can pause and resume along the way * Can resume even after a fatal error * Can run without libxml and mbstring * Is really fast `WP_WXR_Reader` is a step in that direction. It cannot pause and resume yet, but the next few PRs will add that feature. ## Implementation `WP_WXR_Reader` uses the `WP_XML_Processor` to find XML tags representing meaningful WordPress entities. The reader knows the WXR schema and only looks for relevant elements. For example, it knows that posts are stored in `rss > channel > item` and comments are stored in `rss > channel > item > `wp:comment`. The `$wxr->next_entity()` method stream-parses the next entity from the WXR document and exposes it to the API consumer via `$wxr->get_entity_type()` and `$wxr->get_entity_date()`. The next call to `$wxr->next_entity()` remembers where the parsing has stopped and parses the next entity after that point. ```php $fp = fopen('my-wxr-file.xml', 'r'); $wxr_reader = WP_WXR_Reader::from_stream(); while(true) { if($wxr_reader->next_entity()) { switch ( $wxr_reader->get_entity_type() ) { case 'post': // ... process post ... break; case 'comment': // ... process comment ... break; case 'site_option': // ... process site option ... break; // ... process other entity types ... } continue; } // Next entity not found – we ran out of data to process. // Let's feed another chunk of bytes to the reader. if(feof($fp)) { break; } $chunk = fread($fp, 8192); if(false === $chunk) { $wxr_reader->input_finished(); continue; } $wxr_reader->append_bytes($chunk); } ``` Similarly to `WP_XML_Processor`, the `WP_WXR_Reader` enters a paused state when it doesn't have enough XML bytes to parse the entire entity. The _next_entity() -> fread -> break_ usage pattern may seem a bit tedious. This is expected. Even if the WXR parsing part of the `WP_WXR_Reader` offers a high-level API, working with byte streams requires reasoning on a much lower level. The `StreamChain` class shipped in this repository will make the API consumption easier with its transformation–oriented API for chaining data processors. ### Supported WordPress entities * posts – sourced from `` tags * comments – sourced from `` tags * comment meta – sourced from `` tags * users – sourced from `` tags * post meta – sourced from `` tags * terms – sourced from `` tags * tags – sourced from `` tags * categories – sourced from `` tags ## Caveats ### Extensibility `WP_WXR_Reader` ignores any XML elements it doesn't recognize. The WXR format is extensible so in the future the reader may start supporting registration of custom handlers for unknown tags in the future. ### Nested entities intertwined with data `WP_WXR_Reader` flushes the current entity whenever another entity starts. The upside is simplicity and a tiny memory footprint. The downside is that it's possible to craft a WXR document where some information would be lost. For example: ```xml Page with comments http://wpthemetestdata.wordpress.com/about/page-with-comments/ _wp_page_template 146 ``` `WP_WXR_Reader` would accumulate post data until the `wp:post_meta` tag. Then it would emit a `post` entity and accumulate the meta information until the `` closer. Then it would advance to `` and **ignore it**. This is not a problem in all the `.wxr` files I saw. Still, it is important to note this limitation. It is possible there is a `.wxr` generator somewhere out there that intertwines post fields with post meta and comments. If this ever comes up, we could: * Emit the `post` entity first, then all the nested entities, and then emit a special `post_update` entity. * Do multiple passes over the WXR file – one for each level of nesting, e.g. 1. Insert posts, 2. Insert Comments, 3. Insert comment meta Buffering all the post meta and comments seems like a bad idea – there might be gigabytes of data. ## Future Plans The next phase will add pause/resume functionality to handle timeout scenarios: - Save parser state after each entity or every `n` entities to speed it up. Then also save the `n` for a quick rewind after resuming. - Resume parsing from saved state. ## Testing Instructions Read the tests and ponder whether they make sense. Confirm the PHPUnit test suite passed on CI. The test suite includes coverage for various WXR formats and streaming behaviors. --- .../data-liberation/blueprints-library | 2 +- .../playground/data-liberation/bootstrap.php | 40 +- .../playground/data-liberation/phpunit.xml | 1 + .../data-liberation/src/WP_WXR_Reader.php | 752 + .../data-liberation/src/utf8_decoder.php | 293 + .../src/xml-api/WP_XML_Processor.php | 343 +- .../tests/WPWXRReaderTests.php | 534 + .../tests/WPXMLProcessorTests.php | 41 + .../data-liberation/tests/wxr/10MB.xml | 196499 +++++++++++++++ .../tests/wxr/a11y-unit-test-data.xml | 9948 + .../tests/wxr/crazy-cdata-escaped.xml | 46 + .../data-liberation/tests/wxr/crazy-cdata.xml | 46 + .../tests/wxr/invalid-version-tag.xml | 91 + .../data-liberation/tests/wxr/malformed.xml | 91 + .../tests/wxr/missing-version-tag.xml | 90 + .../data-liberation/tests/wxr/slashes.xml | 77 + .../tests/wxr/small-export.xml | 447 + .../wxr/test-serialized-postmeta-no-cdata.xml | 69 + .../test-serialized-postmeta-with-cdata.xml | 77 + .../tests/wxr/test-utw-post-meta-import.xml | 69 + .../tests/wxr/theme-unit-test-data.xml | 12578 + .../tests/wxr/valid-wxr-1.0.xml | 282 + .../tests/wxr/valid-wxr-1.1.xml | 112 + .../tests/wxr/woocommerce-demo-products.xml | 4854 + 24 files changed, 227290 insertions(+), 92 deletions(-) create mode 100644 packages/playground/data-liberation/src/WP_WXR_Reader.php create mode 100644 packages/playground/data-liberation/src/utf8_decoder.php create mode 100644 packages/playground/data-liberation/tests/WPWXRReaderTests.php create mode 100644 packages/playground/data-liberation/tests/wxr/10MB.xml create mode 100644 packages/playground/data-liberation/tests/wxr/a11y-unit-test-data.xml create mode 100644 packages/playground/data-liberation/tests/wxr/crazy-cdata-escaped.xml create mode 100644 packages/playground/data-liberation/tests/wxr/crazy-cdata.xml create mode 100644 packages/playground/data-liberation/tests/wxr/invalid-version-tag.xml create mode 100644 packages/playground/data-liberation/tests/wxr/malformed.xml create mode 100644 packages/playground/data-liberation/tests/wxr/missing-version-tag.xml create mode 100644 packages/playground/data-liberation/tests/wxr/slashes.xml create mode 100644 packages/playground/data-liberation/tests/wxr/small-export.xml create mode 100644 packages/playground/data-liberation/tests/wxr/test-serialized-postmeta-no-cdata.xml create mode 100644 packages/playground/data-liberation/tests/wxr/test-serialized-postmeta-with-cdata.xml create mode 100644 packages/playground/data-liberation/tests/wxr/test-utw-post-meta-import.xml create mode 100644 packages/playground/data-liberation/tests/wxr/theme-unit-test-data.xml create mode 100644 packages/playground/data-liberation/tests/wxr/valid-wxr-1.0.xml create mode 100644 packages/playground/data-liberation/tests/wxr/valid-wxr-1.1.xml create mode 100644 packages/playground/data-liberation/tests/wxr/woocommerce-demo-products.xml diff --git a/packages/playground/data-liberation/blueprints-library b/packages/playground/data-liberation/blueprints-library index 3b8943b436..d7b184aa51 160000 --- a/packages/playground/data-liberation/blueprints-library +++ b/packages/playground/data-liberation/blueprints-library @@ -1 +1 @@ -Subproject commit 3b8943b4364ae276f7390e46c136136f48eca63a +Subproject commit d7b184aa514bfde2ada499c78e9b7a54ba4352b2 diff --git a/packages/playground/data-liberation/bootstrap.php b/packages/playground/data-liberation/bootstrap.php index cc1ce63fd7..c9188bc28e 100644 --- a/packages/playground/data-liberation/bootstrap.php +++ b/packages/playground/data-liberation/bootstrap.php @@ -32,12 +32,14 @@ require_once __DIR__ . '/src/xml-api/WP_XML_Decoder.php'; require_once __DIR__ . '/src/xml-api/WP_XML_Processor.php'; require_once __DIR__ . '/src/WP_WXR_URL_Rewrite_Processor.php'; - +require_once __DIR__ . '/src/WP_WXR_Reader.php'; +require_once __DIR__ . '/src/utf8_decoder.php'; require_once __DIR__ . '/vendor/autoload.php'; - // Polyfill WordPress core functions +$GLOBALS['_doing_it_wrong_messages'] = []; function _doing_it_wrong($method, $message, $version) { + $GLOBALS['_doing_it_wrong_messages'][] = $message; } function __($input) { @@ -77,3 +79,37 @@ function wp_kses_uri_attributes() { 'xmlns', ); } + +function mbstring_binary_safe_encoding( $reset = false ) { + static $encodings = array(); + static $overloaded = null; + + if ( is_null( $overloaded ) ) { + if ( function_exists( 'mb_internal_encoding' ) + && ( (int) ini_get( 'mbstring.func_overload' ) & 2 ) // phpcs:ignore PHPCompatibility.IniDirectives.RemovedIniDirectives.mbstring_func_overloadDeprecated + ) { + $overloaded = true; + } else { + $overloaded = false; + } + } + + if ( false === $overloaded ) { + return; + } + + if ( ! $reset ) { + $encoding = mb_internal_encoding(); + array_push( $encodings, $encoding ); + mb_internal_encoding( 'ISO-8859-1' ); + } + + if ( $reset && $encodings ) { + $encoding = array_pop( $encodings ); + mb_internal_encoding( $encoding ); + } +} + +function reset_mbstring_encoding() { + mbstring_binary_safe_encoding( true ); +} diff --git a/packages/playground/data-liberation/phpunit.xml b/packages/playground/data-liberation/phpunit.xml index 50553590e5..3a0c696ad3 100644 --- a/packages/playground/data-liberation/phpunit.xml +++ b/packages/playground/data-liberation/phpunit.xml @@ -2,6 +2,7 @@ + tests/WPWXRReaderTests.php tests/WPWXRURLRewriterTests.php tests/WPRewriteUrlsTests.php tests/WPURLInTextProcessorTests.php diff --git a/packages/playground/data-liberation/src/WP_WXR_Reader.php b/packages/playground/data-liberation/src/WP_WXR_Reader.php new file mode 100644 index 0000000000..d4620e0d21 --- /dev/null +++ b/packages/playground/data-liberation/src/WP_WXR_Reader.php @@ -0,0 +1,752 @@ + channel > item` and comments are + * stored in `rss > channel > item > `wp:comment`. + * + * The `$wxr->next_entity()` method stream-parses the next entity from the WXR document and + * exposes it to the API consumer via `$wxr->get_entity_type()` and `$wxr->get_entity_date()`. + * The next call to `$wxr->next_entity()` remembers where the parsing has stopped and parses + * the next entity after that point. + * + * Example: + * + * $reader = WP_WXR_Reader::from_stream(); + * + * // Add data as it becomes available + * $reader->append_bytes( fread( $file_handle, 8192 ) ); + * + * // Process entities + * while ( $reader->next_entity() ) { + * switch ( $wxr_reader->get_entity_type() ) { + * case 'post': + * // ... process post ... + * break; + * + * case 'comment': + * // ... process comment ... + * break; + * + * case 'site_option': + * // ... process site option ... + * break; + * + * // ... process other entity types ... + * } + * } + * + * // Check if we need more input + * if ( $reader->is_paused_at_incomplete_input() ) { + * // Add more data and continue processing + * $reader->append_bytes( fread( $file_handle, 8192 ) ); + * } + * + * The next_entity() -> fread -> break usage pattern may seem a bit tedious. This is expected. Even + * if the WXR parsing part of the WP_WXR_Reader offers a high-level API, working with byte streams + * requires reasoning on a much lower level. The StreamChain class shipped in this repository will + * make the API consumption easier with its transformation–oriented API for chaining data processors. + * + * Similarly to `WP_XML_Processor`, the `WP_WXR_Reader` enters a paused state when it doesn't + * have enough XML bytes to parse the entire entity. + * + * ## Caveats + * + * ### Extensibility + * + * `WP_WXR_Reader` ignores any XML elements it doesn't recognize. The WXR format is extensible + * so in the future the reader may start supporting registration of custom handlers for unknown + * tags in the future. + * + * ### Nested entities intertwined with data + * + * `WP_WXR_Reader` flushes the current entity whenever another entity starts. The upside is + * simplicity and a tiny memory footprint. The downside is that it's possible to craft a WXR + * document where some information would be lost. For example: + * + * ```xml + * + * + * + * Page with comments + * http://wpthemetestdata.wordpress.com/about/page-with-comments/ + * + * _wp_page_template + * + * + * 146 + * + * + * + * ``` + * + * `WP_WXR_Reader` would accumulate post data until the `wp:post_meta` tag. Then it would emit a + * `post` entity and accumulate the meta information until the `` closer. Then it + * would advance to `` and **ignore it**. + * + * This is not a problem in all the `.wxr` files I saw. Still, it is important to note this limitation. + * It is possible there is a `.wxr` generator somewhere out there that intertwines post fields with post + * meta and comments. If this ever comes up, we could: + * + * * Emit the `post` entity first, then all the nested entities, and then emit a special `post_update` entity. + * * Do multiple passes over the WXR file – one for each level of nesting, e.g. 1. Insert posts, 2. Insert Comments, 3. Insert comment meta + * + * Buffering all the post meta and comments seems like a bad idea – there might be gigabytes of data. + * + * ## Remaining work + * + * @TODO: + * + * - Save parser state after each entity or every `n` entities to speed it up. Then also save the `n` + * for a quick rewind after resuming. + * - Resume parsing from saved state. + * + * @since WP_VERSION + */ +class WP_WXR_Reader { + + /** + * The XML processor used to parse the WXR file. + * + * @since WP_VERSION + * @var WP_XML_Processor + */ + private $xml; + + /** + * The name of the XML tag containing information about the WordPress entity + * currently being extracted from the WXR file. + * + * @since WP_VERSION + * @var string|null + */ + private $entity_tag; + + /** + * The name of the current WordPress entity, such as 'post' or 'comment'. + * + * @since WP_VERSION + * @var string|null + */ + private $entity_type; + + /** + * The data accumulated for the current entity. + * + * @since WP_VERSION + * @var array + */ + private $entity_data; + + /** + * Whether the current entity has been emitted. + * + * @since WP_VERSION + * @var bool + */ + private $entity_finished = false; + + /** + * The attributes from the last opening tag. + * + * @since WP_VERSION + * @var array + */ + private $last_opener_attributes = array(); + + /** + * The ID of the last processed post. + * + * @since WP_VERSION + * @var int|null + */ + private $last_post_id = null; + + /** + * The ID of the last processed comment. + * + * @since WP_VERSION + * @var int|null + */ + private $last_comment_id = null; + + /** + * Buffer for accumulating text content between tags. + * + * @since WP_VERSION + * @var string + */ + private $text_buffer = ''; + + /** + * Mapping of WXR tags to their corresponding entity types and field mappings. + * + * @since WP_VERSION + * @var array + */ + const KNOWN_ENITIES = array( + 'wp:comment' => array( + 'type' => 'comment', + 'fields' => array( + 'wp:comment_id' => 'comment_id', + 'wp:comment_author' => 'comment_author', + 'wp:comment_author_email' => 'comment_author_email', + 'wp:comment_author_url' => 'comment_author_url', + 'wp:comment_author_IP' => 'comment_author_IP', + 'wp:comment_date' => 'comment_date', + 'wp:comment_date_gmt' => 'comment_date_gmt', + 'wp:comment_content' => 'comment_content', + 'wp:comment_approved' => 'comment_approved', + 'wp:comment_type' => 'comment_type', + 'wp:comment_parent' => 'comment_parent', + 'wp:comment_user_id' => 'comment_user_id', + ), + ), + 'wp:commentmeta' => array( + 'type' => 'comment_meta', + 'fields' => array( + 'wp:meta_key' => 'meta_key', + 'wp:meta_value' => 'meta_value', + ), + ), + 'wp:author' => array( + 'type' => 'user', + 'fields' => array( + 'wp:author_id' => 'ID', + 'wp:author_login' => 'user_login', + 'wp:author_email' => 'user_email', + 'wp:author_display_name' => 'display_name', + 'wp:author_first_name' => 'first_name', + 'wp:author_last_name' => 'last_name', + ), + ), + 'item' => array( + 'type' => 'post', + 'fields' => array( + 'title' => 'post_title', + 'link' => 'link', + 'guid' => 'guid', + 'description' => 'post_excerpt', + 'pubDate' => 'post_published_at', + 'dc:creator' => 'post_author', + 'content:encoded' => 'post_content', + 'excerpt:encoded' => 'post_excerpt', + 'wp:post_id' => 'ID', + 'wp:status' => 'post_status', + 'wp:post_date' => 'post_date', + 'wp:post_date_gmt' => 'post_date_gmt', + 'wp:post_modified' => 'post_modified', + 'wp:post_modified_gmt' => 'post_modified_gmt', + 'wp:comment_status' => 'comment_status', + 'wp:ping_status' => 'ping_status', + 'wp:post_name' => 'post_name', + 'wp:post_parent' => 'post_parent', + 'wp:menu_order' => 'menu_order', + 'wp:post_type' => 'post_type', + 'wp:post_password' => 'post_password', + 'wp:is_sticky' => 'is_sticky', + 'wp:attachment_url' => 'attachment_url', + ), + ), + 'wp:postmeta' => array( + 'type' => 'post_meta', + 'fields' => array( + 'wp:meta_key' => 'meta_key', + 'wp:meta_value' => 'meta_value', + ), + ), + 'wp:term' => array( + 'type' => 'term', + 'fields' => array( + 'wp:term_id' => 'term_id', + 'wp:term_taxonomy' => 'taxonomy', + 'wp:term_slug' => 'slug', + 'wp:term_parent' => 'parent', + 'wp:term_name' => 'name', + ), + ), + 'wp:tag' => array( + 'type' => 'tag', + 'fields' => array( + 'wp:term_id' => 'term_id', + 'wp:tag_slug' => 'slug', + 'wp:tag_name' => 'name', + 'wp:tag_description' => 'description', + ), + ), + 'wp:category' => array( + 'type' => 'category', + 'fields' => array( + 'wp:category_nicename' => 'slug', + 'wp:category_parent' => 'parent', + 'wp:cat_name' => 'name', + 'wp:category_description' => 'description', + ), + ), + ); + + /** + * Creates a new WXR reader from a string. + * + * @since WP_VERSION + * + * @param string $wxr_bytes The WXR content as a string. + * @return WP_WXR_Reader The new reader instance. + */ + public static function from_string( $wxr_bytes = '' ) { + return new WP_WXR_Reader( WP_XML_Processor::from_string( $wxr_bytes ) ); + } + + /** + * Creates a new WXR reader for streaming input. + * + * @since WP_VERSION + * + * @param string $wxr_bytes Optional initial WXR content. + * @return WP_WXR_Reader The new reader instance. + */ + public static function from_stream( $wxr_bytes = '' ) { + return new WP_WXR_Reader( WP_XML_Processor::from_stream( $wxr_bytes ) ); + } + + /** + * Constructor. + * + * @since WP_VERSION + * + * @param WP_XML_Processor $xml The XML processor to use. + */ + protected function __construct( $xml = '' ) { + $this->xml = $xml; + } + + /** + * Gets the type of the current entity. + * + * @since WP_VERSION + * + * @return string|false The entity type, or false if no entity is being processed. + */ + public function get_entity_type() { + if ( null !== $this->entity_type ) { + return $this->entity_type; + } + if ( null === $this->entity_tag ) { + return false; + } + if ( ! array_key_exists( $this->entity_tag, static::KNOWN_ENITIES ) ) { + return false; + } + return static::KNOWN_ENITIES[ $this->entity_tag ]['type']; + } + + /** + * Gets the data for the current entity. + * + * @since WP_VERSION + * + * @return array The entity data. + */ + public function get_entity_data() { + return $this->entity_data; + } + + /** + * Gets the ID of the last processed post. + * + * @since WP_VERSION + * + * @return int|null The post ID, or null if no posts have been processed. + */ + public function get_last_post_id() { + return $this->last_post_id; + } + + /** + * Gets the ID of the last processed comment. + * + * @since WP_VERSION + * + * @return int|null The comment ID, or null if no comments have been processed. + */ + public function get_last_comment_id() { + return $this->last_comment_id; + } + + /** + * Appends bytes to the input stream. + * + * @since WP_VERSION + * + * @param string $bytes The bytes to append. + */ + public function append_bytes( string $bytes ) { + $this->xml->append_bytes( $bytes ); + } + + /** + * Marks the input as finished. + * + * @since WP_VERSION + */ + public function input_finished(): void { + $this->xml->input_finished(); + } + + /** + * Checks if processing is finished. + * + * @since WP_VERSION + * + * @return bool Whether processing is finished. + */ + public function is_finished(): bool { + return $this->xml->is_finished(); + } + + /** + * Checks if processing is paused waiting for more input. + * + * @since WP_VERSION + * + * @return bool Whether processing is paused. + */ + public function is_paused_at_incomplete_input(): bool { + return $this->xml->is_paused_at_incomplete_input(); + } + + /** + * Gets the last error that occurred. + * + * @since WP_VERSION + * + * @return string|null The error message, or null if no error occurred. + */ + public function get_last_error(): ?string { + return $this->xml->get_last_error(); + } + + /** + * Advances to the next entity in the WXR file. + * + * @since WP_VERSION + * + * @return bool Whether another entity was found. + */ + public function next_entity() { + if ( + $this->xml->is_finished() || + $this->xml->is_paused_at_incomplete_input() + ) { + return false; + } + + /** + * This is the first call after emitting an entity. + * Remove the previous entity details from the internal state + * and prepare for the next entity. + */ + if ( $this->entity_type && $this->entity_finished ) { + $this->after_entity(); + // If we finished processing the entity on a closing tag, advance the XML processor to + // the next token. Otherwise the array_key_exists( $tag, static::KNOWN_ENITIES ) branch + // below will cause an infinite loop. + if ( $this->xml->is_tag_closer() ) { + if ( false === $this->xml->next_token() ) { + return false; + } + } + } + + /** + * Main parsing loop. It advances the XML parser state until a full entity + * is available. + */ + do { + $breadcrumbs = $this->xml->get_breadcrumbs(); + // Don't process anything outside the hierarchy. + if ( + count( $breadcrumbs ) < 2 || + $breadcrumbs[0] !== 'rss' || + $breadcrumbs[1] !== 'channel' + ) { + continue; + } + + /* + * Buffer text and CDATA sections until we find the next tag. + * Each tag may contain multiple text or CDATA sections so we can't + * just assume that a single `get_modifiable_text()` call would get + * the entire text content of an element. + */ + if ( + $this->xml->get_token_type() === '#text' || + $this->xml->get_token_type() === '#cdata-section' + ) { + $this->text_buffer .= $this->xml->get_modifiable_text(); + continue; + } + + // We're only interested in tags after this point. + if ( $this->xml->get_token_type() !== '#tag' ) { + continue; + } + + $tag = $this->xml->get_tag(); + /** + * Custom adjustment: the Accessibility WXR file uses a non-standard + * wp:wp_author tag. + * @TODO: Should WP_WXR_Reader care about such non-standard tags when + * the regular WXR importer would ignore them? Perhaps a warning + * and an upstream PR would be a better solution. + */ + if ( $tag === 'wp:wp_author' ) { + $tag = 'wp:author'; + } + + /** + * If the tag is a known entity root, assume the previous entity is + * finished, emit it, and start processing the new entity the next + * time this function is called. + */ + if ( array_key_exists( $tag, static::KNOWN_ENITIES ) ) { + if ( $this->entity_type && ! $this->entity_finished ) { + $this->emit_entity(); + return true; + } + $this->after_entity(); + // Only tag openers indicate a new entity. Closers just mean + // the previous entity is finished. + if ( $this->xml->is_tag_opener() ) { + $this->set_entity_tag( $tag ); + } + continue; + } + + /** + * We're inside of an entity tag at this point. + * + * The following code assumes that we'll only see three types of tags: + * + * * Empty elements – such as , that we'll ignore + * * XML element openers with only text nodes inside them. + * * XML element closers. + * + * Specifically, we don't expect to see any nested XML elements such as: + * + * + * Pygmalion + * Long time ago... + * + * + * The semantics of such a structure is not clear. The WP_WXR_Reader will + * enter an error state when it encounters such a structure. + * + * Such nesting wasn't found in any WXR files analyzed when building + * this class. If it actually is a part of the WXR standard, every + * supported nested element will need a custom handler. + */ + + /** + * Buffer the XML tag opener attributes for later use. + * + * In WXR files, entity attributes come from two sources: + * * XML attributes on the tag itself + * * Text content between the opening and closing tags + * + * We store the XML attributes when encountering an opening tag, + * but wait until the closing tag to process the entity attributes. + * Why? Because only at that point we have both the attributes + * and all the related text nodes. + */ + if ( $this->xml->is_tag_opener() ) { + $this->last_opener_attributes = array(); + $names = $this->xml->get_attribute_names_with_prefix( '' ); + foreach ( $names as $name ) { + $this->last_opener_attributes[ $name ] = $this->xml->get_attribute( $name ); + } + $this->text_buffer = ''; + continue; + } + + /** + * At this point we're looking for the nearest tag closer so we can + * turn the buffered data into an entity attribute. + */ + if ( ! $this->xml->is_tag_closer() ) { + continue; + } + + if ( + ! $this->entity_finished && + $this->xml->get_breadcrumbs() === array( 'rss', 'channel' ) + ) { + // Look for site options in children of the tag. + if ( $this->parse_site_option() ) { + return true; + } else { + // Keep looking for an entity if none was found in the current tag. + continue; + } + } + + /** + * Special handling to accumulate categories stored inside the + * tag found inside tags. + * + * For example, we want to convert this: + * + * + * + * + * + * + * Into this: + * + * 'terms' => [ + * [ 'taxonomy' => 'category', 'slug' => '', 'description' => 'Uncategorized' ], + * [ 'taxonomy' => 'category', 'slug' => 'WordPress', 'description' => 'WordPress' ], + * ] + */ + if ( + $this->entity_type === 'post' && + $tag === 'category' + ) { + $this->entity_data['terms'][] = array( + 'taxonomy' => $this->last_opener_attributes['domain'], + 'slug' => $this->last_opener_attributes['nicename'], + 'description' => $this->text_buffer, + ); + $this->text_buffer = ''; + continue; + } + + /** + * Store the text content of known tags as the value of the corresponding + * entity attribute as defined by the KNOWN_ENITIES mapping. + * + * Ignores tags unlisted in the KNOWN_ENITIES mapping. + * + * The WXR format is extensible so this reader could potentially + * support registering custom handlers for unknown tags in the future. + */ + if ( ! isset( static::KNOWN_ENITIES[ $this->entity_tag ]['fields'][ $tag ] ) ) { + continue; + } + + $key = static::KNOWN_ENITIES[ $this->entity_tag ]['fields'][ $tag ]; + $this->entity_data[ $key ] = $this->text_buffer; + $this->text_buffer = ''; + } while ( $this->xml->next_token() ); + + if ( $this->is_paused_at_incomplete_input() ) { + return false; + } + + /** + * Emit the last unemitted entity after parsing all the data. + */ + if ( $this->is_finished() && + $this->entity_type && + ! $this->entity_finished + ) { + $this->emit_entity(); + return true; + } + + return false; + } + + /** + * Emits a site option entity from known children of the + * tag, e.g. or . + * + * @return bool Whether a site_option entity was emitted. + */ + private function parse_site_option() { + $known_options = array( + 'wp:base_blog_url' => 'home', + 'wp:base_site_url' => 'siteurl', + 'title' => 'blogname', + ); + + if ( ! array_key_exists( $this->xml->get_tag(), $known_options ) ) { + return false; + } + + $this->entity_type = 'site_option'; + $this->entity_data = array( + 'option_name' => $known_options[ $this->xml->get_tag() ], + 'option_value' => $this->text_buffer, + ); + $this->emit_entity(); + return true; + } + + /** + * Marks the current entity as emitted and updates tracking variables. + * + * @since WP_VERSION + */ + private function emit_entity() { + if ( $this->entity_type === 'post' ) { + $this->last_post_id = $this->entity_data['ID']; + } elseif ( $this->entity_type === 'comment' ) { + $this->last_comment_id = $this->entity_data['comment_id']; + } elseif ( $this->entity_type === 'tag' ) { + $this->entity_data['taxonomy'] = 'post_tag'; + } elseif ( $this->entity_type === 'category' ) { + $this->entity_data['taxonomy'] = 'category'; + } + $this->entity_finished = true; + } + + /** + * Sets the current entity tag and type. + * + * @since WP_VERSION + * + * @param string $tag The entity tag name. + */ + private function set_entity_tag( string $tag ) { + $this->entity_tag = $tag; + if ( array_key_exists( $tag, static::KNOWN_ENITIES ) ) { + $this->entity_type = static::KNOWN_ENITIES[ $tag ]['type']; + } + } + + /** + * Resets the state after processing an entity. + * + * @since WP_VERSION + */ + private function after_entity() { + $this->entity_tag = null; + $this->entity_type = null; + $this->entity_data = array(); + $this->entity_finished = false; + $this->text_buffer = ''; + $this->last_opener_attributes = array(); + } +} diff --git a/packages/playground/data-liberation/src/utf8_decoder.php b/packages/playground/data-liberation/src/utf8_decoder.php new file mode 100644 index 0000000000..aafdb6ced8 --- /dev/null +++ b/packages/playground/data-liberation/src/utf8_decoder.php @@ -0,0 +1,293 @@ +<?php +/** + * UTF-8 decoding pipeline by Dennis Snell (@dmsnell), originally + * proposed in https://github.com/WordPress/wordpress-develop/pull/6883. + * + * It enables parsing XML documents with incomplete UTF-8 byte sequences + * without crashing or depending on the mbstring extension. + */ + +if ( ! defined( 'UTF8_DECODER_ACCEPT' ) ) { + define( 'UTF8_DECODER_ACCEPT', 0 ); +} + +if ( ! defined( 'UTF8_DECODER_REJECT' ) ) { + define( 'UTF8_DECODER_REJECT', 1 ); +} + +/** + * Indicates if a given byte stream represents valid UTF-8. + * + * Note that unpaired surrogate halves are not valid UTF-8 and will be rejected. + * + * Example: + * + * true === utf8_is_valid_byte_stream( 'Hello, World! 🌎' ); + * + * false === utf8_is_valid_byte_stream( "Latin1 is n\xF6t valid UTF-8.", 0, $error_at ); + * 12 === $error_at; + * + * false === utf8_is_valid_byte_stream( "Surrogate halves like '\xDE\xFF\x80' are not permitted.", 0, $error_at ); + * 23 === $error_at; + * + * false === utf8_is_valid_byte_stream( "Broken stream: \xC2\xC2", 0, $error_at ); + * 15 === $error_at; + * + * @since {WP_VERSION} + * + * @param string $bytes Text to validate as UTF-8 bytes. + * @param int $starting_byte Byte offset in string where decoding should begin. + * @param int|null $first_error_byte_at Optional. If provided and byte stream fails to validate, + * will be set to the byte offset where the first invalid + * byte appeared. Otherwise, will not be set. + * @return bool Whether the given byte stream represents valid UTF-8. + */ +function utf8_is_valid_byte_stream( string $bytes, int $starting_byte = 0, int &$first_error_byte_at = null ): bool { + $state = UTF8_DECODER_ACCEPT; + $last_start_at = $starting_byte; + + for ( $at = $starting_byte, $end = strlen( $bytes ); $at < $end && UTF8_DECODER_REJECT !== $state; $at++ ) { + if ( UTF8_DECODER_ACCEPT === $state ) { + $last_start_at = $at; + } + + $state = utf8_decoder_apply_byte( $bytes[ $at ], $state ); + } + + if ( UTF8_DECODER_ACCEPT === $state ) { + return true; + } else { + $first_error_byte_at = $last_start_at; + return false; + } +} + +/** + * Returns number of code points found within a UTF-8 string, similar to `strlen()`. + * + * If the byte stream fails to properly decode as UTF-8 this function will set the + * byte index of the first error byte and report the number of decoded code points. + * + * @since {WP_VERSION} + * + * @param string $bytes Text for which to count code points. + * @param int|null $first_error_byte_at Optional. If provided, will be set upon finding + * the first invalid byte. + * @return int How many code points were decoded in the given byte stream before an error + * or before reaching the end of the string. + */ +function utf8_code_point_count( string $bytes, int &$first_error_byte_at = null ): int { + $state = UTF8_DECODER_ACCEPT; + $last_start_at = 0; + $count = 0; + $code_point = 0; + + for ( $at = 0, $end = strlen( $bytes ); $at < $end && UTF8_DECODER_REJECT !== $state; $at++ ) { + if ( UTF8_DECODER_ACCEPT === $state ) { + $last_start_at = $at; + } + + $state = utf8_decoder_apply_byte( $bytes[ $at ], $state, $code_point ); + + if ( UTF8_DECODER_ACCEPT === $state ) { + ++$count; + } + } + + if ( UTF8_DECODER_ACCEPT !== $state ) { + $first_error_byte_at = $last_start_at; + } + + return $count; +} + +/** + * Inner loop for a number of UTF-8 decoding-related functions. + * + * You probably don't need this! This is highly-specific and optimized + * code for UTF-8 operations used in other functions. + * + * @see http://bjoern.hoehrmann.de/utf-8/decoder/dfa/ + * + * @since {WP_VERSION} + * + * @access private + * + * @param string $byte Next byte to be applied in UTF-8 decoding or validation. + * @param int $state UTF-8 decoding state, one of the following values:<br><ul> + * <li>`UTF8_DECODER_ACCEPT`: Decoder is ready for a new code point.<br> + * <li>`UTF8_DECODER_REJECT`: An error has occurred.<br> + * Any other positive value: Decoder is waiting for additional bytes. + * @param int|null $code_point Optional. If provided, will accumulate the decoded code point as + * each byte is processed. If not provided or unable to decode, will + * not be set, or will be set to invalid and unusable data. + * @return int Next decoder state after processing the current byte. + */ +function utf8_decoder_apply_byte( string $byte, int $state, int &$code_point = 0 ): int { + /** + * State classification and transition table for UTF-8 validation. + * + * > The first part of the table maps bytes to character classes that + * > to reduce the size of the transition table and create bitmasks. + * > + * > The second part is a transition table that maps a combination + * > of a state of the automaton and a character class to a state. + * + * @see http://bjoern.hoehrmann.de/utf-8/decoder/dfa/ + */ + static $state_table = ( + "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" . + "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" . + "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" . + "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" . + "\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09" . + "\x07\x07\x07\x07\x07\x07\x07\x07\x07\x07\x07\x07\x07\x07\x07\x07\x07\x07\x07\x07\x07\x07\x07\x07\x07\x07\x07\x07\x07\x07\x07\x07" . + "\x08\x08\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02" . + "\x10\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x04\x03\x03" . + "\x11\x06\x06\x06\x05\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08" . + "\x00\x01\x02\x03\x05\x08\x07\x01\x01\x01\x04\x06\x01\x01\x01\x01" . + "\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x00\x01\x01\x01\x01\x01\x00\x01\x00\x01\x01\x01\x01\x01\x01" . + "\x01\x02\x01\x01\x01\x01\x01\x02\x01\x02\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x02\x01\x01\x01\x01\x01\x01\x01\x01" . + "\x01\x02\x01\x01\x01\x01\x01\x01\x01\x02\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x03\x01\x03\x01\x01\x01\x01\x01\x01" . + "\x01\x03\x01\x01\x01\x01\x01\x03\x01\x03\x01\x01\x01\x01\x01\x01\x01\x03\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01" + ); + + $byte = ord( $byte ); + $type = ord( $state_table[ $byte ] ); + $code_point = ( UTF8_DECODER_ACCEPT === $state ) + ? ( ( 0xFF >> $type ) & $byte ) + : ( ( $byte & 0x3F ) | ( $code_point << 6 ) ); + + return ord( $state_table[ 256 + ( $state * 16 ) + $type ] ); +} + +/** + * Extract a slice of a text by code point, where invalid byte seuqences count + * as a single code point, U+FFFD (the Unicode replacement character `�`). + * + * This function does not permit passing negative indices and will return + * the original string if such are provide. + * + * @param string $text Input text from which to extract. + * @param int $from Start extracting after this many code-points. + * @param int $length Extract this many code points. + * + * @return string Extracted slice of input string. + */ +function utf8_substr( string $text, int $from = 0, int $length = null ): string { + if ( $from < 0 || ( isset( $length ) && $length < 0 ) ) { + return $text; + } + + $position_in_input = 0; + $code_point_at = 0; + $end_byte = strlen( $text ); + $buffer = ''; + $seen_code_points = 0; + $sliced_code_points = 0; + $decoder_state = UTF8_DECODER_ACCEPT; + + // Get to the start of the string. + while ( $position_in_input < $end_byte && $seen_code_points < $length ) { + $decoder_state = utf8_decoder_apply_byte( $text[ $position_in_input ], $decoder_state ); + + if ( UTF8_DECODER_ACCEPT === $decoder_state ) { + ++$position_in_input; + + if ( $seen_code_points >= $from ) { + ++$sliced_code_points; + $buffer .= substr( $text, $code_point_at, $position_in_input - $code_point_at ); + } + + ++$seen_code_points; + $code_point_at = $position_in_input; + } elseif ( UTF8_DECODER_REJECT === $decoder_state ) { + $buffer .= "\u{FFFD}"; + + // Skip to the start of the next code point. + while ( UTF8_DECODER_REJECT === $decoder_state && $position_in_input < $end_byte ) { + $decoder_state = utf8_decoder_apply_byte( $text[ ++$position_in_input ], UTF8_DECODER_ACCEPT ); + } + + ++$seen_code_points; + $code_point_at = $position_in_input; + $decoder_state = UTF8_DECODER_ACCEPT; + } else { + ++$position_in_input; + } + } + + return $buffer; +} + +/** + * Extract a unicode codepoint from a specific offset in text. + * Invalid byte sequences count as a single code point, U+FFFD + * (the Unicode replacement character ``). + * + * This function does not permit passing negative indices and will return + * null if such are provided. + * + * @param string $text Input text from which to extract. + * @param int $byte_offset Start at this byte offset in the input text. + * @param int $matched_bytes How many bytes were matched to produce the codepoint. + * + * @return int Unicode codepoint. + */ +function utf8_codepoint_at( string $text, int $byte_offset = 0, &$matched_bytes = 0 ) { + if ( $byte_offset < 0 ) { + return null; + } + + $position_in_input = $byte_offset; + $code_point_at = $byte_offset; + $end_byte = strlen( $text ); + $codepoint = null; + $decoder_state = UTF8_DECODER_ACCEPT; + + // Get to the start of the string. + while ( $position_in_input < $end_byte ) { + $decoder_state = utf8_decoder_apply_byte( $text[ $position_in_input ], $decoder_state ); + + if ( UTF8_DECODER_ACCEPT === $decoder_state ) { + ++$position_in_input; + $codepoint = utf8_ord( substr( $text, $code_point_at, $position_in_input - $code_point_at ) ); + break; + } elseif ( UTF8_DECODER_REJECT === $decoder_state ) { + $codepoint = utf8_ord( "\u{FFFD}" ); + break; + } else { + ++$position_in_input; + } + } + + $matched_bytes = $position_in_input - $byte_offset; + return $codepoint; +} + +/** + * Convert a UTF-8 byte sequence to its Unicode codepoint. + * + * @param string $character UTF-8 encoded byte sequence representing a single Unicode character. + * @return int Unicode codepoint. + */ +function utf8_ord( string $character ): int { + // Convert the byte sequence to its binary representation + $bytes = unpack( 'C*', $character ); + + // Initialize the codepoint + $codepoint = 0; + + // Calculate the codepoint based on the number of bytes + if ( count( $bytes ) === 1 ) { + $codepoint = $bytes[1]; + } elseif ( count( $bytes ) === 2 ) { + $codepoint = ( ( $bytes[1] & 0x1F ) << 6 ) | ( $bytes[2] & 0x3F ); + } elseif ( count( $bytes ) === 3 ) { + $codepoint = ( ( $bytes[1] & 0x0F ) << 12 ) | ( ( $bytes[2] & 0x3F ) << 6 ) | ( $bytes[3] & 0x3F ); + } elseif ( count( $bytes ) === 4 ) { + $codepoint = ( ( $bytes[1] & 0x07 ) << 18 ) | ( ( $bytes[2] & 0x3F ) << 12 ) | ( ( $bytes[3] & 0x3F ) << 6 ) | ( $bytes[4] & 0x3F ); + } + + return $codepoint; +} diff --git a/packages/playground/data-liberation/src/xml-api/WP_XML_Processor.php b/packages/playground/data-liberation/src/xml-api/WP_XML_Processor.php index 237419866e..3855196348 100644 --- a/packages/playground/data-liberation/src/xml-api/WP_XML_Processor.php +++ b/packages/playground/data-liberation/src/xml-api/WP_XML_Processor.php @@ -47,6 +47,11 @@ * ]> * * @TODO: Support XML 1.1. + * + * @TODO: Evaluate the performance of utf8_codepoint_at() against using the mbstring + * extension. If mbstring is faster, then use it whenever it's available with + * utf8_codepoint_at() as a fallback. + * * @package WordPress * @subpackage HTML-API * @since WP_VERSION @@ -480,7 +485,7 @@ class WP_XML_Processor { private $is_closing_tag; /** - * Stores an explanation for why something failed, if it did. + * Stores the error for why something failed, if it did. * * @see self::get_last_error * @@ -568,6 +573,17 @@ class WP_XML_Processor { */ protected $lexical_updates = array(); + /** + * Memory budget for the processed XML. + * + * append_bytes() will flush the processed bytes whenever the XML buffer + * exceeds this budget. The lexical updates will be applied and the bookmarks + * will be reset. + * + * @var int + */ + protected $memory_budget = 1024 * 1024 * 1024; + /** * Tracks and limits `seek()` calls to prevent accidental infinite loops. * @@ -626,7 +642,7 @@ public static function from_string( $xml, $known_definite_encoding = 'UTF-8' ) { return null; } - $processor = new WP_XML_Processor( $xml ); + $processor = new WP_XML_Processor( $xml, self::CONSTRUCTOR_UNLOCK_CODE ); $processor->input_finished(); return $processor; } @@ -635,7 +651,7 @@ public static function from_stream( $xml, $known_definite_encoding = 'UTF-8' ) { if ( 'UTF-8' !== $known_definite_encoding ) { return null; } - return new WP_XML_Processor( $xml ); + return new WP_XML_Processor( $xml, self::CONSTRUCTOR_UNLOCK_CODE ); } /** @@ -651,13 +667,27 @@ public static function from_stream( $xml, $known_definite_encoding = 'UTF-8' ) { * @see WP_XML_Processor::create_stream() * * @param string $xml XML to process. + * @param string|null $use_the_static_create_methods_instead This constructor should not be called manually. */ - protected function __construct( $xml ) { + protected function __construct( $xml, $use_the_static_create_methods_instead = null ) { + if ( self::CONSTRUCTOR_UNLOCK_CODE !== $use_the_static_create_methods_instead ) { + _doing_it_wrong( + __METHOD__, + sprintf( + /* translators: %s: WP_XML_Processor::create_fragment(). */ + __( 'Call %s to create an XML Processor instead of calling the constructor directly.' ), + '<code>WP_XML_Processor::create_fragment()</code>' + ), + '6.4.0' + ); + } $this->xml = $xml; } public static function create_stream_processor( $node_visitor_callback ) { $xml_processor = WP_XML_Processor::from_stream( '' ); + // Don't auto-flush the processed bytes. We'll do that manually. + $xml_processor->memory_budget = null; return new ProcessorByteStream( $xml_processor, function ( $state ) use ( $xml_processor, $node_visitor_callback ) { @@ -737,6 +767,14 @@ public function append_bytes( string $next_chunk ) { if ( $this->parser_state === self::STATE_INCOMPLETE_INPUT ) { $this->parser_state = self::STATE_READY; } + + // Periodically flush the processed bytes to avoid high memory usage. + if ( + null !== $this->memory_budget && + strlen( $this->xml ) > $this->memory_budget + ) { + $this->flush_processed_xml(); + } return true; } @@ -754,20 +792,28 @@ public function flush_processed_xml() { // Flush updates $this->get_updated_xml(); - $processed_xml = substr( $this->xml, 0, $this->bytes_already_parsed ); - $unprocessed_xml = substr( $this->xml, $this->bytes_already_parsed ); - - $breadcrumbs = $this->get_breadcrumbs(); - $parser_context = $this->parser_context; - - $this->reset_state(); - - $this->xml = $unprocessed_xml; - $this->stack_of_open_elements = $breadcrumbs; - $this->parser_context = $parser_context; - $this->had_previous_chunks = true; + $unreferenced_bytes = $this->bytes_already_parsed; + if ( null !== $this->token_starts_at ) { + $unreferenced_bytes = min( $unreferenced_bytes, $this->token_starts_at ); + } - return $processed_xml; + $flushed_bytes = substr( $this->xml, 0, $unreferenced_bytes ); + $this->xml = substr( $this->xml, $unreferenced_bytes ); + $this->bookmarks = array(); + $this->lexical_updates = array(); + $this->seek_count = 0; + $this->had_previous_chunks = true; + $this->bytes_already_parsed -= $unreferenced_bytes; + if ( null !== $this->token_starts_at ) { + $this->token_starts_at -= $unreferenced_bytes; + } + if ( null !== $this->tag_name_starts_at ) { + $this->tag_name_starts_at -= $unreferenced_bytes; + } + if ( null !== $this->text_starts_at ) { + $this->text_starts_at -= $unreferenced_bytes; + } + return $flushed_bytes; } /** @@ -853,13 +899,15 @@ protected function parse_next_token() { return false; } + if ( self::STATE_INCOMPLETE_INPUT === $this->parser_state ) { + $this->bytes_already_parsed = $was_at; + return false; + } + // Ensure that the tag closes before the end of the document. - if ( - self::STATE_INCOMPLETE_INPUT === $this->parser_state || - $this->bytes_already_parsed >= strlen( $this->xml ) - ) { + if ( $this->bytes_already_parsed >= strlen( $this->xml ) ) { // Does this appropriately clear state (parsed attributes)? - $this->set_incomplete_input_or_parse_error(); + $this->mark_incomplete_input( 'Tag attributes were not closed before the end of the document.' ); $this->bytes_already_parsed = $was_at; return false; @@ -867,7 +915,7 @@ protected function parse_next_token() { $tag_ends_at = strpos( $this->xml, '>', $this->bytes_already_parsed ); if ( false === $tag_ends_at ) { - $this->set_incomplete_input_or_parse_error(); + $this->mark_incomplete_input( 'No > found at the end of a tag.' ); $this->bytes_already_parsed = $was_at; return false; @@ -877,7 +925,11 @@ protected function parse_next_token() { $this->last_error = self::ERROR_SYNTAX; _doing_it_wrong( __METHOD__, - __( 'Invalid closing tag encountered.' ), + sprintf( + // translators: %d is the byte offset of the invalid closing tag. + __( 'Invalid closing tag encountered at index %d.' ), + $this->bytes_already_parsed + ), 'WP_VERSION' ); return false; @@ -910,7 +962,7 @@ protected function parse_next_token() { // Closer not found, the document is incomplete. if ( false === $found_closer ) { - $this->set_incomplete_input_or_parse_error(); + $this->mark_incomplete_input( 'Closing tag missing.' ); $this->bytes_already_parsed = $was_at; return false; } @@ -1379,7 +1431,7 @@ private function parse_next_tag() { } if ( $at + 1 >= $doc_length ) { - $this->set_incomplete_input_or_parse_error(); + $this->mark_incomplete_input(); return false; } @@ -1392,6 +1444,10 @@ private function parse_next_tag() { * * https://www.w3.org/TR/xml/#NT-Name */ $tag_name_length = $this->parse_name( $at + 1 ); + if ( false === $tag_name_length ) { + return false; + } + if ( $tag_name_length > 0 ) { ++$at; $this->parser_state = self::STATE_MATCHED_TAG; @@ -1408,7 +1464,7 @@ private function parse_next_tag() { * the document. There is nothing left to parse. */ if ( $at + 1 >= $doc_length ) { - $this->set_incomplete_input_or_parse_error(); + $this->mark_incomplete_input( 'No more tags found before the end of the document.' ); return false; } @@ -1429,7 +1485,7 @@ private function parse_next_tag() { $closer_at = $at + 4; // If it's not possible to close the comment then there is nothing more to scan. if ( $doc_length <= $closer_at ) { - $this->set_incomplete_input_or_parse_error(); + $this->mark_incomplete_input( 'The document ends with a comment opener.' ); return false; } @@ -1441,7 +1497,7 @@ private function parse_next_tag() { while ( ++$closer_at < $doc_length ) { $closer_at = strpos( $xml, '--', $closer_at ); if ( false === $closer_at || $closer_at + 2 === $doc_length ) { - $this->set_incomplete_input_or_parse_error(); + $this->mark_incomplete_input( 'Unclosed comment.' ); return false; } @@ -1491,7 +1547,7 @@ private function parse_next_tag() { ) { $closer_at = strpos( $xml, ']]>', $at + 1 ); if ( false === $closer_at ) { - $this->set_incomplete_input_or_parse_error(); + $this->mark_incomplete_input( 'Unclosed CDATA section' ); return false; } @@ -1508,7 +1564,7 @@ private function parse_next_tag() { * Anything else here is either unsupported at this point or invalid * syntax. See the class-level @TODO annotations for more information. */ - $this->set_incomplete_input_or_parse_error(); + $this->mark_incomplete_input( 'Unsupported <! syntax.' ); return false; } @@ -1647,7 +1703,7 @@ private function parse_next_tag() { '?' === $xml[ $at + 1 ] ) { if ( $at + 4 >= $doc_length ) { - $this->set_incomplete_input_or_parse_error(); + $this->mark_incomplete_input(); return false; } @@ -1684,7 +1740,7 @@ private function parse_next_tag() { */ $closer_at = strpos( $xml, '?>', $at ); if ( false === $closer_at ) { - $this->set_incomplete_input_or_parse_error(); + $this->mark_incomplete_input(); return false; } @@ -1717,7 +1773,7 @@ private function parse_next_tag() { * This does not imply an incomplete parse; it indicates that there * can be nothing left in the document other than a #text node. */ - $this->set_incomplete_input_or_parse_error(); + $this->mark_incomplete_input(); $this->token_starts_at = $was_at; $this->token_length = $doc_length - $was_at; $this->text_starts_at = $was_at; @@ -1736,7 +1792,7 @@ private function parse_next_attribute() { // Skip whitespace and slashes. $this->bytes_already_parsed += strspn( $this->xml, " \t\f\r\n/", $this->bytes_already_parsed ); if ( $this->bytes_already_parsed >= strlen( $this->xml ) ) { - $this->set_incomplete_input_or_parse_error(); + $this->mark_incomplete_input(); return false; } @@ -1763,7 +1819,7 @@ private function parse_next_attribute() { ++$this->bytes_already_parsed; $this->skip_whitespace(); if ( $this->bytes_already_parsed >= strlen( $this->xml ) ) { - $this->set_incomplete_input_or_parse_error(); + $this->mark_incomplete_input(); return false; } switch ( $this->xml[ $this->bytes_already_parsed ] ) { @@ -1787,7 +1843,7 @@ private function parse_next_attribute() { $attribute_end = $value_start + $value_length + 1; if ( $attribute_end - 1 >= strlen( $this->xml ) ) { - $this->set_incomplete_input_or_parse_error(); + $this->mark_incomplete_input(); return false; } @@ -1814,7 +1870,7 @@ private function parse_next_attribute() { } if ( $attribute_end >= strlen( $this->xml ) ) { - $this->set_incomplete_input_or_parse_error(); + $this->mark_incomplete_input(); return false; } @@ -1853,36 +1909,119 @@ private function skip_whitespace() { $this->bytes_already_parsed += strspn( $this->xml, " \t\f\r\n", $this->bytes_already_parsed ); } - // Describes the first character of the attribute name: - // NameStartChar ::= ":" | [A-Z] | "_" | [a-z] | [#xC0-#xD6] | [#xD8-#xF6] | [#xF8-#x2FF] | [#x370-#x37D] | [#x37F-#x1FFF] | [#x200C-#x200D] | [#x2070-#x218F] | [#x2C00-#x2FEF] | [#x3001-#xD7FF] | [#xF900-#xFDCF] | [#xFDF0-#xFFFD] | [#x10000-#xEFFFF] - // See https://www.w3.org/TR/xml/#NT-Name - const NAME_START_CHAR_PATTERN = ':a-z_A-Z\x{C0}-\x{D6}\x{D8}-\x{F6}\x{F8}-\x{2FF}\x{370}-\x{37D}\x{37F}-\x{1FFF}\x{200C}-\x{200D}\x{2070}-\x{218F}\x{2C00}-\x{2FEF}\x{3001}-\x{D7FF}\x{F900}-\x{FDCF}\x{FDF0}-\x{FFFD}\x{10000}-\x{EFFFF}'; - const NAME_CHAR_PATTERN = '\-\.0-9\x{B7}\x{0300}-\x{036F}\x{203F}-\x{2040}:a-z_A-Z\x{C0}-\x{D6}\x{D8}-\x{F6}\x{F8}-\x{2FF}\x{370}-\x{37D}\x{37F}-\x{1FFF}\x{200C}-\x{200D}\x{2070}-\x{218F}\x{2C00}-\x{2FEF}\x{3001}-\x{D7FF}\x{F900}-\x{FDCF}\x{FDF0}-\x{FFFD}\x{10000}-\x{EFFFF}'; + /** + * Parses a Name token starting at $offset + * + * Name ::= NameStartChar (NameChar)* + * + * @param int $offset + * @return int + */ private function parse_name( $offset ) { - if ( 1 !== preg_match( - '~[' . self::NAME_START_CHAR_PATTERN . ']~Ssu', - $this->xml[ $offset ], - $matches - ) ) { - return 0; - } + $name_byte_length = 0; + while ( true ) { + /** + * Parse the next unicode codepoint. + * + * We use a custom UTF-8 decoder here. No other method + * is reliable and available enough to depend on it in + * WordPress core: + * + * * mb_ord() – is not available on all hosts. + * * iconv_substr() – is not available on all hosts. + * * preg_match() – can fail with PREG_BAD_UTF8_ERROR when the input + * contains an incomplete UTF-8 byte sequence – even + * when that sequence comes after a valid match. This + * failure mode cannot be reproduced with just any string. + * The runtime must be in a specific state. It's unclear + * how to reliably reproduce this failure mode in a + * unit test. + * + * Performance-wise, character-by-character processing via utf8_codepoint_at + * is still much faster than relying on preg_match(). The mbstring extension + * is likely faster. It would be interesting to evaluate the performance + * and prefer mbstring whenever it's available. + */ + $codepoint = utf8_codepoint_at( + $this->xml, + $offset + $name_byte_length, + $bytes_parsed + ); - $name_length = 1; + if ( + null === $codepoint || + ! $this->is_valid_name_codepoint( $codepoint, $name_byte_length === 0 ) + ) { + break; + } - // Consume the rest of the name - preg_match( - '~\G([' . self::NAME_CHAR_PATTERN . ']+)~Ssu', - $this->xml, - $matches, - 0, - $offset + 1 - ); + $name_byte_length += $bytes_parsed; + } + return $name_byte_length; + } - if ( is_array( $matches ) && count( $matches ) > 0 ) { - $name_length += strlen( $matches[0] ); + private function is_valid_name_codepoint( $codepoint, $test_as_first_character = false ) { + // Test against the NameStartChar pattern: + // NameStartChar ::= ":" | [A-Z] | "_" | [a-z] | [#xC0-#xD6] | [#xD8-#xF6] | [#xF8-#x2FF] | [#x370-#x37D] | [#x37F-#x1FFF] | [#x200C-#x200D] | [#x2070-#x218F] | [#x2C00-#x2FEF] | [#x3001-#xD7FF] | [#xF900-#xFDCF] | [#xFDF0-#xFFFD] | [#x10000-#xEFFFF] + // See https://www.w3.org/TR/xml/#NT-Name + if ( + // : + 58 === $codepoint || + // _ + 95 === $codepoint || + // A-Z + ( 65 <= $codepoint && 90 >= $codepoint ) || + // a-z + ( 97 <= $codepoint && 122 >= $codepoint ) || + // [#xC0-#xD6] + ( 192 <= $codepoint && 214 >= $codepoint ) || + // [#xD8-#xF6] + ( 216 <= $codepoint && 246 >= $codepoint ) || + // [#xF8-#x2FF] + ( 248 <= $codepoint && 511 >= $codepoint ) || + // [#x370-#x37D] + ( 560 <= $codepoint && 573 >= $codepoint ) || + // [#x37F-#x1FFF] + ( 895 <= $codepoint && 4095 >= $codepoint ) || + // [#x200C-#x200D] + ( 5120 <= $codepoint && 5125 >= $codepoint ) || + // [#x2070-#x218F] + ( 8304 <= $codepoint && 8575 >= $codepoint ) || + // [#x2C00-#x2FEF] + ( 11264 <= $codepoint && 12287 >= $codepoint ) || + // [#x3001-#xD7FF] + ( 12288 <= $codepoint && 55295 >= $codepoint ) || + // [#xF900-#xFDCF] + ( 60160 <= $codepoint && 60671 >= $codepoint ) || + // [#xFDF0-#xFFFD] + ( 65536 <= $codepoint && 65543 >= $codepoint ) || + // [#x10000-#xEFFFF] + ( 1048576 <= $codepoint && 1114111 >= $codepoint ) + ) { + return true; } - return $name_length; + if ( $test_as_first_character ) { + return false; + } + + // Test against the NameChar pattern: + // NameChar ::= NameStartChar | "-" | "." | [0-9] | #xB7 | [#x0300-#x036F] | [#x203F-#x2040] + // See https://www.w3.org/TR/xml/#NT-Name + return ( + // "-" + 45 === $codepoint || + // "." + 46 === $codepoint || + // [0-9] + ( 48 <= $codepoint && 57 >= $codepoint ) || + // #xB7 + 183 === $codepoint || + // [#x0300-#x036F] + ( 480 <= $codepoint && 559 >= $codepoint ) || + // [#x203F-#x2040] + ( 5151 <= $codepoint && 5152 >= $codepoint ) + ); } /** @@ -1932,25 +2071,6 @@ private function after_tag() { $this->attributes = array(); } - protected function reset_state() { - $this->xml = ''; - $this->parser_state = self::STATE_READY; - $this->bytes_already_parsed = 0; - $this->token_starts_at = null; - $this->token_length = null; - $this->tag_name_starts_at = null; - $this->tag_name_length = null; - $this->text_starts_at = null; - $this->text_length = null; - $this->is_closing_tag = null; - $this->last_error = null; - $this->attributes = array(); - $this->bookmarks = array(); - $this->lexical_updates = array(); - $this->seek_count = 0; - $this->had_previous_chunks = false; - } - /** * Applies lexical updates to XML document. * @@ -2377,6 +2497,30 @@ public function is_tag_closer() { ); } + /** + * Indicates if the current tag token is a tag opener. + * + * Example: + * + * $p = new WP_XML_Processor( '<wp:content></wp:content>' ); + * $p->next_token(); + * $p->is_tag_opener() === true; + * + * $p->next_token(); + * $p->is_tag_opener() === false; + * + * @since WP_VERSION + * + * @return bool Whether the current tag is a tag closer. + */ + public function is_tag_opener() { + return ( + self::STATE_MATCHED_TAG === $this->parser_state && + ! $this->is_closing_tag && + ! $this->is_empty_element() + ); + } + /** * Indicates the kind of matched token, if any. * @@ -2848,7 +2992,7 @@ private function step_in_prolog( $node_to_process = self::PROCESS_NEXT_NODE ) { // XML requires a root element. If we've reached the end of data in the prolog stage, // before finding a root element, then the document is incomplete. if ( WP_XML_Processor::STATE_COMPLETE === $this->parser_state ) { - $this->set_incomplete_input_or_parse_error(); + $this->mark_incomplete_input(); return false; } // Do not step if we paused due to an incomplete input. @@ -2922,7 +3066,12 @@ private function step_in_element( $node_to_process = self::PROCESS_NEXT_NODE ) { $this->last_error = self::ERROR_SYNTAX; _doing_it_wrong( __METHOD__, - __( 'The closing tag did not match the opening tag.' ), + sprintf( + // translators: %1$s is the name of the closing HTML tag, %2$s is the name of the opening HTML tag. + __( 'The closing tag "%1$s" did not match the opening tag "%2$s".' ), + $tag_name, + $popped + ), 'WP_VERSION' ); return false; @@ -3110,15 +3259,17 @@ private function push_open_element( $tag_name ) { ); } - private function set_incomplete_input_or_parse_error() { + private function mark_incomplete_input( + $error_message = 'Unexpected syntax encountered.' + ) { if ( $this->expecting_more_input ) { $this->parser_state = self::STATE_INCOMPLETE_INPUT; - } else { - $this->parser_state = self::STATE_INVALID_DOCUMENT; - $this->last_error = self::ERROR_SYNTAX; - // @TODO: Add a more specific error message. - _doing_it_wrong( __METHOD__, 'Unexpected syntax encountered.', 'WP_VERSION' ); + return; } + + $this->parser_state = self::STATE_INVALID_DOCUMENT; + $this->last_error = self::ERROR_SYNTAX; + _doing_it_wrong( __METHOD__, $error_message, 'WP_VERSION' ); } /** @@ -3316,4 +3467,18 @@ private function set_incomplete_input_or_parse_error() { * @var string */ const PROCESS_CURRENT_NODE = 'process-current-node'; + + + /** + * Unlock code that must be passed into the constructor to create this class. + * + * This class extends the WP_HTML_Tag_Processor, which has a public class + * constructor. Therefore, it's not possible to have a private constructor here. + * + * This unlock code is used to ensure that anyone calling the constructor is + * doing so with a full understanding that it's intended to be a private API. + * + * @access private + */ + const CONSTRUCTOR_UNLOCK_CODE = 'Use WP_HTML_Processor::create_fragment() instead of calling the class constructor directly.'; } diff --git a/packages/playground/data-liberation/tests/WPWXRReaderTests.php b/packages/playground/data-liberation/tests/WPWXRReaderTests.php new file mode 100644 index 0000000000..8b332cde5b --- /dev/null +++ b/packages/playground/data-liberation/tests/WPWXRReaderTests.php @@ -0,0 +1,534 @@ +<?php + +use PHPUnit\Framework\TestCase; + +class WPWXRReaderTests extends TestCase { + + /** + * @dataProvider preexisting_wxr_files_provider + */ + public function test_does_not_crash_when_parsing_preexisting_wxr_files_as_string($path, $expected_entitys) { + $wxr = WP_WXR_Reader::from_string(file_get_contents($path)); + + $found_entities = 0; + while( $wxr->next_entity() ) { + ++$found_entities; + } + + $this->assertEquals($expected_entitys, $found_entities); + } + + /** + * @dataProvider preexisting_wxr_files_provider + */ + public function test_does_not_crash_when_parsing_preexisting_wxr_files_as_stream($path, $expected_entitys) { + $stream = fopen($path, 'r'); + $wxr = WP_WXR_Reader::from_stream(); + $found_entities = 0; + while(true) { + $chunk = fread($stream, 100); + if(false === $chunk || '' === $chunk) { + break; + } + + $wxr->append_bytes($chunk); + while(true === $wxr->next_entity()) { + ++$found_entities; + } + } + + $this->assertEquals($expected_entitys, $found_entities); + } + + public function preexisting_wxr_files_provider() { + return [ + [__DIR__ . '/wxr/a11y-unit-test-data.xml', 1043], + [__DIR__ . '/wxr/crazy-cdata-escaped.xml', 5], + [__DIR__ . '/wxr/crazy-cdata.xml', 5], + [__DIR__ . '/wxr/invalid-version-tag.xml', 57], + [__DIR__ . '/wxr/missing-version-tag.xml', 57], + [__DIR__ . '/wxr/slashes.xml', 9], + [__DIR__ . '/wxr/small-export.xml', 68], + [__DIR__ . '/wxr/test-serialized-postmeta-no-cdata.xml', 5], + [__DIR__ . '/wxr/test-serialized-postmeta-with-cdata.xml', 7], + [__DIR__ . '/wxr/test-utw-post-meta-import.xml', 5], + [__DIR__ . '/wxr/theme-unit-test-data.xml', 1146], + [__DIR__ . '/wxr/valid-wxr-1.0.xml', 32], + [__DIR__ . '/wxr/valid-wxr-1.1.xml', 11], + [__DIR__ . '/wxr/woocommerce-demo-products.xml', 975], + [__DIR__ . '/wxr/10MB.xml', 16442], + ]; + } + + + public function test_simple_wxr() { + $importer = WP_WXR_Reader::from_string(file_get_contents(__DIR__ . '/fixtures/wxr-simple.xml')); + $this->assertTrue( $importer->next_entity() ); + $this->assertEquals( + 'site_option', + $importer->get_entity_type() + ); + $this->assertEquals( + [ + 'option_name' => 'blogname', + 'option_value' => 'My WordPress Website', + ], + $importer->get_entity_data() + ); + + $this->assertTrue( $importer->next_entity() ); + $this->assertEquals( + 'site_option', + $importer->get_entity_type() + ); + $this->assertEquals( + [ + 'option_name' => 'siteurl', + 'option_value' => 'https://playground.internal/path', + ], + $importer->get_entity_data() + ); + + $this->assertTrue( $importer->next_entity() ); + $this->assertEquals( + [ + 'option_name' => 'home', + 'option_value' => 'https://playground.internal/path', + ], + $importer->get_entity_data() + ); + + $this->assertTrue( $importer->next_entity() ); + $this->assertEquals( + [ + 'user_login' => 'admin', + 'user_email' => 'admin@localhost.com', + 'display_name' => 'admin', + 'first_name' => '', + 'last_name' => '', + 'ID' => 1 + ], + $importer->get_entity_data() + ); + + $this->assertTrue( $importer->next_entity() ); + $this->assertEquals( + [ + 'post_title' => '"The Road Not Taken" by Robert Frost', + 'guid' => 'https://playground.internal/path/?p=1', + 'link' => 'https://playground.internal/path/?p=1', + 'post_date' => '2024-06-05 16:04:48', + 'post_published_at' => 'Wed, 05 Jun 2024 16:04:48 +0000', + 'post_author' => 'admin', + 'post_excerpt' => '', + 'post_content' => '<!-- wp:paragraph --> +<p>Two roads diverged in a yellow wood,<br>And sorry I could not travel both</p> +<!-- /wp:paragraph --> + +<!-- wp:paragraph --> +<p> +<a href="https://playground.internal/path/one">One</a> seemed great, but <a href="https://playground.internal/path-not-taken">the other</a> seemed great too. +There was also a <a href="https://w.org">third</a> option, but it was not as great. + +playground.internal/path/one was the best choice. +https://playground.internal/path-not-taken was the second best choice. +</p> +<!-- /wp:paragraph -->', + 'ID' => '10', + 'post_date_gmt' => '2024-06-05 16:04:48', + 'post_modified' => '2024-06-10 12:28:55', + 'post_modified_gmt' => '2024-06-10 12:28:55', + 'comment_status' => 'open', + 'ping_status' => 'open', + 'post_name' => 'hello-world', + 'post_status' => 'publish', + 'post_parent' => '0', + 'menu_order' => '0', + 'post_type' => 'post', + 'post_password' => '', + 'is_sticky' => '0', + 'terms' => [ + [ 'taxonomy' => 'category', 'slug' => 'uncategorized', 'description' => 'Uncategorized' ], + ], + ], + $importer->get_entity_data() + ); + + $this->assertTrue( $importer->next_entity() ); + $this->assertEquals( + [ + 'meta_key' => '_pingme', + 'meta_value' => '1', + ], + $importer->get_entity_data() + ); + + $this->assertTrue( $importer->next_entity() ); + $this->assertEquals( + [ + 'meta_key' => '_encloseme', + 'meta_value' => '1', + ], + $importer->get_entity_data() + ); + + $this->assertFalse($importer->next_entity()); + } + + public function test_attachments() { + $importer = WP_WXR_Reader::from_string(<<<XML + <?xml version="1.0" encoding="UTF-8"?> + <rss> + <channel> + <item> + <title>vneck-tee-2.jpg + https://stylish-press.wordpress.org/?attachment_id=31 + Wed, 16 Jan 2019 13:01:56 +0000 + shopmanager + https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/vneck-tee-2.jpg + + + + 31 + 2019-01-16 13:01:56 + 2019-01-16 13:01:56 + open + closed + vneck-tee-2-jpg + inherit + 6 + 0 + attachment + + 0 + https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/vneck-tee-2.jpg + + _wc_attachment_source + + + + + + XML + ); + $this->assertTrue( $importer->next_entity() ); + $this->assertEquals( + 'post', + $importer->get_entity_type() + ); + $this->assertEquals( + [ + 'post_title' => 'vneck-tee-2.jpg', + 'ID' => '31', + 'guid' => 'https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/vneck-tee-2.jpg', + 'link' => 'https://stylish-press.wordpress.org/?attachment_id=31', + 'post_published_at' => 'Wed, 16 Jan 2019 13:01:56 +0000', + 'post_date' => '2019-01-16 13:01:56', + 'post_date_gmt' => '2019-01-16 13:01:56', + 'post_author' => 'shopmanager', + 'post_excerpt' => '', + 'comment_status' => 'open', + 'ping_status' => 'closed', + 'post_name' => 'vneck-tee-2-jpg', + 'post_status' => 'inherit', + 'post_parent' => '6', + 'menu_order' => '0', + 'post_type' => 'attachment', + 'attachment_url' => 'https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/vneck-tee-2.jpg', + 'post_content' => '', + 'is_sticky' => '0', + ], + $importer->get_entity_data() + ); + + $this->assertTrue( $importer->next_entity() ); + $this->assertEquals( + 'post_meta', + $importer->get_entity_type() + ); + $this->assertEquals( + [ + 'meta_key' => '_wc_attachment_source', + 'meta_value' => 'https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/vneck-tee-2.jpg', + ], + $importer->get_entity_data() + ); + } + + public function test_terms() { + $importer = WP_WXR_Reader::from_string(<< + + + + + + + + + + + + XML + ); + $this->assertTrue( $importer->next_entity() ); + $this->assertEquals( + 'term', + $importer->get_entity_type() + ); + $this->assertEquals( + [ + 'term_id' => '9', + 'taxonomy' => 'slider_category', + 'slug' => 'fullscreen_slider', + 'parent' => '', + 'name' => 'fullscreen_slider', + ], + $importer->get_entity_data() + ); + } + + public function test_category() { + $importer = WP_WXR_Reader::from_string(<< + + + + uncategorized + + + + + + XML + ); + $this->assertTrue( $importer->next_entity() ); + $this->assertEquals( + 'category', + $importer->get_entity_type() + ); + $this->assertEquals( + [ + 'slug' => 'uncategorized', + 'parent' => '', + 'name' => 'Uncategorized', + 'taxonomy' => 'category', + ], + $importer->get_entity_data() + ); + } + + public function test_tag_string() { + $wxr = WP_WXR_Reader::from_string( + << + + + + 651 + articles + + + + + + XML + ); + $this->assertTrue( $wxr->next_entity() ); + $this->assertEquals( + 'tag', + $wxr->get_entity_type() + ); + $this->assertEquals( + [ + 'term_id' => '651', + 'slug' => 'articles', + 'name' => 'Articles', + 'description' => 'Tags posts about Articles.', + 'taxonomy' => 'post_tag', + ], + $wxr->get_entity_data() + ); + } + + public function test_tag_streaming() { + $wxr = << + + + + 651 + articles + for + + + + + XML; + $chunks = str_split($wxr, 10); + + $wxr = WP_WXR_Reader::from_stream(); + while(true) { + if(true === $wxr->next_entity()) { + break; + } + + if($wxr->is_paused_at_incomplete_input()) { + $chunk = array_shift($chunks); + $wxr->append_bytes($chunk); + continue; + } else { + break; + } + } + + $this->assertEquals( + 'tag', + $wxr->get_entity_type() + ); + $this->assertEquals( + [ + 'term_id' => '651', + 'slug' => 'articles', + 'name' => 'Articles for everyone', + 'description' => 'Tags posts about Articles.', + 'taxonomy' => 'post_tag', + ], + $wxr->get_entity_data() + ); + } + + public function test_parse_comment() { + $wxr = WP_WXR_Reader::from_string(<< + + + + My post! + + 167 + + anon@example.com + + 59.167.157.3 + 2007-09-04 10:49:28 + 2007-09-04 00:49:28 + + 1 + + 0 + 0 + + _wp_karma + + + + + + + XML + ); + $this->assertTrue( $wxr->next_entity() ); + $this->assertEquals( + 'post', + $wxr->get_entity_type() + ); + $this->assertEquals( + [ + 'post_title' => 'My post!', + ], + $wxr->get_entity_data() + ); + + $this->assertTrue( $wxr->next_entity() ); + $this->assertEquals( + 'comment', + $wxr->get_entity_type() + ); + $this->assertEquals( + [ + 'comment_id' => '167', + 'comment_approved' => '1', + 'comment_author' => 'Anon', + 'comment_author_email' => 'anon@example.com', + 'comment_author_IP' => '59.167.157.3', + 'comment_user_id' => '0', + 'comment_date' => '2007-09-04 10:49:28', + 'comment_date_gmt' => '2007-09-04 00:49:28', + 'comment_content' => 'Anonymous comment.', + 'comment_parent' => '0', + ], + $wxr->get_entity_data() + ); + + $this->assertTrue( $wxr->next_entity() ); + $this->assertEquals( + 'comment_meta', + $wxr->get_entity_type() + ); + $this->assertEquals( + [ + 'meta_key' => '_wp_karma', + 'meta_value' => '1', + ], + $wxr->get_entity_data() + ); + + $this->assertFalse( $wxr->next_entity() ); + } + + public function test_retains_last_ids() { + $wxr = WP_WXR_Reader::from_string(<< + + + + My post! + 10 + 0 + + 167 + 0 + + + 168 + 0 + + + + 11 + 0 + + 169 + 0 + + + + + XML + ); + $this->assertTrue( $wxr->next_entity() ); + $this->assertEquals('post', $wxr->get_entity_type()); + $this->assertEquals( 10, $wxr->get_last_post_id() ); + + $this->assertTrue( $wxr->next_entity() ); + $this->assertEquals('comment', $wxr->get_entity_type()); + $this->assertEquals( 10, $wxr->get_last_post_id() ); + $this->assertEquals( 167, $wxr->get_last_comment_id() ); + + $this->assertTrue( $wxr->next_entity() ); + $this->assertEquals('comment', $wxr->get_entity_type()); + $this->assertEquals( 10, $wxr->get_last_post_id() ); + $this->assertEquals( 168, $wxr->get_last_comment_id() ); + + $this->assertTrue( $wxr->next_entity() ); + $this->assertEquals('post', $wxr->get_entity_type()); + $this->assertEquals( 11, $wxr->get_last_post_id() ); + + $this->assertTrue( $wxr->next_entity() ); + $this->assertEquals('comment', $wxr->get_entity_type()); + $this->assertEquals( 11, $wxr->get_last_post_id() ); + $this->assertEquals( 169, $wxr->get_last_comment_id() ); + } + +} diff --git a/packages/playground/data-liberation/tests/WPXMLProcessorTests.php b/packages/playground/data-liberation/tests/WPXMLProcessorTests.php index 974038ce73..aa40d3b897 100644 --- a/packages/playground/data-liberation/tests/WPXMLProcessorTests.php +++ b/packages/playground/data-liberation/tests/WPXMLProcessorTests.php @@ -17,6 +17,10 @@ class WPXMLProcessorTests extends TestCase { const XML_WITH_CLASSES = 'Text'; const XML_MALFORMED = 'Back to notifications'; + public function beforeEach() { + $GLOBALS['_doing_it_wrong_messages'] = []; + } + /** * @ticket 61365 * @@ -1677,4 +1681,41 @@ public function test_unclosed_root_yields_incomplete_input() { } $this->assertTrue( $processor->is_paused_at_incomplete_input(), 'Did not indicate that the XML input was incomplete.' ); } + + /** + * @ticket 61365 + * + * @covers WP_XML_Processor::next_token + */ + public function test_text_nodes_are_not_exposed_until_their_full_content_is_available() { + $processor = WP_XML_Processor::from_stream( + 'text' + ); + $this->assertTrue( $processor->next_tag(), 'Did not find a tag.' ); + $this->assertFalse( $processor->next_token(), 'Found a text node before it was fully available.' ); + $processor->append_bytes( ', more text' ); + $this->assertFalse( $processor->next_token(), 'Found a text node before it was fully available.' ); + $processor->append_bytes( ', and even more text' ); + $this->assertTrue( $processor->next_token(), 'Did not find a tag after appending more text.' ); + $this->assertEquals( 'text, more text, and even more text', $processor->get_modifiable_text(), 'Did not find the expected text.' ); + } + + /** + * @ticket 61365 + * + * @covers WP_XML_Processor::next_token + */ + public function test_escaped_cdata() { + $processor = WP_XML_Processor::from_string( + 'The CDATA section looks as follows: ]]>' + ); + $this->assertTrue( $processor->next_token(), 'Did not find a tag.' ); + $this->assertTrue( $processor->next_token(), 'Did not find a text node.' ); + $this->assertEquals( 'The CDATA section looks as follows: ', $processor->get_modifiable_text(), 'Did not find the expected text.' ); + $this->assertTrue( $processor->next_token(), 'Did not find a CDATA node.' ); + $this->assertEquals( 'get_modifiable_text(), 'Did not find the expected text.' ); + $this->assertTrue( $processor->next_token(), 'Did not find the second CDATA node.' ); + $this->assertEquals( '>', $processor->get_modifiable_text(), 'Did not find the expected text.' ); + } + } \ No newline at end of file diff --git a/packages/playground/data-liberation/tests/wxr/10MB.xml b/packages/playground/data-liberation/tests/wxr/10MB.xml new file mode 100644 index 0000000000..b73e60115d --- /dev/null +++ b/packages/playground/data-liberation/tests/wxr/10MB.xml @@ -0,0 +1,196499 @@ + + + + + +Theme Unit Test Data +https://wpthemetestdata.wordpress.com +Just another WordPress website with a purposefully really long description +Tue, 27 Jan 2015 14:56:57 +0000 +en +1.2 +https://wordpress.com/ +https://wpthemetestdata.wordpress.com + + themedemos + themeshaperwp+demos@gmail.com + + + + + + + + + + + + + 12 + + + + + + 2835016 + aciform + + + + + 1020423 + antiquarianism + + + + + 33280 + arrangement + + + + + 2720660 + asmodeus + + + + + 193 + + + + + + + 1356 + blogroll + + + + + 714120 + broder + + + + + 30256 + buying + + + + + 111995 + cat-a + + + + + 111996 + cat-b + + + + + 111997 + cat-c + + + + + 62501 + championship + + + + + 2835020 + chastening + + + + + 192 + + + + + + + 96553 + clerkship + + + + + 2834984 + disinclination + + + + + 1454829 + disinfection + + + + + 167368 + dispatch + + + + + 2834987 + echappee + + + + + 161095136 + edge-case-2 + + + + + + 2834990 + enphagy + + + + + 2834992 + equipollent + + + + + 2835022 + fatuity + + + + + 3128700 + foo-a + + + + + 3128707 + foo-parent + + + + + 2835023 + gaberlunzie + + + + + 2835026 + illtempered + + + + + 315209 + insubordination + + + + + 376018 + lender + + + + + 4675 + markup + + + + + + 329026 + media-2 + + + + + + 2835029 + monosyllable + + + + + 2835030 + packthread + + + + + 2835031 + palter + + + + + 2834994 + papilionaceous + + + + + 54150 + parent + + + + + 6004933 + parent-category + + + + + + 1922221 + personable + + + + + 44090582 + post-formats + + + + + + 2834996 + propylaeum + + + + + 177992 + pustule + + + + + 2835000 + quartern + + + + + 34975 + scholarship + + + + + 2835035 + selfconvicted + + + + + 2835006 + showshoe + + + + + 2835007 + sloyd + + + + + 30849 + sub + aciform + + + + 2835009 + sublunary + + + + + 2016057 + tamtam + + + + + 33328006 + template-2 + + + + + + 1 + uncategorized + + + + + 54090 + unpublished + + + + + + 2835037 + weakhearted + + + + + 312342 + ween + + + + + 1327706 + wellhead + + + + + 2835043 + wellintentioned + + + + + 2835045 + whetstone + + + + + 67899 + years + + + + + 1043326 + child-1 + parent + + + + 1043329 + child-2 + child-1 + + + + 158081316 + child-category-01 + parent-category + + + + + 158081319 + child-category-02 + parent-category + + + + + 158081321 + child-category-03 + parent-category + + + + + 158081323 + child-category-04 + parent-category + + + + + 158081325 + child-category-05 + parent-category + + + + + 3128710 + foo-a-foo-parent + foo-parent + + + + 57037077 + grandchild-category + child-category-03 + + + + + 695220 + 8bit + + + + + 38590737 + alignment-2 + + + + 651 + articles + + + + + 6935 + aside + + + + 413 + audio + + + + 36446125 + captions-2 + + + + 1656 + categories + + + + 4870 + chat + + + + 2834913 + chattels + + + + 2834914 + cienaga + + + + 2834899 + claycold + + + + 12525 + codex + + + + 1861347 + comments-2 + + + + 35181409 + content-2 + + + + 124338 + crushing + + + + 169 + css + + + + 385439 + depo + + + + 2834915 + dinarchy + + + + 2834900 + doolie + + + + 13207917 + dowork + + + + + 16894899 + edge-case + + + + 161043722 + embeds-2 + + + + 2834901 + energumen + + + + 781363 + ephialtes + + + + 2834902 + eudiometer + + + + 31262653 + excerpt-2 + + + + 112207 + fail + + + + + 8923091 + featured-image + + + + 2834916 + figuriste + + + + 2962 + filler + + + + 44189092 + formatting-2 + + + + 109004 + ftw + + + + 272 + fun + + + + + 3263 + gallery + + + + 1549412 + goes-here + + + + 2834917 + habergeon + + + + 137419 + hapless + + + + 2834918 + hartshorn + + + + 2834919 + hostility-impregnability + + + + 647 + html + + + + 686 + image + + + + 2834920 + impropriation + + + + 66451 + is + + + + 76655687 + jetpack-2 + + + + 2834903 + knave + + + + 26060 + layout + + + + 2717 + link + + + + 35081376 + lists-2 + + + + 118729 + lorem + + + + 3785 + love + + + + + 38696790 + markup-2 + + + + 292 + media + + + + 392241 + misinformed + + + + 2834904 + moil + + + + 11212 + more + + + + 2834921 + mornful + + + + 57948 + mothership + + + + + 1560278 + mustread + + + + + 36752930 + nailedit + + + + + 239264 + outlaw + + + + 697683 + pagination + + + + 2834905 + pamphjlet + + + + 39214087 + password-2 + + + + 835 + pictures + + + + 161099149 + pingbacks-2 + + + + 1042764 + pneumatics + + + + 2834906 + portly-portreeve + + + + 1187 + post + + + + 44090582 + post-formats + + + + 2834922 + precipitancy + + + + 300925 + privation + + + + 16889 + programme + + + + 56714 + psychological + + + + 2834907 + puncher + + + + 3099 + quote + + + + 2834908 + ramose + + + + 40586 + read-more + + + + 71229 + readability + + + + 531008 + renegade + + + + 2834909 + retrocede + + + + 412776 + shortcode + + + + 2834923 + stagnation-unhorsed + + + + 472597 + standard-2 + + + + 577 + status + + + + 45997922 + sticky-2 + + + + 4668 + success + + + + + 655802 + swagger + + + + + 1790856 + tag-a + + + + 1790857 + tag-b + + + + 1790858 + tag-c + + + + 22652 + tag1 + + + + 22653 + tag2 + + + + 359495 + tag3 + + + + 1502 + tags + + + + + 11867 + template + + + + 5117 + text + + + + 14347 + the-man + + + + 2834910 + thunderheaded + + + + 1235460 + tiled + + + + 1653 + title + + + + 64903049 + trackbacks-2 + + + + 11320090 + twitter-2 + + + + 2834911 + unculpable + + + + 207758 + unseen + + + + + 412 + video + + + + 20117770 + videopress + + + + 2834912 + withered-brandnew + + + + 33 + wordpress + + + + + 15787590 + wordpress-tv + + + + 2834924 + xanthopsia + + + + 12 + + + + + + + 161107798 + nav_menu + all-pages + + + + 161101812 + nav_menu + all-pages-flat + + + + 158085404 + nav_menu + empty-menu + + + + 161104374 + nav_menu + short + + + + 158084196 + nav_menu + testing-menu + + + + + + + + + +https://wordpress.com/ + + https://s2.wp.com/i/buttonw-com.png + » Theme Unit Test Data + https://wpthemetestdata.wordpress.com + + + <![CDATA[WP 6.1 Font size scale]]> + https://wpthemetestdata.wordpress.com/wp-6-1-font-size-scale/ + Mon, 16 Jan 2023 07:08:31 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-font-size-scale/ + + +

This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

+ + + +

Small H2 Heading

+ + + +

Medium H2 Heading

+ + + +

Large H2 Heading

+ + + +

Extra Large H2 Heading

+ + + +

Small paragraph

+ + + +

Medium paragraph

+ + + +

Large paragraph

+ + + +

Extra Large paragraph

+]]> +
+ + 163 + + + + + + + + + 0 + 0 + + + 0 + + + + + + +
+ + <![CDATA[WP 6.1 spacing presets]]> + https://wpthemetestdata.wordpress.com/wp-6-1-spacing-presets/ + Mon, 16 Jan 2023 06:56:53 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-spacing-presets/ + + +

This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

+ + + +

On this page, some group blocks have border or background color set to increase visibility.

+ + + +
+

This group has a no background color and no additional spacing set.

+
+ + + +
+

This group has a background color but no additional spacing set.

+
+ + + +
+

This group has a 1px border and padding preset 1

+
+ + + +
+

This group has padding preset 1

+
+ + + +
+

This group has a 1px border and padding preset 2

+
+ + + +
+

This group has a background color and padding preset 3

+
+ + + +
+

This group has a background color and padding preset 4

+
+ + + +
+

This group has a background color and padding preset 5

+
+ + + +
+

This group has a background color and padding preset 6

+
+ + + +
+

This group has a background color and padding preset 7

+
+ + + +
+

This group has padding preset 7

+
+ + + +
+

This group has a background color and margin preset 1

+
+ + + +
+

This group has a background color and margin preset 2

+
+ + + +
+

This group has a background color and margin preset 3

+
+ + + +
+

This group has a background color and margin preset 4

+
+ + + +
+

This group has a background color and margin preset 5

+
+ + + +
+

This group has a background color and margin preset 6

+
+ + + +
+

This group has a background color and margin preset 7

+
+ + + +
+

This group has a 1px border, padding preset 4 and margin preset 4

+
+ + + +
+

This group has padding preset 4 and margin preset 4

+
+]]>
+ + 150 + + + + + + + + + 0 + 0 + + + 0 + + + + + + +
+ + <![CDATA[WP 6.1 Theme block category]]> + https://wpthemetestdata.wordpress.com/wp-6-1-theme-block-category/ + Fri, 13 Jan 2023 18:38:05 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-theme-block-category/ + + +

This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

+ + + +

Navigation block with page list:

+ + + + + + + +

Site logo:

+ + + + + +

Site title:

+ + + + + +

Tagline block:

+ + + + + +

Query loop "Title & Date" variation:

+ + + +
+ + + + + + + + + + + + + + + +

+ +
+ + + +

Query loop "Title & Excerpt" variation:

+ + + +
+ + + + + + + + + + + + + + + +

+ +
+ + + +

Query loop "Title, Date & Excerpt" variation:

+ + + +
+ + + + + + + + + + + + + + + + + +

+ +
+ + + +

Query loop "Image, Date & Title" variation:

+ + + +
+ + + + + + + + + + + + + + + + + +

+ +
+ + + +

Avatar block:

+ + + + + +

Post title block:

+ + + + + +

Post excerpt:

+ + + + + +

Post featured image:

+ + + + + +

Post author:

+ + + + + +

Post date:

+ + + + + +

Categories:

+ + + + + +

Tags:

+ + + + + +

Next post & previous post:

+ + + + + + + +

Read More:

+ + + + + +

Comments block:

+ + + +
+ + + +
+
+ + + +
+ + +
+ +
+ + + + +
+
+ + + + + + + + + + + + + + +

Post comments form block:

+
+ + + + + +

Login/out:

+ + + + + + + + + + + +

Author biography block:

+ + + + + + + + + +

Term description, archive title, search results title can not be shown on single posts.

+]]>
+ + 51 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + + + + 2 + + + https://wpthemetestdata.wordpress.com/ + + + + + + + 0 + 0 + +
+ + <![CDATA[WP 6.1 Widgets block category]]> + https://wpthemetestdata.wordpress.com/wp-6-1-widgets-block-category/ + Fri, 13 Jan 2023 18:22:21 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-widgets-block-category/ + + +

This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

+ + + +

Archives block:

+ + + + + + + +

Categories list:

+ + + + + +

Custom HTML:

+ + + + test + + + +

Latest comments:

+ + + + + +

Latest posts:

+ + + + + +

Page list block:

+ + + + + +

RSS block:

+ + + + + + + + + + + + + + + +

Shortcode block:

+ + + + + +

Social links:

+ + + + + + + + + + + + + + + +

Tag cloud:

+ + + + + +

+]]>
+ + 34 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + +
+ + <![CDATA[WP 6.1 Design category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-design-category-blocks/ + Fri, 13 Jan 2023 18:03:23 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-design-category-blocks/ + + +

This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

+ + + + + + + +
+
+

One single column inside a columns block.

+
+
+ + + +
+
+

Column one. The background color is on the single column.

+
+ + + +
+

Column two

+
+
+ + + +
+
+

Column one. The background color is on the parent columns block.

+
+ + + +
+

Column two

+
+ + + +
+

Column three

+
+
+ + + +
+

Group with paragraph inside. Below are the group block variations:

+
+ + + +
+

Row

+ + + +

Row

+
+ + + +
+

Stack

+ + + +

Stack

+
+ + + +

More block:

+ + + + + + + +

Page break:

+ + + + + + + +

Separators:

+ + + +

Default style, no alignment:

+ + + +
+ + + +

Default style, wide alignment:

+ + + +
+ + + +

Default style, full width:

+ + + +
+ + + +

Default style, align center:

+ + + +
+ + + +

Wide style, no alignment:

+ + + +
+ + + +

Wide style, wide alignment:

+ + + +
+ + + +

Wide style, full width:

+ + + +
+ + + +

Wide style, align center:

+ + + +
+ + + +

Dotted style, no alignment:

+ + + +
+ + + +

Dotted style, wide alignment:

+ + + +
+ + + +

Dotted style, full width:

+ + + +
+ + + +

Dotted style, align center:

+ + + +
+ + + +

Spacer:

+ + + + +]]>
+ + 24 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + +
+ + <![CDATA[WP 6.1 Media category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-media-category-blocks/ + Fri, 13 Jan 2023 18:02:28 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-media-category-blocks/ + + +

This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

+ + + +

Image block:

+ + + +
dsc20050727_091048_222
+ + + +

Gallery:

+ + + + + + + +

Audio:

+ + + +
+ + + +

Cover:

+ + + +
Wind Farm
+

Write title...

+
+ + + +
+

Fixed background

+
+ + + +
+

Repeated background

+
+ + + +
+

Fixed and Repeated background

+
+ + + +
dsc20050727_091048_222
+

Duotone

+
+ + + +
Rain Ripples
+

Top left

+
+ + + +
Rain Ripples
+

Top center

+
+ + + +
Rain Ripples
+

Top right

+
+ + + +
Rain Ripples
+

Center left

+
+ + + +
Rain Ripples
+

Center right

+
+ + + +
Rain Ripples
+

Bottom left

+
+ + + +
Rain Ripples
+

Bottom center

+
+ + + +
Rain Ripples
+

Bottom right

+
+ + + + + + + +
Boardwalk
+

This is the Media & Text block with an image on the left.

+
+ + + +
Image Alignment 1200x4002
+

This is the Media & Text block with a cropped image on the left

+
+ + + +
+

This is the Media & Text block with a video the right.

+
+ + + +
+]]>
+ + 21 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + + + + + +
+ + <![CDATA[WP 6.1 Text category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-text-category-blocks/ + Fri, 13 Jan 2023 17:46:19 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-text-category-blocks + + +

This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

+ + + +

Paragraph

+ + + +

H1 Heading

+ + + +

H2 Heading

+ + + +

H3 Heading

+ + + +

H4 Heading

+ + + +
H5 Heading
+ + + +
H6 Heading
+ + + +
    +
  • List
  • + + + +
  • List
  • +
+ + + +
    +
  1. List
  2. + + + +
  3. List
  4. +
+ + + +
    +
  1. List +
      +
    • List
    • +
    +
  2. +
+ + + +
+

Quote block

+citation
+ + +

classic block

+ + +
code block
+ + + +
Preformatted block
+ + + +

Pull quote

Citation
+ + + +
table celltable cell two
table cell threetable cell four
Table caption
+ + + +
header label oneheader label two
table celltable cell two
table cell threetable cell four
footer label onefooter label two
Table caption
+ + + +
Verse block
+]]>
+ + 8 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + +
+ + Keyboard navigation + https://wpthemetestdata.wordpress.com/2018/10/20/keyboard-navigation/ + Sun, 21 Oct 2018 03:03:48 +0000 + + https://wpthemetestdata.wordpress.com/?p=1724 + + +

There are many different ways to use the web besides a mouse and a pair of eyes. Users navigate for example with a keyboard only or with their voice.

+ + + +

All the functionality, including menus, links and forms should work using a keyboard only. This is essential for all assistive technology to work properly. The only way to test this, at the moment, is manually. The best time to test this is during development.

+ + + +

How to keyboard test:

+ + + +

Tab through your pages, links and forms to do the following tests:

+ + + +
  • Confirm that all links can be reached and activated via keyboard, including any in dropdown submenus.
  • Confirm that all links get a visible focus indicator (e.g., a border highlight).
  • Confirm that all visually hidden links (e.g. skip links) become visible when in focus.
  • Confirm that all form input fields and buttons can be accessed and used via keyboard.
  • Confirm that all interactions, buttons, and other controls can be triggered via keyboard — any action you can complete with a mouse must also be performable via keyboard.
  • Confirm that focus doesn’t move in unexpected ways around the page.
  • Confirm that using shift+tab to move backwards works as well.
+ + + +

Resources

+ + + + +]]>
+ + 1724 + + + + + + + 0 + 0 + + + + 0 +
+ + About The Tests + https://wpthemetestdata.wordpress.com/about/ + Mon, 26 Jul 2010 02:40:01 +0000 + themedemos + https://wpthemetestdata.wordpress.com/about/ + + WordPress Theme Development Resources + +
    +
  1. See the WordPress Theme Developer Handbook for examples of best practices.
  2. +
  3. See the WordPress Code Reference for more information about WordPress' functions, classes, methods, and hooks.
  4. +
  5. See Theme Unit Test for a robust test suite for your Theme and get the latest version of the test data you see here.
  6. +
  7. See Releasing Your Theme for a guide to submitting your Theme to the Theme Directory.
  8. +
]]>
+ + 2 + 2010-07-25 19:40:01 + 2010-07-26 02:40:01 + closed + closed + about + publish + 0 + 1 + page + + 0 +
+ + Lorem Ipsum + https://wpthemetestdata.wordpress.com/lorem-ipsum/ + Tue, 04 Sep 2007 16:52:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/lorem-ipsum/ + + + + 146 + 2007-09-04 09:52:50 + 2007-09-04 16:52:50 + closed + closed + lorem-ipsum + publish + 0 + 7 + page + + 0 + + + Page with comments + https://wpthemetestdata.wordpress.com/about/page-with-comments/ + Tue, 04 Sep 2007 17:47:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/page-with-comments/ + + + + 155 + 2007-09-04 10:47:47 + 2007-09-04 17:47:47 + open + closed + page-with-comments + publish + 2 + 3 + page + + 0 + + 167 + + anon@example.com + + + 2007-09-04 10:49:28 + 2007-09-04 00:49:28 + + 1 + + 0 + 0 + + + 168 + + tellyworth+test2@example.com + + + 2007-09-04 10:49:03 + 2007-09-04 00:49:03 + + 1 + + 0 + 0 + + + 169 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2007-09-04 10:48:51 + 2007-09-04 17:48:51 + + 1 + + 0 + 0 + + + 1017 + + themereviewteam@gmail.com + + + 2014-12-10 01:56:24 + 2014-12-10 08:56:24 + + 0 + + 168 + 0 + + + + Page with comments disabled + https://wpthemetestdata.wordpress.com/about/page-with-comments-disabled/ + Tue, 04 Sep 2007 17:48:10 +0000 + themedemos + https://wpthemetestdata.wordpress.com/page-with-comments-disabled/ + + + + 156 + 2007-09-04 10:48:10 + 2007-09-04 17:48:10 + closed + closed + page-with-comments-disabled + publish + 2 + 4 + page + + 0 + + + Level 3 + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3/ + Tue, 11 Dec 2007 06:23:16 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-3/ + + + + 172 + 2007-12-11 16:23:16 + 2007-12-11 06:23:16 + closed + closed + level-3 + publish + 173 + 0 + page + + 0 + + + Level 2 + https://wpthemetestdata.wordpress.com/level-1/level-2/ + Tue, 11 Dec 2007 06:23:33 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-2/ + + + + 173 + 2007-12-11 16:23:33 + 2007-12-11 06:23:33 + closed + closed + level-2 + publish + 174 + 0 + page + + 0 + + + Level 1 + https://wpthemetestdata.wordpress.com/level-1/ + Tue, 11 Dec 2007 23:25:40 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-1/ + + + + 174 + 2007-12-11 16:25:40 + 2007-12-11 23:25:40 + closed + closed + level-1 + publish + 0 + 5 + page + + 0 + + + Clearing Floats + https://wpthemetestdata.wordpress.com/about/clearing-floats/ + Sun, 01 Aug 2010 16:42:26 +0000 + themedemos + https://wpthemetestdata.wordpress.com/ + + This is the second page]]> + + 501 + 2010-08-01 09:42:26 + 2010-08-01 16:42:26 + closed + closed + clearing-floats + publish + 2 + 2 + page + + 0 + + + canola2 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/canola2/ + Mon, 16 Jun 2008 13:17:54 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/canola2.jpg + + + + 611 + 2008-06-16 06:17:54 + 2008-06-16 13:17:54 + open + closed + canola2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/canola2.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + dsc20050727_091048_222 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050727_091048_222/ + Mon, 16 Jun 2008 13:20:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050727_091048_222.jpg + + + + 616 + 2008-06-16 06:20:37 + 2008-06-16 13:20:37 + open + closed + dsc20050727_091048_222 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050727_091048_222.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + dsc20050813_115856_52 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050813_115856_52/ + Mon, 16 Jun 2008 13:20:57 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050813_115856_52.jpg + + + + 617 + 2008-06-16 06:20:57 + 2008-06-16 13:20:57 + open + closed + dsc20050813_115856_52 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050813_115856_52.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Front Page + https://wpthemetestdata.wordpress.com/front-page/ + Sat, 21 May 2011 01:49:43 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=701 + + + + 701 + 2011-05-20 18:49:43 + 2011-05-21 01:49:43 + open + closed + front-page + publish + 0 + 0 + page + + 0 + + + a Blog page + https://wpthemetestdata.wordpress.com/blog/ + Sat, 21 May 2011 01:51:43 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=703 + + + + 703 + 2011-05-20 18:51:43 + 2011-05-21 01:51:43 + open + closed + blog + publish + 0 + 0 + page + + 0 + + 1016 + + example@example.com + + + 2014-11-29 21:03:05 + 2014-11-30 04:03:05 + + 0 + + 0 + 0 + + + + Bell on Wharf + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/100_5478/ + Mon, 16 Jun 2008 21:34:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/100_5478.jpg + + + + 754 + 2008-06-16 14:34:50 + 2008-06-16 21:34:50 + open + closed + 100_5478 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/100_5478.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Golden Gate Bridge + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/100_5540/ + Mon, 16 Jun 2008 21:35:55 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/100_5540.jpg + + + + 755 + 2008-06-16 14:35:55 + 2008-06-16 21:35:55 + open + closed + 100_5540 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/100_5540.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sunburst Over River + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/cep00032/ + Mon, 16 Jun 2008 21:41:24 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/cep00032.jpg + + + + 756 + 2008-06-16 14:41:24 + 2008-06-16 21:41:24 + open + closed + cep00032 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/cep00032.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Boardwalk + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dcp_2082/ + Mon, 16 Jun 2008 21:41:27 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dcp_2082.jpg + + + + 757 + 2008-06-16 14:41:27 + 2008-06-16 21:41:27 + open + closed + dcp_2082 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dcp_2082.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Yachtsody in Blue + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc03149/ + Mon, 16 Jun 2008 21:41:33 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc03149.jpg + + + + 758 + 2008-06-16 14:41:33 + 2008-06-16 21:41:33 + open + closed + dsc03149 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc03149.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Rain Ripples + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc04563/ + Mon, 16 Jun 2008 21:41:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc04563.jpg + + + + 759 + 2008-06-16 14:41:37 + 2008-06-16 21:41:37 + open + closed + dsc04563 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc04563.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sydney Harbor Bridge + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc09114/ + Mon, 16 Jun 2008 21:41:41 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc09114.jpg + + + + 760 + 2008-06-16 14:41:41 + 2008-06-16 21:41:41 + open + closed + dsc09114 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc09114.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Wind Farm + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050102_192118_51/ + Mon, 16 Jun 2008 21:41:42 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050102_192118_51.jpg + + + + 761 + 2008-06-16 14:41:42 + 2008-06-16 21:41:42 + open + closed + dsc20050102_192118_51 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050102_192118_51.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Antique Farm Machinery + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20051220_160808_102/ + Mon, 16 Jun 2008 21:41:45 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_160808_102.jpg + + + + 762 + 2008-06-16 14:41:45 + 2008-06-16 21:41:45 + open + closed + dsc20051220_160808_102 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_160808_102.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Rusty Rail + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20051220_173257_119/ + Mon, 16 Jun 20081 21:47:17 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_173257_119.jpg + + + + 764 + 2008-06-16 14:47:17 + 2008-06-16 21:47:17 + open + closed + dsc20051220_173257_119 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_173257_119.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sea and Rocks + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dscn3316/ + Mon, 16 Jun 2008 21:47:20 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dscn3316.jpg + + + + 765 + 2008-06-16 14:47:20 + 2008-06-16 21:47:20 + open + closed + dscn3316 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dscn3316.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Big Sur + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/michelle_049/ + Mon, 16 Jun 2008 21:47:23 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/michelle_049.jpg + + + + 766 + 2008-06-16 14:47:23 + 2008-06-16 21:47:23 + open + closed + michelle_049 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/michelle_049.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Windmill + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dcf-1-0/ + Mon, 16 Jun 2008 21:47:26 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/windmill.jpg + + + + 767 + 2008-06-16 14:47:26 + 2008-06-16 21:47:26 + open + closed + dcf-1-0 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/windmill.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Huatulco Coastline + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/alas-i-have-found-my-shangri-la/ + Mon, 16 Jun 2008 21:49:48 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0513-1.jpg + + + + 768 + 2008-06-16 14:49:48 + 2008-06-16 21:49:48 + open + closed + alas-i-have-found-my-shangri-la + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0513-1.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Brazil Beach + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_0747/ + Mon, 16 Jun 2008 21:50:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0747.jpg + + + + 769 + 2008-06-16 14:50:37 + 2008-06-16 21:50:37 + open + closed + img_0747 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0747.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Huatulco Coastline + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_0767/ + Mon, 16 Jun 2008 21:51:19 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0767.jpg + + + + 770 + 2008-06-16 14:51:19 + 2008-06-16 21:51:19 + open + closed + img_0767 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0767.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Boat Barco Texture + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_8399/ + Mon, 16 Jun 2008 21:51:57 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_8399.jpg + + + + 771 + 2008-06-16 14:51:57 + 2008-06-16 21:51:57 + open + closed + img_8399 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_8399.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Resinous + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20040724_152504_532-2/ + Mon, 04 Jun 2012 18:36:56 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg + + + + 807 + 2012-06-04 11:36:56 + 2012-06-04 18:36:56 + open + closed + dsc20040724_152504_532-2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg + + _attachment_original_parent_id + + + + + St. Louis Blues + https://wpthemetestdata.wordpress.com/2010/07/02/post-format-audio/originaldixielandjazzbandwithalbernard-stlouisblues/ + Mon, 16 Jun 2008 16:49:29 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3 + + + + 821 + 2008-06-16 09:49:29 + 2008-06-16 16:49:29 + open + closed + originaldixielandjazzbandwithalbernard-stlouisblues + inherit + 587 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3 + + + OLYMPUS DIGITAL CAMERA + https://wpthemetestdata.wordpress.com/about/clearing-floats/olympus-digital-camera/ + Thu, 05 Aug 2010 18:07:34 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2010/08/manhattansummer.jpg + + + + 827 + 2010-08-05 11:07:34 + 2010-08-05 18:07:34 + open + closed + olympus-digital-camera + inherit + 501 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2010/08/manhattansummer.jpg + + + Image Alignment 580x300 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-580x300/ + Fri, 15 Mar 2013 00:44:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg + + + + 967 + 2013-03-14 19:44:50 + 2013-03-15 00:44:50 + open + open + image-alignment-580x300 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Image Alignment 150x150 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-150x150/ + Fri, 15 Mar 2013 00:44:49 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg + + + + 968 + 2013-03-14 19:44:49 + 2013-03-15 00:44:49 + open + open + image-alignment-150x150 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Horizontal Featured Image + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-horizontal/featured-image-horizontal-2/ + Fri, 15 Mar 2013 20:40:38 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-horizontal.jpg + + + + 1022 + 2013-03-15 15:40:38 + 2013-03-15 20:40:38 + open + open + featured-image-horizontal-2 + inherit + 1011 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-horizontal.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + I Am Worth Loving Wallpaper + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/soworthloving-wallpaper/ + Thu, 14 Mar 2013 14:58:24 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/soworthloving-wallpaper.jpg + + + + 1023 + 2013-03-14 09:58:24 + 2013-03-14 14:58:24 + open + open + soworthloving-wallpaper + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/soworthloving-wallpaper.jpg + + _wp_attachment_image_alt + + + + + Image Alignment 300x200 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-300x200/ + Fri, 15 Mar 2013 00:44:49 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg + + + + 1025 + 2013-03-14 19:44:49 + 2013-03-15 00:44:49 + open + open + image-alignment-300x200 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Vertical Featured Image + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-vertical/featured-image-vertical-2/ + Fri, 15 Mar 2013 20:41:09 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-vertical.jpg + + + + 1027 + 2013-03-15 15:41:09 + 2013-03-15 20:41:09 + open + open + featured-image-vertical-2 + inherit + 1016 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-vertical.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Image Alignment 1200x4002 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-1200x4002/ + Fri, 15 Mar 2013 00:44:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg + + + + 1029 + 2013-03-14 19:44:50 + 2013-03-15 00:44:50 + open + open + image-alignment-1200x4002 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Unicorn Wallpaper + https://wpthemetestdata.wordpress.com/2010/08/08/post-format-image/unicorn-wallpaper/ + Fri, 14 Dec 2012 03:10:39 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2012/12/unicorn-wallpaper.jpg + + + + 1045 + 2012-12-13 22:10:39 + 2012-12-14 03:10:39 + open + open + unicorn-wallpaper + inherit + 1158 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2012/12/unicorn-wallpaper.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Pages + https://wpthemetestdata.wordpress.com/2013/04/09/pages/ + Tue, 09 Apr 2013 13:37:45 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/pages + + + + 1100 + 2013-04-09 06:37:45 + 2013-04-09 13:37:45 + open + closed + pages + publish + 0 + 2 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Categories + https://wpthemetestdata.wordpress.com/2013/04/09/categories/ + Tue, 09 Apr 2013 13:37:45 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/categories + + + + 1101 + 2013-04-09 06:37:45 + 2013-04-09 13:37:45 + open + closed + categories + publish + 0 + 10 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1112/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1112</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test markup tags and styles.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1112</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1112</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>21</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[4675]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1115/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1115</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test post formats.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1115</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1115</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>24</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[44090582]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1118/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1118</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test unpublished posts.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1118</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1118</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>28</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[54090]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>Depth + https://wpthemetestdata.wordpress.com/2013/04/09/depth/ + Tue, 09 Apr 2013 13:37:46 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/depth + + + + 1119 + 2013-04-09 06:37:46 + 2013-04-09 13:37:46 + open + closed + depth + publish + 0 + 29 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 01 + https://wpthemetestdata.wordpress.com/2013/04/09/level-01/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-01 + + + + 1120 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-01 + publish + 0 + 30 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 02 + https://wpthemetestdata.wordpress.com/2013/04/09/level-02/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-02 + + + + 1121 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-02 + publish + 0 + 31 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 03 + https://wpthemetestdata.wordpress.com/2013/04/09/level-03/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-03 + + + + 1122 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-03 + publish + 0 + 32 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 04 + https://wpthemetestdata.wordpress.com/2013/04/09/level-04/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-04 + + + + 1123 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-04 + publish + 0 + 33 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 05 + https://wpthemetestdata.wordpress.com/2013/04/09/level-05/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-05 + + + + 1124 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-05 + publish + 0 + 34 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 06 + https://wpthemetestdata.wordpress.com/2013/04/09/level-06/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-06 + + + + 1125 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-06 + publish + 0 + 35 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 07 + https://wpthemetestdata.wordpress.com/2013/04/09/level-07/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-07 + + + + 1126 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-07 + publish + 0 + 36 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 08 + https://wpthemetestdata.wordpress.com/2013/04/09/level-08/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-08 + + + + 1127 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-08 + publish + 0 + 37 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 09 + https://wpthemetestdata.wordpress.com/2013/04/09/level-09/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-09 + + + + 1128 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-09 + publish + 0 + 38 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 10 + https://wpthemetestdata.wordpress.com/2013/04/09/level-10/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-10 + + + + 1129 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-10 + publish + 0 + 39 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Advanced + https://wpthemetestdata.wordpress.com/2013/04/09/advanced/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/advanced + + + + 1130 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + advanced + publish + 0 + 40 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu Description + https://wpthemetestdata.wordpress.com/2013/04/09/menu-description/ + Tue, 09 Apr 2013 13:37:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-description + + + + 1142 + 2013-04-09 06:37:50 + 2013-04-09 13:37:50 + open + closed + menu-description + publish + 0 + 44 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu Title Attribute + https://wpthemetestdata.wordpress.com/2013/04/09/menu-title-attribute/ + Tue, 09 Apr 2013 13:37:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-title-attribute + + + + 1143 + 2013-04-09 06:37:50 + 2013-04-09 13:37:50 + open + closed + menu-title-attribute + publish + 0 + 41 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu CSS Class + https://wpthemetestdata.wordpress.com/2013/04/09/menu-css-class/ + Tue, 09 Apr 2013 13:37:51 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-css-class + + + + 1144 + 2013-04-09 06:37:51 + 2013-04-09 13:37:51 + open + closed + menu-css-class + publish + 0 + 42 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + New Window / Tab + https://wpthemetestdata.wordpress.com/2013/04/09/new-window-tab/ + Tue, 09 Apr 2013 13:37:51 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/new-window-tab + + + + 1145 + 2013-04-09 06:37:51 + 2013-04-09 13:37:51 + open + closed + new-window-tab + publish + 0 + 43 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1263/</link> + <pubDate>Tue, 09 Apr 2013 13:38:00 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1263</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1263</wp:post_id> + <wp:post_date>2013-04-09 06:38:00</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:38:00</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1263</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1100]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1264/</link> + <pubDate>Tue, 09 Apr 2013 13:38:01 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1264</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1264</wp:post_id> + <wp:post_date>2013-04-09 06:38:01</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:38:01</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1264</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1100]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>twitter.com + https://wpthemetestdata.wordpress.com/2018/10/20/twitter-com/ + Sun, 21 Oct 2018 02:57:33 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/twitter-com/ + + + + 1719 + + + + + + + 0 + 1 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + facebook.com + https://wpthemetestdata.wordpress.com/2018/10/20/facebook-com/ + Sun, 21 Oct 2018 02:57:35 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/facebook-com/ + + + + 1720 + + + + + + + 0 + 2 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + github.com + https://wpthemetestdata.wordpress.com/2018/10/20/github-com/ + Sun, 21 Oct 2018 02:57:37 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/github-com + + + + 1721 + + + + + + + 0 + 3 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + instagram.com + https://wpthemetestdata.wordpress.com/2018/10/20/instagram-com + Sun, 21 Oct 2018 02:57:41 +000 + themereviewteam> + https://wpthemetestdata.wordpress.com/2018/10/20/instagram-com + + + + 1723 + + + + + + + 0 + 5 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + linkedin.com + https://wpthemetestdata.wordpress.com/2018/10/20/linkedin-com/ + Sun, 21 Oct 2018 02:57:39 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/linkedin-com/ + + + + 1722 + + + + + + + 0 + 4 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + triforce-wallpaper + https://wpthemetestdata.wordpress.com/2010/08/07/post-format-image-caption/triforce-wallpaper/ + Tue, 17 Aug 2010 20:17:31 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2010/08/triforce-wallpaper.jpg + + + + 1628 + 2010-08-17 13:17:31 + 2010-08-17 20:17:31 + open + closed + triforce-wallpaper + inherit + 1163 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2010/08/triforce-wallpaper.jpg + + + + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1636/</link> + <pubDate>Tue, 07 May 2013 19:54:30 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1636</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1636</wp:post_id> + <wp:post_date>2013-05-07 12:54:30</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:30</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1636</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1637/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1637</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1637</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1637</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1638/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1638</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1638</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1638</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1639/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1639</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1639</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1639</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1640/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1640</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1640</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1640</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1641/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1641</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1641</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1641</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1643/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1643</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1643</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1643</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1644/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1644</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1644</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1644</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[701]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1645/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1645</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1645</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1645</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1646/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1646</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1646</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1646</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1647/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1647</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1647</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1647</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1648/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1648</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1648</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1648</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1649/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1649</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1649</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1649</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1650/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1650</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1650</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1650</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1651/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1651</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1651</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1651</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>10</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[174]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1652/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1652</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1652</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1652</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>11</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[173]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1653/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1653</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1653</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1653</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>12</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[172]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1654/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1654</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1654</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1654</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>13</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[746]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1655/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1655</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1655</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1655</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>14</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[748]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1656/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1656</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1656</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1656</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>15</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[742]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1657/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1657</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1657</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1657</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>16</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[744]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1658/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1658</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1658</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1658</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>17</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1659/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1659</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1659</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1659</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>18</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[733]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1660/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1660</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1660</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1660</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>19</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[735]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1643/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1643</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1643</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1643</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1644/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1644</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1644</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1644</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[701]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1645/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1645</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1645</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1645</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1646/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1646</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1646</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1646</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1647/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1647</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1647</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1647</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1648/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1648</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1648</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1648</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1649/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1649</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1649</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1649</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1650/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1650</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1650</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1650</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1651/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1651</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1651</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1651</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>10</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[174]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1652/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1652</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1652</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1652</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>11</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[173]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1653/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1653</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1653</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1653</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>12</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[172]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1654/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1654</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1654</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1654</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>13</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[746]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1655/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1655</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1655</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1655</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>14</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[748]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1656/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1656</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1656</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1656</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>15</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[742]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1657/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1657</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1657</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1657</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>16</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[744]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1658/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1658</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1658</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1658</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>17</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1659/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1659</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1659</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1659</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>18</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[733]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1660/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1660</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1660</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1660</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>19</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[735]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>dsc20040724_152504_532 + https://wpthemetestdata.wordpress.com/?attachment_id=1686 + Wed, 18 Sep 2013 21:37:05 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20040724_152504_532.jpg + + + + 1686 + 2013-09-18 14:37:05 + 2013-09-18 21:37:05 + open + closed + dsc20040724_152504_532 + inherit + 0 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20040724_152504_532.jpg + + + dsc20050604_133440_34211 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050604_133440_34211/ + Wed, 18 Sep 2013 21:37:07 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20050604_133440_34211.jpg + + + + 1687 + 2013-09-18 14:37:07 + 2013-09-18 21:37:07 + open + closed + dsc20050604_133440_34211 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20050604_133440_34211.jpg + + + 2014-slider-mobile-behavior + https://wpthemetestdata.wordpress.com/?attachment_id=1690 + Wed, 04 Dec 2013 18:08:29 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/12/2014-slider-mobile-behavior.mov + + + + 1690 + 2013-12-04 11:08:29 + 2013-12-04 18:08:29 + open + closed + 2014-slider-mobile-behavior + inherit + 0 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/12/2014-slider-mobile-behavior.mov + + + dsc20050315_145007_132 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050315_145007_132-2/ + Sun, 05 Jan 2014 18:45:21 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2014/01/dsc20050315_145007_132.jpg + + + + 1691 + 2014-01-05 11:45:21 + 2014-01-05 18:45:21 + open + closed + dsc20050315_145007_132-2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2014/01/dsc20050315_145007_132.jpg + + + spectacles + https://wpthemetestdata.wordpress.com/about/clearing-floats/spectacles-2/ + Sun, 05 Jan 2014 18:45:36 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2014/01/spectacles.gif + + + + 1692 + 2014-01-05 11:45:36 + 2014-01-05 18:45:36 + open + closed + spectacles-2 + inherit + 501 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2014/01/spectacles.gif + + + Post Format: Standard + https://wpthemetestdata.wordpress.com/2010/10/05/post-format-standard/ + Tue, 05 Oct 2010 07:27:25 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=358 + + + +Mrs. Darling first heard of Peter when she was tidying up her children's minds. It is the nightly custom of every good mother after her children are asleep to rummage in their minds and put things straight for next morning, repacking into their proper places the many articles that have wandered during the day. + +If you could keep awake (but of course you can't) you would see your own mother doing this, and you would find it very interesting to watch her. It is quite like tidying up drawers. You would see her on her knees, I expect, lingering humorously over some of your contents, wondering where on earth you had picked this thing up, making discoveries sweet and not so sweet, pressing this to her cheek as if it were as nice as a kitten, and hurriedly stowing that out of sight. When you wake in the morning, the naughtiness and evil passions with which you went to bed have been folded up small and placed at the bottom of your mind and on the top, beautifully aired, are spread out your prettier thoughts, ready for you to put on. + +I don't know whether you have ever seen a map of a person's mind. Doctors sometimes draw maps of other parts of you, and your own map can become intensely interesting, but catch them trying to draw a map of a child's mind, which is not only confused, but keeps going round all the time. There are zigzag lines on it, just like your temperature on a card, and these are probably roads in the island, for the Neverland is always more or less an island, with astonishing splashes of colour here and there, and coral reefs and rakish-looking craft in the offing, and savages and lonely lairs, and gnomes who are mostly tailors, and caves through which a river runs, and princes with six elder brothers, and a hut fast going to decay, and one very small old lady with a hooked nose. It would be an easy map if that were all, but there is also first day at school, religion, fathers, the round pond, needle-work, murders, hangings, verbs that take the dative, chocolate pudding day, getting into braces, say ninety-nine, three-pence for pulling out your tooth yourself, and so on, and either these are part of the island or they are another map showing through, and it is all rather confusing, especially as nothing will stand still. + +Of course the Neverlands vary a good deal. John's, for instance, had a lagoon with flamingoes flying over it at which John was shooting, while Michael, who was very small, had a flamingo with lagoons flying over it. John lived in a boat turned upside down on the sands, Michael in a wigwam, Wendy in a house of leaves deftly sewn together. John had no friends, Michael had friends at night, Wendy had a pet wolf forsaken by its parents, but on the whole the Neverlands have a family resemblance, and if they stood still in a row you could say of them that they have each other's nose, and so forth. On these magic shores children at play are for ever beaching their coracles [simple boat]. We too have been there; we can still hear the sound of the surf, though we shall land no more. + +Of all delectable islands the Neverland is the snuggest and most compact, not large and sprawly, you know, with tedious distances between one adventure and another, but nicely crammed. When you play at it by day with the chairs and table-cloth, it is not in the least alarming, but in the two minutes before you go to sleep it becomes very real. That is why there are night-lights. + +Occasionally in her travels through her children's minds Mrs. Darling found things she could not understand, and of these quite the most perplexing was the word Peter. She knew of no Peter, and yet he was here and there in John and Michael's minds, while Wendy's began to be scrawled all over with him. The name stood out in bolder letters than any of the other words, and as Mrs. Darling gazed she felt that it had an oddly cocky appearance.]]> + + 358 + 2010-10-05 00:27:25 + 2010-10-05 07:27:25 + closed + closed + post-format-standard + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Gallery + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/ + Fri, 10 Sep 2010 14:24:14 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=555 + + + +You can use this page to test the Theme's handling of the gallery shortcode, including the columns parameter, from 1 to 9 columns. Themes are only required to support the default setting (3 columns), so this page is entirely optional. +

One Column

+[gallery columns="1"] +

Two Columns

+[gallery columns="2"] +

Three Columns

+[gallery columns="3"] +

Four Columns

+[gallery columns="4"] +

Five Columns

+[gallery columns="5"] +

Six Columns

+[gallery columns="6"] +

Seven Columns

+[gallery columns="7"] +

Eight Columns

+[gallery columns="8"] +

Nine Columns

+[gallery columns="9"]]]>
+ + 555 + 2010-09-10 07:24:14 + 2010-09-10 14:24:14 + closed + closed + post-format-gallery + publish + 0 + 0 + post + + 0 + + + + + + +
+ + Post Format: Aside + https://wpthemetestdata.wordpress.com/2010/05/09/post-format-aside/ + Sun, 09 May 2010 14:51:54 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=559 + + + + 559 + 2010-05-09 07:51:54 + 2010-05-09 14:51:54 + closed + closed + post-format-aside + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Chat + https://wpthemetestdata.wordpress.com/2010/01/08/post-format-chat/ + Fri, 08 Jan 2010 14:59:31 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=562 + + + + 562 + 2010-01-08 07:59:31 + 2010-01-08 14:59:31 + closed + closed + post-format-chat + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Link + https://wpthemetestdata.wordpress.com/2010/03/07/post-format-link/ + Sun, 07 Mar 2010 15:06:53 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=565 + + The WordPress Theme Review Team Website]]> + + 565 + 2010-03-07 08:06:53 + 2010-03-07 15:06:53 + closed + closed + post-format-link + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Image (Linked) + https://wpthemetestdata.wordpress.com/2010/08/06/post-format-image-linked/ + Fri, 06 Aug 2010 15:09:39 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=568 + + chunk of resinous blackboy husk[/caption] +]]> + + 568 + 2010-08-06 08:09:39 + 2010-08-06 15:09:39 + closed + closed + post-format-image-linked + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Quote + https://wpthemetestdata.wordpress.com/2010/02/05/post-format-quote/ + Fri, 05 Feb 2010 15:13:15 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=575 + + Only one thing is impossible for God: To find any sense in any copyright law on the planet. +Mark Twain]]> + + 575 + 2010-02-05 08:13:15 + 2010-02-05 15:13:15 + closed + closed + post-format-quote + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Status + https://wpthemetestdata.wordpress.com/2010/04/04/post-format-status/ + Sun, 04 Apr 2010 15:21:24 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=579 + + + + 579 + 2010-04-04 08:21:24 + 2010-04-04 15:21:24 + closed + closed + post-format-status + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Video (WordPress.tv) + https://wpthemetestdata.wordpress.com/2010/06/03/post-format-video-wordpresstv/ + Thu, 03 Jun 2010 15:25:58 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=582 + + instructions in the Codex.]]> + + 582 + 2010-06-03 08:25:58 + 2010-06-03 15:25:58 + closed + closed + post-format-video-wordpresstv + publish + 0 + 0 + post + + 0 + + + + + + + + + _oembed_4321638fc1a6fee26443f7fe8a70a871 + ]]> + + + _oembed_29351fff85c1be1d1e9a965a0332a861 + ]]> + + + _oembed_9fcc86d7d9398ff736577f922307f64d + ]]> + + + _oembed_366237792d32461d0052efb2edec37f5 + ]]> + + + _oembed_37fdfe862c13c46a93be2921279bf675 + ]]> + + + + Post Format: Audio + https://wpthemetestdata.wordpress.com/2010/07/02/post-format-audio/ + Fri, 02 Jul 2010 15:36:44 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=587 + + St. Louis Blues + +Audio shortcode: + +[audio https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3]]]> + + 587 + 2010-07-02 08:36:44 + 2010-07-02 15:36:44 + closed + closed + post-format-audio + publish + 0 + 0 + post + + 0 + + + + + + + + enclosure + + + + + Page A + https://wpthemetestdata.wordpress.com/page-a/ + Fri, 24 Jun 2011 01:38:52 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=733 + + + + 733 + 2011-06-23 18:38:52 + 2011-06-24 01:38:52 + open + closed + page-a + publish + 0 + 10 + page + + 0 + + + Page B + https://wpthemetestdata.wordpress.com/page-b/ + Fri, 24 Jun 2011 01:39:14 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=735 + + + + 735 + 2011-06-23 18:39:14 + 2011-06-24 01:39:14 + open + closed + page-b + publish + 0 + 11 + page + + 0 + + + Level 2a + https://wpthemetestdata.wordpress.com/level-1/level-2a/ + Fri, 24 Jun 2011 02:03:33 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=742 + + + + 742 + 2011-06-23 19:03:33 + 2011-06-24 02:03:33 + open + closed + level-2a + publish + 174 + 0 + page + + 0 + + + Level 2b + https://wpthemetestdata.wordpress.com/level-1/level-2b/ + Fri, 24 Jun 2011 02:04:03 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=744 + + + + 744 + 2011-06-23 19:04:03 + 2011-06-24 02:04:03 + open + closed + level-2b + publish + 174 + 0 + page + + 0 + + + Level 3a + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3a/ + Fri, 24 Jun 2011 02:04:24 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=746 + + + + 746 + 2011-06-23 19:04:24 + 2011-06-24 02:04:24 + open + closed + level-3a + publish + 173 + 0 + page + + 0 + + + Level 3b + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3b/ + Fri, 24 Jun 2011 02:04:46 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=748 + + + + 748 + 2011-06-23 19:04:46 + 2011-06-24 02:04:46 + open + closed + level-3b + publish + 173 + 0 + page + + 0 + + + Template: Excerpt (Defined) + https://wpthemetestdata.wordpress.com/2012/03/15/template-excerpt-defined/ + Thu, 15 Mar 2012 21:38:08 +0000 + themedemos + http://wptest.io/demo/?p=993 + + should be displayed in place of the user-defined excerpt in single-page views.]]> + should be displayed in place of the post content in archive-index pages. It can be longer than the automatically generated excerpts, and can have HTML tags.]]> + 993 + 2012-03-15 14:38:08 + 2012-03-15 21:38:08 + closed + closed + template-excerpt-defined + publish + 0 + 0 + post + + 0 + + + + + + + + + Template: More Tag + https://wpthemetestdata.wordpress.com/2012/03/15/template-more-tag/ + Thu, 15 Mar 2012 21:41:11 +0000 + themedemos + http://wptest.io/demo/?p=996 + + more tag. + +Right after this sentence should be a "continue reading" button of some sort on list pages of themes that show full content. It won't show on single pages or on themes showing excerpts. + + + +And this content is after the more tag. (which should be the anchor link for when the button is clicked)]]> + + 996 + 2012-03-15 14:41:11 + 2012-03-15 21:41:11 + closed + closed + template-more-tag + publish + 0 + 0 + post + + 0 + + + + + + + + + Edge Case: Nested And Mixed Lists + https://wpthemetestdata.wordpress.com/2009/05/15/edge-case-nested-and-mixed-lists/ + Fri, 15 May 2009 21:48:32 +0000 + themedemos + http://wptest.io/demo/?p=1000 + + +
  • Lists within lists do not break the ordered list numbering order
  • +
  • Your list styles go deep enough.
  • + +

    Ordered - Unordered - Ordered

    +
      +
    1. ordered item
    2. +
    3. ordered item +
        +
      • unordered
      • +
      • unordered +
          +
        1. ordered item
        2. +
        3. ordered item
        4. +
        +
      • +
      +
    4. +
    5. ordered item
    6. +
    7. ordered item
    8. +
    +

    Ordered - Unordered - Unordered

    +
      +
    1. ordered item
    2. +
    3. ordered item +
        +
      • unordered
      • +
      • unordered +
          +
        • unordered item
        • +
        • unordered item
        • +
        +
      • +
      +
    4. +
    5. ordered item
    6. +
    7. ordered item
    8. +
    +

    Unordered - Ordered - Unordered

    +
      +
    • unordered item
    • +
    • unordered item +
        +
      1. ordered
      2. +
      3. ordered +
          +
        • unordered item
        • +
        • unordered item
        • +
        +
      4. +
      +
    • +
    • unordered item
    • +
    • unordered item
    • +
    +

    Unordered - Unordered - Ordered

    +
      +
    • unordered item
    • +
    • unordered item +
        +
      • unordered
      • +
      • unordered +
          +
        1. ordered item
        2. +
        3. ordered item
        4. +
        +
      • +
      +
    • +
    • unordered item
    • +
    • unordered item
    • +
    ]]>
    + + 1000 + 2009-05-15 14:48:32 + 2009-05-15 21:48:32 + closed + closed + edge-case-nested-and-mixed-lists + publish + 0 + 0 + post + + 0 + + + + + + + +
    + + Template: Featured Image (Horizontal) + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-horizontal/ + Thu, 15 Mar 2012 22:15:12 +0000 + themedemos + http://wptest.io/demo/?p=1011 + + featured image, if the theme supports it. + +Non-square images can provide some unique styling issues. + +This post tests a horizontal featured image.]]> + + 1011 + 2012-03-15 15:15:12 + 2012-03-15 22:15:12 + closed + closed + template-featured-image-horizontal + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + + + + Template: Featured Image (Vertical) + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-vertical/ + Thu, 15 Mar 2012 22:36:32 +0000 + themedemos + http://wptest.io/demo/?p=1016 + + featured image, if the theme supports it. + +Non-square images can provide some unique styling issues. + +This post tests a vertical featured image.]]> + + 1016 + 2012-03-15 15:36:32 + 2012-03-15 22:36:32 + closed + closed + template-featured-image-vertical + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + + + + Post Format: Gallery (Tiled) + https://wpthemetestdata.wordpress.com/2010/09/09/post-format-gallery-tiled/ + Fri, 10 Sep 2010 00:23:27 +0000 + themedemos + http://wptest.io/demo/?p=1031 + + Jetpack to test. + +[gallery type="rectangular" columns="4" ids="755,757,758,760,766,763" orderby="rand"] + +This is some text after the Tiled Gallery just to make sure that everything spaces nicely.]]> + + 1031 + 2010-09-09 17:23:27 + 2010-09-10 00:23:27 + closed + closed + post-format-gallery-tiled + publish + 0 + 0 + post + + 0 + + + + + + + + + + + Page Image Alignment + https://wpthemetestdata.wordpress.com/about/page-image-alignment/ + Fri, 15 Mar 2013 23:19:23 +0000 + themedemos + http://wptest.io/demo/?page_id=1080 + + None, Left, Right, and Center. In addition, they also get the options of Thumbnail, Medium, Large & Fullsize. Be sure to try this page in RTL mode and it should look the same as LTR. +

    Image Alignment 580x300

    +The image above happens to be centered. + +Image Alignment 150x150 The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see there should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +Image Alignment 1200x400 + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 1200x400 + +And we try the large image again, with the center alignment since that sometimes is a problem. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 300x200 + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And just when you thought we were done, we're going to do them all over again with captions! + +[caption id="attachment_906" align="aligncenter" width="580"]Image Alignment 580x300 Look at 580x300 getting some caption love.[/caption] + +The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky. + +[caption id="attachment_904" align="alignleft" width="150"]Image Alignment 150x150 Bigger caption than the image usually is.[/caption] + +The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +[caption id="attachment_907" align="alignnone" width="1200"]Image Alignment 1200x400 Comment for massive image for your eyeballs.[/caption] + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. +[caption id="attachment_907" align="aligncenter" width="1200"]Image Alignment 1200x400 This massive image is centered.[/caption] + +And again with the big image centered. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +[caption id="attachment_905" align="alignright" width="300"]Image Alignment 300x200 Feels good to be right all the time.[/caption] + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! Last thing is a small image aligned right. Whatever follows should be unaffected. Image Alignment 150x150]]>
    + + 1133 + 2013-03-15 18:19:23 + 2013-03-15 23:19:23 + open + open + page-image-alignment + publish + 2 + 0 + page + + 0 +
    + + Page Markup And Formatting + https://wpthemetestdata.wordpress.com/about/page-markup-and-formatting/ + Fri, 15 Mar 2013 23:20:05 +0000 + themedemos + http://wptest.io/demo/?page_id=1083 + + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    Jane$1Because that's all Steve Jobs needed for a salary.
    John$100KFor all the blogging he does.
    Jane$100MPictures are worth a thousand words, right? So Tom x 1,000.
    Jane$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    + Robert Frost
    +
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +This tag shows strike-through text. + +Small Tag + +This tag shows smaller text. + +Strong Tag + +This tag shows bold text. + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +This rarely used tag emulates teletype text, which is usually styled like the <code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +This tag shows underlined text. + +Variable Tag + +This allows you to denote variables.]]>
    + + 1134 + 2013-03-15 18:20:05 + 2013-03-15 23:20:05 + open + open + page-markup-and-formatting + publish + 2 + 0 + page + + 0 +
    + + Template: Comments + https://wpthemetestdata.wordpress.com/2012/01/03/template-comments/ + Tue, 03 Jan 2012 17:11:37 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/comment-test/ + + +
  • Threaded comments up to 10 levels deep
  • +
  • Paginated comments (set Settings > Discussion > Break comments into pages to 5 top level comments per page)
  • +
  • Comment markup / formatting
  • +
  • Comment images
  • +
  • Comment videos
  • +
  • Author comments
  • +
  • Gravatars and default fallbacks
  • +]]>
    + + 1148 + 2012-01-03 10:11:37 + 2012-01-03 17:11:37 + open + closed + template-comments + publish + 0 + 0 + post + + 0 + + + + + + + 881 + + example@example.org + http://example.org/ + + 2012-09-03 10:18:04 + 2012-09-03 17:18:04 + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    John Saddington$1Because that's all Steve Job' needed for a salary.
    Tom McFarlin$100KFor all the blogging he does.
    Jared Erickson$100MPictures are worth a thousand words, right? So Tom x 1,000.
    Chris Ames$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    + +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    +Robert Frost
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    + +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up.]]>
    + 1 + + 0 + 0 +
    + + 899 + + fake@example.com + + + 2013-03-11 23:45:54 + 2013-03-12 04:45:54 + Gravatar associated with it. + They did not speify a website, so there should be no link to it in the comment. +]]> + 1 + + 0 + 0 + + + 900 + + example@example.org + http://example.org/ + + 2013-03-12 13:17:35 + 2013-03-12 20:17:35 + + 1 + + 0 + 0 + + + 901 + + example@example.org + http://example.org + + 2013-03-14 07:53:26 + 2013-03-14 14:53:26 + + 1 + + 0 + 0 + + + 903 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 07:56:46 + 2013-03-14 14:56:46 + + 1 + + 0 + 24783058 + + + 904 + + example@example.org + http://example.org/ + + 2013-03-14 07:57:01 + 2013-03-14 14:57:01 + + 1 + + 0 + 0 + + + 905 + + example@example.org + http://example.org/ + + 2013-03-14 08:01:21 + 2013-03-14 15:01:21 + + 1 + + 904 + 0 + + + 906 + + example@example.org + http://example.org/ + + 2013-03-14 08:02:06 + 2013-03-14 15:02:06 + + 1 + + 905 + 0 + + + 907 + + example@example.org + http://example.org/ + + 2013-03-14 08:03:22 + 2013-03-14 15:03:22 + + 1 + + 906 + 0 + + + 910 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 08:10:29 + 2013-03-14 15:10:29 + + 1 + + 907 + 24783058 + + + 911 + + example@example.org + http://example.org/ + + 2013-03-14 08:12:16 + 2013-03-14 15:12:16 + + 1 + + 910 + 0 + + + 912 + + example@example.org + http://example.org/ + + 2013-03-14 08:12:58 + 2013-03-14 15:12:58 + + 1 + + 911 + 0 + + + 913 + + example@example.org + http://example.org/ + + 2013-03-14 08:13:42 + 2013-03-14 15:13:42 + + 1 + + 912 + 0 + + + 914 + + example@example.org + http://example.org/ + + 2013-03-14 08:14:13 + 2013-03-14 15:14:13 + + 1 + + 913 + 0 + + + 915 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 08:14:47 + 2013-03-14 15:14:47 + + 1 + + 914 + 24783058 + + + 917 + + example@example.org + http://example.org/ + + 2013-03-14 09:56:43 + 2013-03-14 16:56:43 + + If the image imports... + ]]> + 1 + + 0 + 0 + + + 918 + + example@example.org + http://example.org/ + + 2013-03-14 11:23:24 + 2013-03-14 18:23:24 + + 1 + + 0 + 0 + + + 919 + + example@example.org + http://example.org/ + + 2013-03-14 11:27:54 + 2013-03-14 18:27:54 + + 1 + + 0 + 0 + + + 920 + + example@example.org + http://example.org/ + + 2013-03-14 11:30:33 + 2013-03-14 18:30:33 + + 1 + + 0 + 24783058 + + + 1015 + + auser@example.com + + + 2014-09-29 02:52:15 + 2014-09-29 09:52:15 + + 0 + + 0 + 0 + +
    + + Template: Pingbacks And Trackbacks + https://wpthemetestdata.wordpress.com/2012/01/01/template-pingbacks-an-trackbacks/ + Sun, 01 Jan 2012 17:17:18 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/many-trackbacks/ + + +
  • Above the comments
  • +
  • Below the comments
  • +
  • Included within the normal flow of comments
  • +]]>
    + + 1149 + 2012-01-01 10:17:18 + 2012-01-01 17:17:18 + closed + closed + template-pingbacks-an-trackbacks + publish + 0 + 0 + post + + 0 + + + + + + + + + 921 + + + http://tellyworth.wordpress.com/2007/11/21/ping-1/ + + 2007-11-21 11:31:12 + 2007-11-21 01:31:12 + + 1 + trackback + 0 + 0 + + + 922 + + + http://tellyworth.wordpress.com/2007/11/21/ping-2-with-a-much-longer-title-than-the-previous-ping-which-was-called-ping-1/ + + 2007-11-21 11:35:47 + 2007-11-21 01:35:47 + + 1 + trackback + 0 + 0 + + + 923 + + + http://tellyworth.wordpress.com/2007/11/21/ping-4/ + + 2007-11-21 11:39:25 + 2007-11-21 01:39:25 + + 1 + pingback + 0 + 0 + + + 924 + + + http://tellyworth.wordpress.com/2007/11/21/ping-3/ + + 2007-11-21 11:38:22 + 2007-11-21 01:38:22 + + 1 + pingback + 0 + 0 + + + 925 + + example@example.org + http://example.org/ + + 2010-06-11 15:27:04 + 2010-06-11 22:27:04 + + 1 + + 0 + 0 + +
    + + Template: Comments Disabled + https://wpthemetestdata.wordpress.com/2012/01/02/template-comments-disabled/ + Mon, 02 Jan 2012 17:21:15 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/no-comments/ + + should display pingbacks and trackbacks.]]> + + 1150 + 2012-01-02 10:21:15 + 2012-01-02 17:21:15 + closed + closed + template-comments-disabled + publish + 0 + 0 + post + + 0 + + + + + + + + Edge Case: Many Tags + https://wpthemetestdata.wordpress.com/2009/06/01/edge-case-many-tags/ + Mon, 01 Jun 2009 08:00:34 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/11/24/many-tags/ + + + + 1151 + 2009-06-01 01:00:34 + 2009-06-01 08:00:34 + closed + closed + edge-case-many-tags + publish + 0 + 0 + post + + 0' + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Edge Case: Many Categories + https://wpthemetestdata.wordpress.com/2009/07/02/edge-case-many-categories/ + Thu, 02 Jul 2009 09:00:03 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/11/24/many-categories/ + + + + 1152 + 2009-07-02 02:00:03 + 2009-07-02 09:00:03 + closed + closed + edge-case-many-categories + publish + 0 + 0 + post + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Scheduled + https://wpthemetestdata.wordpress.com/2020/01/01/scheduled/ + Wed, 01 Jan 2030 19:00:18 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=418 + + + + 1153 + 2030-01-01 12:00:18 + 2030-01-01 19:00:18 + closed + closed + scheduled + future + 0 + 0 + post + + 0 + + + + + + Post Format: Image + https://wpthemetestdata.wordpress.com/2010/08/08/post-format-image/ + Sun, 08 Aug 2010 12:00:39 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=568 + +
      + +]]>
    + + 1158 + 2010-08-08 05:00:39 + 2010-08-08 12:00:39 + closed + closed + post-format-image + publish + 0 + 0 + post + + 0 + + + + + +
    + + Post Format: Video (YouTube) + https://wpthemetestdata.wordpress.com/2010/06/02/post-format-video-youtube/ + Wed, 02 Jun 2010 09:00:58 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=582 + + WordPress Embeds.]]> + + 1161 + 2010-06-02 02:00:58 + 2010-06-02 09:00:58 + closed + closed + post-format-video-youtube + publish + 0 + 0 + post + + 0 + + + + + + + Post Format: Image (Caption) + https://wpthemetestdata.wordpress.com/2010/08/07/post-format-image-caption/ + Sat, 07 Aug 2010 13:00:19 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=674 + + Bell on Wharf Bell on wharf in San Francisco[/caption]]]> + + 1163 + 2010-08-07 06:00:19 + 2010-08-07 13:00:19 + closed + closed + post-format-image-caption + publish + 0 + 0 + post + + 0 + + + + + + + + _thumbnail_id + + + + + Draft + https://wpthemetestdata.wordpress.com/?p=1164 + Tue, 09 Apr 2013 18:20:39 +0000 + themedemos + http://wptest.io/demo/?p=922 + + + + 1164 + 2013-04-09 11:20:39 + 2013-04-09 18:20:39 + closed + closed + + draft + 0 + 0 + post + + 0 + + + + + + Template: Password Protected (the password is "enter") + https://wpthemetestdata.wordpress.com/2012/01/04/template-password-protected/ + Wed, 04 Jan 2012 16:38:05 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/test-with-secret-password/ + + + + 1168 + 2012-01-04 09:38:05 + 2012-01-04 16:38:05 + closed + closed + template-password-protected + publish + 0 + 0 + post + enter + 0 + + + + + + + 926 + + example@example.org + http://example.org/ + + 2013-03-14 11:56:08 + 2013-03-14 18:56:08 + + 1 + + 0 + 0 + + + + + <link>https://wpthemetestdata.wordpress.com/2009/09/05/edge-case-no-title/</link> + <pubDate>Sat, 05 Sep 2009 16:00:23 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2007/09/04/14/</guid> + <description/> + <content:encoded><![CDATA[This post has no title, but it still must link to the single post view somehow. + +This is typically done by placing the permalink on the post date.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1169</wp:post_id> + <wp:post_date>2009-09-05 09:00:23</wp:post_date> + <wp:post_date_gmt>2009-09-05 16:00:23</wp:post_date_gmt> + <wp:comment_status>closed</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>edge-case-no-title</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>0</wp:menu_order> + <wp:post_type>post</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="category" nicename="classic"><![CDATA[Classic]]></category> + <category domain="post_tag" nicename="edge-case"><![CDATA[edge case]]></category> + <category domain="category" nicename="edge-case-2"><![CDATA[Edge Case]]></category> + <category domain="post_tag" nicename="layout"><![CDATA[layout]]></category> + <category domain="post_tag" nicename="title"><![CDATA[title]]></category> +</item> +<item> + <title>Edge Case: No Content + https://wpthemetestdata.wordpress.com/2009/08/06/edge-case-no-content/ + Thu, 06 Aug 2009 16:39:56 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/this-post-has-no-body/ + + + + 1170 + 2009-08-06 09:39:56 + 2009-08-06 16:39:56 + closed + closed + edge-case-no-content + publish + 0 + 0 + post + + 0 + + + + + + + 927 + + example@example.org + http://example.org/ + + 2013-03-14 12:35:07 + 2013-03-14 19:35:07 + + 1 + + 0 + 0 + + + + Template: Paginated + https://wpthemetestdata.wordpress.com/2012/01/08/template-paginated/ + Sun, 08 Jan 2012 17:00:20 +0000 + themedemos + https://noeltest.wordpress.com/?p=188 + + + +Post Page 2 + + + +Post Page 3]]> + + 1171 + 2012-01-08 10:00:20 + 2012-01-08 17:00:20 + closed + closed + template-paginated + publish + 0 + 0 + post + + 0 + + + + + + + + + <![CDATA[Markup: Title <em>With</em> <b>Mark<sup>up</sup></b>]]> + https://wpthemetestdata.wordpress.com/2013/01/05/markup-title-with-markup/ + Sat, 05 Jan 2013 17:00:49 +0000 + themedemos + http://wptest.io/demo/?p=861 + + +
  • The post title renders the word "with" in italics and the word "markup" in bold (and "up" is superscript).
  • +
  • The post title markup should be removed from the browser window / tab.
  • +]]>
    + + 1173 + 2013-01-05 10:00:49 + 2013-01-05 17:00:49 + closed + closed + markup-title-with-markup + publish + 0 + 0 + post + + 0 + + + + + +
    + + Markup: Title With Special Characters ~`!@#$%^&*()-_=+{}[]/\;:'"?,.> + https://wpthemetestdata.wordpress.com/2013/01/05/title-with-special-characters/ + Sat, 05 Jan 2013 18:00:20 +0000 + themedemos + http://wptest.io/demo/?p=867 + + Latin Character Tests +This is a test to see if the fonts used in this theme support basic Latin characters. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    !"#$%&'()*
    +,-./01234
    56789:;>=<
    ?@ABCDEFGH
    IJKLMNOPQR
    STUVWXYZ[\
    ]^_`abcdef
    ghijklmnop
    qrstuvwxyz
    {|}~
    ]]>
    + + 1174 + 2013-01-05 11:00:20 + 2013-01-05 18:00:20 + closed + closed + title-with-special-characters + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Taumatawhakatangihangakoauauotamateaturipukakapikimaungahoronukupokaiwhenuakitanatahu + https://wpthemetestdata.wordpress.com/2009/10/05/title-should-not-overflow-the-content-area/ + Mon, 05 Oct 2009 19:00:59 +0000 + themedemos + http://wptest.io/demo/?p=877 + + Title should not overflow the content area + +A few things to check for: +
      +
    • Non-breaking text in the title, content, and comments should have no adverse effects on layout or functionality.
    • +
    • Check the browser window / tab title.
    • +
    • If you are a plugin or widget developer, check that this text does not break anything.
    • +
    + +The following CSS properties will help you support non-breaking text. + +
    -ms-word-wrap: break-word;
    +word-wrap: break-word;
    + ]]>
    + + 1175 + 2009-10-05 12:00:59 + 2009-10-05 19:00:59 + closed + closed + title-should-not-overflow-the-content-area + publish + 0 + 0 + post + + 0 + + + + + + + + +
    + + Markup: Text Alignment + https://wpthemetestdata.wordpress.com/2013/01/09/markup-text-alignment/ + Wed, 09 Jan 2013 16:00:39 +0000 + themedemos + http://wptest.io/demo/?p=895 + + Default +This is a paragraph. It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love. Completely neutral and not picking a side or sitting on the fence. It just is. It just freaking is. It likes where it is. It does not feel compelled to pick a side. Leave him be. It will just be better that way. Trust me. +

    Left Align

    +

    This is a paragraph. It is left aligned. Because of this, it is a bit more liberal in it's views. It's favorite color is green. Left align tends to be more eco-friendly, but it provides no concrete evidence that it really is. Even though it likes share the wealth evenly, it leaves the equal distribution up to justified alignment.

    + +

    Center Align

    +

    This is a paragraph. It is center aligned. Center is, but nature, a fence sitter. A flip flopper. It has a difficult time making up its mind. It wants to pick a side. Really, it does. It has the best intentions, but it tends to complicate matters more than help. The best you can do is try to win it over and hope for the best. I hear center align does take bribes.

    + +

    Right Align

    +

    This is a paragraph. It is right aligned. It is a bit more conservative in it's views. It's prefers to not be told what to do or how to do it. Right align totally owns a slew of guns and loves to head to the range for some practice. Which is cool and all. I mean, it's a pretty good shot from at least four or five football fields away. Dead on. So boss.

    + +

    Justify Align

    +

    This is a paragraph. It is justify aligned. It gets really mad when people associate it with Justin Timberlake. Typically, justified is pretty straight laced. It likes everything to be in it's place and not all cattywampus like the rest of the aligns. I am not saying that makes it better than the rest of the aligns, but it does tend to put off more of an elitist attitude.

    ]]>
    + + 1176 + 2013-01-09 09:00:39 + 2013-01-09 16:00:39 + closed + closed + markup-text-alignment + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Markup: Image Alignment + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/ + Fri, 11 Jan 2013 03:15:40 +0000 + themedemos + http://wptest.io/demo/?p=903 + + None, Left, Right, and Center. In addition, they also get the options of Thumbnail, Medium, Large & Fullsize. Be sure to try this page in RTL mode and it should look the same as LTR. +

    Image Alignment 580x300

    +The image above happens to be centered. + +Image Alignment 150x150 The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +Image Alignment 1200x400 + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 1200x400 + +And we try the large image again, with the center alignment since that sometimes is a problem. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 300x200 + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And just when you thought we were done, we're going to do them all over again with captions! + +[caption id="attachment_906" align="aligncenter" width="580"]Image Alignment 580x300 Look at 580x300 getting some caption love.[/caption] + +The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky. + +[caption id="attachment_904" align="alignleft" width="150"]Image Alignment 150x150 Bigger caption than the image usually is.[/caption] + +The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +[caption id="attachment_907" align="alignnone" width="1200"]Image Alignment 1200x400 Comment for massive image for your eyeballs.[/caption] + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. +[caption id="attachment_907" align="aligncenter" width="1200"]Image Alignment 1200x400 This massive image is centered.[/caption] + +And again with the big image centered. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +[caption id="attachment_905" align="alignright" width="300"]Image Alignment 300x200 Feels good to be right all the time.[/caption] + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! One last thing: The last item in this post's content is a thumbnail floated right. Make sure any elements after the content are clearing properly. + +]]>
    + + 1177 + 2013-01-10 20:15:40 + 2013-01-11 03:15:40 + closed + closed + markup-image-alignment + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + +
    + + Markup: HTML Tags and Formatting + https://wpthemetestdata.wordpress.com/2013/01/11/markup-html-tags-and-formatting/ + Sat, 12 Jan 2013 03:22:19 +0000 + themedemos + http://wptest.io/demo/?p=919 + + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    John Doe$1Because that's all Steve Jobs needed for a salary.
    Jane Doe$100KFor all the blogging she does.
    Fred Bloggs$100MPictures are worth a thousand words, right? So Jane x 1,000.
    Jane Bloggs$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    +Robert Frost
    +
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +This tag shows strike-through text. + +Small Tag + +This tag shows smaller text. + +Strong Tag + +This tag shows bold text. + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +This rarely used tag emulates teletype text, which is usually styled like the <code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +This tag shows underlined text. + +Variable Tag + +This allows you to denote variables.]]>
    + + 1178 + 2013-01-11 20:22:19 + 2013-01-12 03:22:19 + closed + closed + markup-html-tags-and-formatting + publish + 0 + 0 + post + + 0 + + + + + + + +
    + + Media: Twitter Embeds + https://wpthemetestdata.wordpress.com/2011/03/15/media-twitter-embeds/ + Tue, 15 Mar 2011 22:47:16 +0000 + themedemos + http://wptest.io/demo/?p=1027 + + Twitter Embeds feature.]]> + + 1179 + 2011-03-15 15:47:16 + 2011-03-15 22:47:16 + closed + closed + media-twitter-embeds + publish + 0 + 0 + post + + 0 + + + + + + + + _oembed_time_d01e104b758ab65a49dfdede5913069c + + + + _oembed_ac49b172e1844531a885a53eff2efd91 + ]]> + + + _oembed_time_ac49b172e1844531a885a53eff2efd91 + + + + _oembed_d01e104b758ab65a49dfdede5913069c + ]]> + + + + Template: Sticky + https://wpthemetestdata.wordpress.com/2012/01/07/template-sticky/ + Sat, 07 Jan 2012 14:07:21 +0000 + themedemos + http://wptest.io/demo/?p=1241 + + +
  • The sticky post should be distinctly recognizable in some way in comparison to normal posts. You can style the .sticky class if you are using the post_class() function to generate your post classes, which is a best practice.
  • +
  • They should show at the very top of the blog index page, even though they could be several posts back chronologically.
  • +
  • They should still show up again in their chronologically correct postion in time, but without the sticky indicator.
  • +
  • If you have a plugin or widget that lists popular posts or comments, make sure that this sticky post is not always at the top of those lists unless it really is popular.
  • +]]>
    + + 1241 + 2012-01-07 07:07:21 + 2012-01-07 14:07:21 + closed + closed + template-sticky + publish + 0 + 0 + post + + 1 + + + + +
    + + Template: Excerpt (Generated) + https://wpthemetestdata.wordpress.com/2012/03/14/template-excerpt-generated/ + Wed, 14 Mar 2012 16:49:22 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=1446 + + excerpt_length and excerpt_more, display properly.]]> + + 1446 + 2012-03-14 09:49:22 + 2012-03-14 16:49:22 + closed + closed + template-excerpt-generated + publish + 0 + 0 + post + + 0 + + + + + + + + + Block category: Common + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-common/ + Fri, 02 Nov 2018 16:20:28 +0000 + >themereviewteam + https://wpthemetestdata.wordpress.com/?p=1730 + + +

    The Common category includes the following blocks: Paragraph, image, headings, list, gallery, quote, audio, cover, video.

    + + + +

    The paragraph block is the default block type.  It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love.

    + + + +

    This paragraph is left aligned.

    + + + +

    This italic paragraph is right aligned.

    + + + +

    Neither of these paragraphs care about politics, but this one is bold, medium sized and has a drop cap.

    + + + +

    This paragraph is centered.

    + + + +

    This paragraph prefers Jazz over Justin Timberlake. It also uses the small font size.

    + + + +

    This paragraph has something important to say:  It has a large font size, which defaults to 36px.

    + + + +

    The huge text size defaults to 46px, but the size can be customized.

    + + + +

    This paragraph is colorful, with a red background and white text (maybe). Colored blocks should have a high enough contrast, so that the text is readable.

    + + + +

    Below this block, you will see a single image with a circle mask applied.

    + + + +
    Image Alignment 150x150
    + + + +

    H1 Heading

    + + + +

    H2 Heading

    + + + +

    H3 Heading

    + + + +

    H4 Heading

    + + + +
    H5 Heading
    + + + +
    H6 Heading
    + + + +

    Ordered list

    + + + +
    1. The software should be licensed under the GNU Public License.
    2. The software should be freely available to anyone to use for any purpose, and without permission.
    3. The software should be open to modifications.
      1. Any modifications should be freely distributable at no cost and without permission from its creators.
    4. The software should provide a framework for translation to make it globally accessible to speakers of all languages.
    5. The software should provide a framework for extensions so modifications and enhancements can be made without modifying core code
    + + + +

    Unordered list

    + + + +
    • One
    • Two
    • Three
      • Four
    • Five
    + + + + + + + +

    Quote

    Cite
    + + + +
    + + + +
    +

    Cover block with background image

    +
    + + + +

    The file block has a setting that lets us show or hide a download button with editable text:

    + + + + + + + + + + + +

    Video blocks have settings for showing and hiding the playback controls. Use autoplay and playback controls responsibly.

    + + + +
    This is a video block caption.
    + + + +

    The video block below is muted and has a poster image that displays before the video starts:

    + + + +
    + +]]>
    + + 1730 + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + +
    + + Block category: Formatting + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-formatting/ + Fri, 02 Nov 2018 16:41:42 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1732 + + +

    The formatting category includes the following blocks:

    + + + +
    The code block starts with
    +<!-- wp:code -->
    +<?php echo 'Hello World'; ?>
    +
    + + +

    The classic block can have almost anything in it.

    +
    +
    a heading
    + + +
    The custom HTML block lets you put HTML that isn't configured like blocks in it. (this div has a width of 45%)
    + + + +
    The preformatted block.

    The Road Not Taken

    Robert Frost
    Two roads diverged in a yellow wood,
    And sorry I could not travel both (\_/)
    And be one traveler, long I stood (='.'=)
    And looked down one as far as I could (")_(")
    To where it bent in the undergrowth;

    Then took the other, as just as fair,
    And having perhaps the better claim, |\_/|
    Because it was grassy and wanted wear; / @ @ \
    Though as for that the passing there ( > º < )
    Had worn them really about the same, `>>x<<´
    / O \
    And both that morning equally lay
    In leaves no step had trodden black.
    Oh, I kept the first for another day!
    Yet knowing how way leads on to way,
    I doubted if I should ever come back.
    I shall be telling this with a sigh
    Somewhere ages and ages hence:
    Two roads diverged in a wood, and I—
    I took the one less traveled by,
    And that has made all the difference.



    and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    + + + +

    The pull quote can be aligned or wide or neither.

    Theme Reviewer
    + + + +
    The table blockThis is the default style.
    The cell next to this is empty.
    Cell #5
    Cell #6
    + + + +
    This is the striped style.This row should have a background color.
    The cell next to this is empty.

    This table has fixed width table cells.

    Make sure that the text wraps correctly.

    + + + +
    The Verse block

    A block for haiku?
    Why not?
    Blocks for all the things!
    +]]>
    + + 1732 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Block category: Layout Elements + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-layout-elements/ + Fri, 02 Nov 2018 16:44:37 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1734 + + +
    +

    The Layout Elements category includes the following blocks: Group, Button, Columns, Media & Text, separator, spacer, read more, and page break.

    + + + +

    This group block has a light green background color.

    + + + + + + + +

    The read more block should be right below this text, but only on list pages of themes that show the full content. It won't show on the single page or on themes showing excerpts.

    +
    + + + + + + + +
    +
    +

    The columns:

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    +
    + + + +
    Boardwalk
    +

    Media &Text

    + + + +

    For displaying media and text next to each other. By default, the media is to the left.

    +
    + + + +
    Golden Gate Bridge
    +

    This time our block is full width, and the image is to the right.

    + + + +

    The background color is a pale blue. 

    +
    + + + +

    Test to make sure that the editor and the front match. To test the Stack on mobile setting, reduce the browser window width.

    + + + +

    The control these settings, the block uses the css classes "has-media-on-the-right" and "is-stacked-on-mobile".

    + + + +

    The separator has three styles: default, wide line, and dots.

    + + + +
    + + + +
    + + + +
    + + + +

    The spacer block has a default height of 100 pixels:

    + + + + + + + +

    And finally, the page break:

    + + + + + + + +

    This paragraph block is on page two, after the page break.

    + + + + +]]>
    + + 1734 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block category: Embeds + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-embeds/ + Fri, 02 Nov 2018 16:51:55 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1738 + + + +

    This post tests various embed blocks:

    + + + +
    +https://twitter.com/WordPress/status/1057136472321613824 +
    Twitter,  wide width
    + + + +
    +https://youtu.be/ex8fMxXJDJw +
    YouTube
    + + + +
    +https://www.facebook.com/6427302910/posts/10156380423617911/ +
    + + + +
    +https://www.instagram.com/p/BpmueLLgEn_/?utm_source=ig_share_sheet&igshid=1hcxphic7p9e2 +
    + + + +
    +https://wordpress.tv/2018/10/14/kjell-reigstad-allan-cole-how-we-made-our-first-gutenberg-powered-theme/ +
    WordPress TV, full width
    + + + +

    +]]>
    + + 1738 + + + + + + + 0 + 0 + + + 0 + + + + + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + + + + + + + + + + ]]> + + + + + + + +

    Many of the WordPress contribution teams have been working hard on the new WordPress editor, and the tools, services,...

    Publicerat av WordPress Måndag 3 september 2018
    ]]>
    +
    + + + + + + + ]]> + + + + + + + + ]]> + + + + + + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + + + + + + ]]> + + + + + + + +

    Many of the WordPress contribution teams have been working hard on the new WordPress editor, and the tools, services,...

    Publicerat av WordPress Måndag 3 september 2018
    ]]>
    +
    + + + + + + + ]]> + + + + + + + + ]]> + + + + + +
    + + Block category: Widgets + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-widgets/ + Fri, 02 Nov 2018 16:45:35 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1736 + + +

    The shortcode widget:

    + + + +[gallery columns=2 ids="770,771"] + + + +

    The Archive Widget:

    + + + + + +

    The same Archive widget but as a dropdown:

    + + + + + + + +

    The Category widget block has an additional option for showing category hierarchies:

    + + + + + +

    The Latest Comments widget can display or hide the avatars, the date, and the comment excerpt:

    + + + + + +

    Here is an example of the Comments widget with all the options disabled. The number of comments has been reduced to two.

    + + + + + +

    And here is the Latest Posts widget in the list view, with dates:

    + + + + + +

    Grid view, now sorted from A -Z.

    + + + + + +

    You can also change the number of columns used to display the latest posts. The block below only displays posts from the Block category:

    + + + + + +

    Search widget:

    + + + + + +

    Tag Cloud widget:

    + + + + + +

    RSS Feed widget:

    + + + + ]]>
    + + 1736 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Columns + https://wpthemetestdata.wordpress.com/2018/11/02/block-columns/ + Fri, 02 Nov 2018 12:10:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1743 + + +
    +
    +

    This page tests how the theme displays the columns block. The first block tests a two column block with paragraphs.

    +
    + + + +
    +

    This is the second column. It should align next to the first column. Reduce the browser window width to test the responsiveness.

    +
    +
    + + + +
    +
    +

    This is the second column block. It has 3 columns.

    +
    + + + +
    +

    Paragraph 2 is in the middle.

    +
    + + + +
    +

    Paragraph 3 is in the last column.

    +
    +
    + + + +
    +
    +

    The third column block has 4 columns. Make sure that all the text is visible and that it is not cut off.

    +
    + + + +
    +

    Now the columns are getting narrower.

    +
    + + + +
    +

    The margins between the columns should be wide enough,

    +
    + + + +
    +

    so that the content of the columns does not run into or overlap each other.

    +
    +
    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    + + + +
    +

    Column five.

    +
    +
    + + + +

    To change the number of columns, select the column block to open the settings panel. You can show up to 6 columns. If the theme has support for wide align, you can also set the alignments to wide and full width.

    + + + +

    Below is a column block with six columns, and no alignment:

    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    + + + +
    +

    Column five.

    +
    + + + +
    +

    Column six.

    +
    +
    + + + +

    Next is a 3 column block, with a wide alignment:

    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    +
    + + + +

    And here is a two column block with full width, and a longer text. Make sure that the text wraps correctly.

    + + + +
    +
    +

    This is column one. Sometimes, you may want to use columns to display a larger text, so, lets add some more words. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna. Praesent sit amet ligula id orci venenatis auctor. Phasellus porttitor, metus non tincidunt dapibus, orci pede pretium neque, sit amet adipiscing ipsum lectus et libero. Aenean bibendum. Curabitur mattis quam id urna. Vivamus dui. Donec nonummy lacinia lorem. Cras risus arcu, sodales ac, ultrices ac, mollis quis, justo. Sed a libero. Quisque risus erat, posuere at, tristique non, lacinia quis, eros.

    +
    + + + +
    +

    Column two. Cras volutpat, lacus quis semper pharetra, nisi enim dignissim est, et sollicitudin quam ipsum vel mi. Sed commodo urna ac urna. Nullam eu tortor. Curabitur sodales scelerisque magna. Donec ultricies tristique pede. Nullam libero. Nam sollicitudin felis vel metus. Nullam posuere molestie metus. Nullam molestie, nunc id suscipit rhoncus, felis mi vulputate lacus, a ultrices tortor dolor eget augue. Aenean ultricies felis ut turpis. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Suspendisse placerat tellus ac nulla. Proin adipiscing sem ac risus. Maecenas nisi. Cras semper.

    +
    +
    + + + +

    We can also add blocks inside columns:

    + + + +
    +
    +
    1. This is a numbered list,
    2. inside a 3 column block
    3. with a wide alignment.
    +
    + + + +
    +

    The middle column has a paragraph with an image block below.

    + + + +
    canola
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna.
    +
    + + + +
    +

    -This third column has a quote

    Theme Reviewer
    +
    +
    + + + +

    But wait there is more!  We also have a block called Media & Text, which is a two column block that helps you display media and text content next to each other, without having to first setup a column block:

    + + + +
    dsc20050813_115856_52
    +

    Media & Text

    + + + +

    A paragraph block sits ready to be used, below your headline.

    + + + +

    +
    +]]>
    + + 1743 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Block: Cover + https://wpthemetestdata.wordpress.com/2018/11/02/block-cover/ + Sat, 03 Nov 2018 12:25:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1745 + + +

    This is a left aligned cover block with a background image.

    + + + +

    The cover block lets you add text on top of images or videos.

    + + + +

    This blocktype has several alignment options, and you can also align or center the text inside the block.

    + + + +

    The background image can be fixed and you can change its opacity and add an overlay color.

    + + + +

    Make sure that the text wraps correctly over the image, and that text markup and alignments are working.

    + + + +

    The next image should have a pink overlay color, the text should be bold and aligned to the left:

    + + + +

    A center aligned cover image block, with a left aligned text.

    + + + +

    This is a full width cover block with a fixed background image with a 20% opacity.

    + + + +

    Make sure that all the text is readable.

    + + + +

    Our last cover image block has a wide width.

    + + + +

    This is a wide cover block with a video background.

    + + + +

    Compare the video and image blocks.
    This block is centered.

    + + + +

    The block below has no alignment, and the text is a link. Overlay colors must also work with video backgrounds.

    + + + + +]]>
    + + 1745 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Button + https://wpthemetestdata.wordpress.com/2018/11/02/block-button/ + Sat, 03 Nov 2018 13:20:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1747 + + +

    Button blocks are not semantically buttons, but links inside a styled div. 

    + + + +

    If you do not add a link, a link tag without an anchor will be used.

    + + + + + + + +

    Check to make sure that the text wraps correctly when the button has more than one line of text, and when it is extra long.

    + + + + + + + +

    Buttons have three styles: 

    + + + + + + + + + + + + + + + +

    If the theme has a custom color palette, test that background color and text color settings work correctly. 

    + + + + + + + +

    Now lets test how buttons display together with large texts.

    + + + +

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio.

    + + + + + + + +

    Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna. Praesent sit amet ligula id orci venenatis auctor. Phasellus porttitor, metus non tincidunt dapibus, orci pede pretium neque, sit amet adipiscing ipsum lectus et libero. Aenean bibendum. Curabitur mattis quam id urna.

    + + + + + + + +

    Vivamus dui. Donec nonummy lacinia lorem. Cras risus arcu, sodales ac, ultrices ac, mollis quis, justo. Sed a libero. Quisque risus erat, posuere at, tristique non, lacinia quis, eros.

    +]]>
    + + 1747 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Quote + https://wpthemetestdata.wordpress.com/2018/11/02/block-quote/ + Sat, 03 Nov 2018 03:05:49 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1749 + + +

    The quote block has two styles, regular:

    + + + +

    Gutenberg is more than an editor.

    The Gutenberg Team
    + + + +

    and large:

    + + + +

    Yes, it is a press, certainly, but a press from which shall flow in inexhaustible streams, the most abundant and most marvelous liquor that has ever flowed to relieve the thirst of men!


    Johannes Gutenberg
    + + + +

    The quote blocks themselves have no alignments but the text can be aligned, bold, italic, and linked:

    + + + +

    Right

    Theme Review
    + + + +

    In addition to the quote block, we also have the pull quote, with a regular and a solid color style.

    + + + +

    You can change the color of the border and the text with the regular style:

    + + + +

    In addition to the quote block, we also have the pull quote.

    Theme Reviewer
    + + + +

    Or change the background color and text color with the solid color style:

    + + + +

    a solid color style

    Theme Reviewer
    +]]>
    + + 1749 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Gallery + https://wpthemetestdata.wordpress.com/2018/11/02/block-gallery/ + Sat, 03 Nov 2018 04:34:24 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1752 + + +

    Gallery blocks have two settings: the number of columns, and whether or not images should be cropped. The default number of columns is three, and the maximum number of columns is eight.

    + + + +

    Below is a three column gallery at full width, with cropped images.

    + + + + + + + + + + + +

    Some more text for taking up space.

    + + + +

    A two column gallery, aligned to the left, linked to media file.

    + + + +

    In the editor, the image captions can be edited directly by clicking on the text.

    + + + +

    If the number of images cannot be divided into the number of columns you have selected, the default is to have the last image(s) automatically stretch to the width of your gallery.

    + + + + + + + +

    A four column gallery with a wide width:

    + + + + + + + +

    A five column gallery with normal images:

    + + + + + + + +

    This is the same gallery, but with cropped images.

    + + + + + + + +

    Six columns: does it work at all window sizes?

    + + + + + + + +

    Seven columns: how does this look on a narrow window?

    + + + + + + + +

    Eight columns:

    + + + + +]]>
    + + 1752 + + + + + + + 0 + 0 + + + 0 + + + + + + + + + +
    + + Block: Image + https://wpthemetestdata.wordpress.com/2018/11/03/block-image/ + Sat, 03 Nov 2018 15:20:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1755 + + +

    Welcome to image alignment! If you recognize this post, it is because these are blocks that have been converted from the classic Markup: Image Alignment post. The best way to demonstrate the ebb and flow of the various image positioning options is to nestle them snuggly among an ocean of words. Grab a paddle and let's get started. Be sure to try it in RTL mode. Left should stay left and right should stay right for both reading directions.

    + + + +

    On the topic of alignment, it should be noted that users can choose from the options of None, Left, Right, and Center. If the theme has added support for align wide, images can also be wide and full width. Be sure to test this page in RTL mode.

    + + + +

    In addition, they also get the options of the image dimensions 25%, 50%, 75%, 100% or a set width and height.

    + + + +
    Image Alignment 580x300
    + + + +

    The image above happens to be centered.

    + + + +
    Image Alignment 150x150
    + + + +

    The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned.

    + + + +

    As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished!

    + + + +

    And now for a massively large image. It also has no alignment.

    + + + +
    Image Alignment 1200x400
    + + + +

    The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.

    + + + +
    Image Alignment 300x200
    + + + +

    And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there… Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently.

    + + + +

    In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah… Just like that. It never felt so good to be right.

    + + + +

    And just when you thought we were done, we're going to do them all over again with captions!

    + + + +
    Image Alignment 580x300
    Look at 580x300 getting some caption love.
    + + + +

    The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky.

    + + + +
    Image Alignment 150x150
    Itty-bitty caption.
    + + + +

    The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned.

    + + + +

    As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished!

    + + + +

    And now for a massively large image. It also has no alignment.

    + + + +
    Image Alignment 1200x400
    Massive image comment for your eyeballs.
    + + + +

    The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.

    + + + +
    Image Alignment 300x200
    Feels good to be right all the time.
    + + + +

    And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there… Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently.

    + + + +

    In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah… Just like that. It never felt so good to be right.

    + + + +

    Imagine that we would find a use for the extra wide image! This image has the wide width alignment:

    + + + +
    Image Alignment 1200x4002
    + + + +

    Can we go bigger? This image has the full width alignment:

    + + + +
    Image Alignment 1200x4002
    + + + +

    And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! One last thing: The last item in this post's content is a thumbnail floated right. Make sure any elements after the content are clearing properly.

    + + + +
    +]]>
    + + 1755 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Ελληνικά-Greek + https://wpthemetestdata.wordpress.com/greek/ + Fri, 14 Feb 2020 10:31:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1809 + + Headings Επικεφαλίδες +

    Επικεφαλίδα 1 Header one

    +

    Επικεφαλίδα 2 Header two

    +

    Επικεφαλίδα 3 Header three

    +

    Επικεφαλίδα 2 Header four

    +
    Επικεφαλίδα 5 Header five
    +
    Επικεφαλίδα 6Header six
    +

    Παράθεση άλλου Blockquotes

    +Single line blockquote: Μια γραμμή +
    Πάντα να είναι περίεργος.
    +Πολλές γραμμέ με αναφορά Multi line blockquote with a cite reference: +
    Το HTML <blockquote> ElementHTML Block Quotation Element) καταδεικνύει ότι το κείμενο έχει μια παράθεση. Συνήθως οπτικοποιείται με εσοχή (δείτε Σημειώσεις για το πως να το αλλάξετε. Ίσως να δίνεται και URL πηγής με την χρήση του cite attribute, μπλα, μπλα <cite> .
    +multiple contributors - MDN HTML element reference - blockquote +

    Πίνακες Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Υπάλληλος EmployeeΜισθός Salary
    Τάδε κάποιος$1Γιατί τόσα χρειάζεται για να ζήσει
    Jane Doe$100KFor all the blogging she does.
    Fred Bloggs$100MPictures are worth a thousand words, right? So Jane x 1,000.
    Jane Bloggs$100BWith hair like that?! Enough said...
    +

    Λίστες Definition Lists

    +
    +
    Τίτλος λίστας Definition List Title
    +
    Υποδιαίρεση λίστας Definition list division.
    +
    +

    Λίστα με κουκίδες Unordered Lists (Nested)

    +
      +
    • Πρώτο στοιχείο List item one +
        +
      • Στοιχείο πρώτο List item one +
          +
        • Στοιχείο λίστα ένα List item one
        • +
        • Στοιχείο λίστας δύο List item two
        • +
        +
      • +
      • Στοιχείο δεύτερο -item two
      • +
      +
    • +
    • Στοιχειο δύο List item two
    • +
    +

    Αριθμημένη λίστα(Nested)

    +
      +
    1. Στοιχειο ξεκινά με 8-start at 8 +
        +
      1. Στοιχείο λίστας ενα List item one +
          +
        1. Στοιχείο λίστας ενα -reversed attribute
        2. +
        3. Στοιχείο λίστας δύο
        4. +
        +
      2. +
      3. Δεύτερο στοιχείο
      4. +
      +
    2. +
    3. Στοιχείο δύο
    4. +
    +

    Ετικέττες HTML Tags

    +Διεύθυνση Address Tag + +
    1 Απέραντη διαδρομή Infinite Loop +Απλωπολή , ΤΚ 95014 +Ελλάδα
    Αγκυρωση Anchor Tag (aka. Link) + +Πάραδειγμα συνδέσμου. + +Συντομογραφία Abbreviation Tag + +Η συντομογραφία κτλ σημαίνει "Και τα λοιπά". + +Ακρωνύμιο Acronym Tag + +Το ακρωνύμιο κυρ σημαίνει "Κύριος". + +Big Tag + +Αυτό είναι μεγάλο θέμα + +Cite Tag + +"Φάε το φαϊ σου" --Όλες οι μαμάδες + +Code Tag + +This tag styles blocks of code. +.post-title { +margin: 0 0 5px; +font-weight: bold; +font-size: 38px; +line-height: 1.2; +και μία γραμμή με πολύ πάρα πολύ υπερβολικά πάρα πολύ μεγάλο κείμενο που πρέπει να δούμε πως το χειρίζεται η γραμματοσειρά και αν ξεχειλίζει από τις γραμμές και δημιουργεί πρόβλημα; +} + +Διαγραφή Delete Tag + +Μπορείτε να διαγράφεται κείμενο, αλλά δεν συνιστάται. + +Έμφαση Emphasize Tag + +Θα πρέπει να κάνει ιταλικ italicize το κείμενο. + +Εισαγωγή Insert Tag + +Αυτό το tag υποδηλώνει εισηγμένο inserted κείμενο. + +Keyboard Tag + +Αυτό το ελάχιστο γνωστό κείμενο πληκτρολογίου keyboard Tag, συνήθως μορφοποιείται όμοια με το <κώδικα code> tag. + +Προδιαμορφωμένο Preformatted Tag +

    Ο Δρόμος που δεν διάλεξα - The Road Not Taken

    +
    Robert Frost
    +	 Δυο δρόμοι διασταυρώθηκαν σ' ένα χρυσαφένιο δάσος ,
    +	 Και προς λύπη μου και τους δυο τα πόδια μου να ταξιδέψουν δεν μπορούσαν
    +	 Κι επί μακρόν εστάθηκα , καθώς ένας ήμουν ταξιδευτής μονάχος ,
    +	 κι έστρεψα το βλέμμα μου στον πρώτο όσο να χαθεί στο βάθος
    +	 μέχρι εκεί που χάνονταν στα άγρια χόρτα που βλαστούσαν.
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	και μία μακριά, πάρα πολύ μακριά, υπερβολικά μακροσκελής δίχως νόημα πρόταση για να δούμε πως το χειρίζεται το θέμα εμφάνισης και αν αναδιπλώνεται, κρύβεται ή ξεχειλίζει;
    +
    +Quote Tag for short, inline quotes + +Προγραμματιστές, προγραμματιστές, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +Αυτή η ετικέτα είναι με διαγράμμιση strike-through κείμενο text. + +Μικρά Small Tag + +Αυτή η ετικέτα είναι μικρότερο smaller κείμενο text. + +Strong Tag + +Αυτή η ετικέτα δείχνει έντονο bold κείμενο text. + +Subscript Tag + +Getting our science styling on with H2 δύοO, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2 δύο, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +Αυτή η ετικέτα δείχνει τυλετυπος teletype κείμενο, which is usually styled like the <κώδικα code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +Αυτή η ετικέτα δείχνει υπογράμμιση underlined text. + +Variable Tag + +Αυτή η ετικέτα δείχνει παράμετροι variables.]]>
    + + 1809 + + + + + + + 0 + 0 + + + 0 + + + + + + + + +
    + + Επίπεδο 2 -Second Greek level + https://wpthemetestdata.wordpress.com//greek/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-2/ + Fri, 14 Feb 2020 10:31:47 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1811 + + + + 1811 + + + + + + + 1809 + 0 + + + 0 + + + + + + + + + + + Επίπεδο 3 + https://wpthemetestdata.wordpress.com/greek/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-2/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-3/ + Fri, 14 Feb 2020 10:32:50 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1813 + + + + 1813 + + + + + + + 1811 + 0 + + + 0 + + + + + + + + + + + <![CDATA[WP 6.1 Font size scale]]> + https://wpthemetestdata.wordpress.com/wp-6-1-font-size-scale/ + Mon, 16 Jan 2023 07:08:31 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-font-size-scale/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Small H2 Heading

    + + + +

    Medium H2 Heading

    + + + +

    Large H2 Heading

    + + + +

    Extra Large H2 Heading

    + + + +

    Small paragraph

    + + + +

    Medium paragraph

    + + + +

    Large paragraph

    + + + +

    Extra Large paragraph

    +]]> +
    + + 163 + + + + + + + + + 0 + 0 + + + 0 + + + + + + +
    + + <![CDATA[WP 6.1 spacing presets]]> + https://wpthemetestdata.wordpress.com/wp-6-1-spacing-presets/ + Mon, 16 Jan 2023 06:56:53 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-spacing-presets/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    On this page, some group blocks have border or background color set to increase visibility.

    + + + +
    +

    This group has a no background color and no additional spacing set.

    +
    + + + +
    +

    This group has a background color but no additional spacing set.

    +
    + + + +
    +

    This group has a 1px border and padding preset 1

    +
    + + + +
    +

    This group has padding preset 1

    +
    + + + +
    +

    This group has a 1px border and padding preset 2

    +
    + + + +
    +

    This group has a background color and padding preset 3

    +
    + + + +
    +

    This group has a background color and padding preset 4

    +
    + + + +
    +

    This group has a background color and padding preset 5

    +
    + + + +
    +

    This group has a background color and padding preset 6

    +
    + + + +
    +

    This group has a background color and padding preset 7

    +
    + + + +
    +

    This group has padding preset 7

    +
    + + + +
    +

    This group has a background color and margin preset 1

    +
    + + + +
    +

    This group has a background color and margin preset 2

    +
    + + + +
    +

    This group has a background color and margin preset 3

    +
    + + + +
    +

    This group has a background color and margin preset 4

    +
    + + + +
    +

    This group has a background color and margin preset 5

    +
    + + + +
    +

    This group has a background color and margin preset 6

    +
    + + + +
    +

    This group has a background color and margin preset 7

    +
    + + + +
    +

    This group has a 1px border, padding preset 4 and margin preset 4

    +
    + + + +
    +

    This group has padding preset 4 and margin preset 4

    +
    +]]>
    + + 150 + + + + + + + + + 0 + 0 + + + 0 + + + + + + +
    + + <![CDATA[WP 6.1 Theme block category]]> + https://wpthemetestdata.wordpress.com/wp-6-1-theme-block-category/ + Fri, 13 Jan 2023 18:38:05 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-theme-block-category/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Navigation block with page list:

    + + + + + + + +

    Site logo:

    + + + + + +

    Site title:

    + + + + + +

    Tagline block:

    + + + + + +

    Query loop "Title & Date" variation:

    + + + +
    + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Title & Excerpt" variation:

    + + + +
    + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Title, Date & Excerpt" variation:

    + + + +
    + + + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Image, Date & Title" variation:

    + + + +
    + + + + + + + + + + + + + + + + + +

    + +
    + + + +

    Avatar block:

    + + + + + +

    Post title block:

    + + + + + +

    Post excerpt:

    + + + + + +

    Post featured image:

    + + + + + +

    Post author:

    + + + + + +

    Post date:

    + + + + + +

    Categories:

    + + + + + +

    Tags:

    + + + + + +

    Next post & previous post:

    + + + + + + + +

    Read More:

    + + + + + +

    Comments block:

    + + + +
    + + + +
    +
    + + + +
    + + +
    + +
    + + + + +
    +
    + + + + + + + + + + + + + + +

    Post comments form block:

    +
    + + + + + +

    Login/out:

    + + + + + + + + + + + +

    Author biography block:

    + + + + + + + + + +

    Term description, archive title, search results title can not be shown on single posts.

    +]]>
    + + 51 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + + + + 2 + + + https://wpthemetestdata.wordpress.com/ + + + + + + + 0 + 0 + +
    + + <![CDATA[WP 6.1 Widgets block category]]> + https://wpthemetestdata.wordpress.com/wp-6-1-widgets-block-category/ + Fri, 13 Jan 2023 18:22:21 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-widgets-block-category/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Archives block:

    + + + + + + + +

    Categories list:

    + + + + + +

    Custom HTML:

    + + + + test + + + +

    Latest comments:

    + + + + + +

    Latest posts:

    + + + + + +

    Page list block:

    + + + + + +

    RSS block:

    + + + + + + + + + + + + + + + +

    Shortcode block:

    + + + + + +

    Social links:

    + + + + + + + + + + + + + + + +

    Tag cloud:

    + + + + + +

    +]]>
    + + 34 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Design category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-design-category-blocks/ + Fri, 13 Jan 2023 18:03:23 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-design-category-blocks/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + + + + + +
    +
    +

    One single column inside a columns block.

    +
    +
    + + + +
    +
    +

    Column one. The background color is on the single column.

    +
    + + + +
    +

    Column two

    +
    +
    + + + +
    +
    +

    Column one. The background color is on the parent columns block.

    +
    + + + +
    +

    Column two

    +
    + + + +
    +

    Column three

    +
    +
    + + + +
    +

    Group with paragraph inside. Below are the group block variations:

    +
    + + + +
    +

    Row

    + + + +

    Row

    +
    + + + +
    +

    Stack

    + + + +

    Stack

    +
    + + + +

    More block:

    + + + + + + + +

    Page break:

    + + + + + + + +

    Separators:

    + + + +

    Default style, no alignment:

    + + + +
    + + + +

    Default style, wide alignment:

    + + + +
    + + + +

    Default style, full width:

    + + + +
    + + + +

    Default style, align center:

    + + + +
    + + + +

    Wide style, no alignment:

    + + + +
    + + + +

    Wide style, wide alignment:

    + + + +
    + + + +

    Wide style, full width:

    + + + +
    + + + +

    Wide style, align center:

    + + + +
    + + + +

    Dotted style, no alignment:

    + + + +
    + + + +

    Dotted style, wide alignment:

    + + + +
    + + + +

    Dotted style, full width:

    + + + +
    + + + +

    Dotted style, align center:

    + + + +
    + + + +

    Spacer:

    + + + + +]]>
    + + 24 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Media category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-media-category-blocks/ + Fri, 13 Jan 2023 18:02:28 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-media-category-blocks/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Image block:

    + + + +
    dsc20050727_091048_222
    + + + +

    Gallery:

    + + + + + + + +

    Audio:

    + + + +
    + + + +

    Cover:

    + + + +
    Wind Farm
    +

    Write title...

    +
    + + + +
    +

    Fixed background

    +
    + + + +
    +

    Repeated background

    +
    + + + +
    +

    Fixed and Repeated background

    +
    + + + +
    dsc20050727_091048_222
    +

    Duotone

    +
    + + + +
    Rain Ripples
    +

    Top left

    +
    + + + +
    Rain Ripples
    +

    Top center

    +
    + + + +
    Rain Ripples
    +

    Top right

    +
    + + + +
    Rain Ripples
    +

    Center left

    +
    + + + +
    Rain Ripples
    +

    Center right

    +
    + + + +
    Rain Ripples
    +

    Bottom left

    +
    + + + +
    Rain Ripples
    +

    Bottom center

    +
    + + + +
    Rain Ripples
    +

    Bottom right

    +
    + + + + + + + +
    Boardwalk
    +

    This is the Media & Text block with an image on the left.

    +
    + + + +
    Image Alignment 1200x4002
    +

    This is the Media & Text block with a cropped image on the left

    +
    + + + +
    +

    This is the Media & Text block with a video the right.

    +
    + + + +
    +]]>
    + + 21 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Text category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-text-category-blocks/ + Fri, 13 Jan 2023 17:46:19 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-text-category-blocks + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Paragraph

    + + + +

    H1 Heading

    + + + +

    H2 Heading

    + + + +

    H3 Heading

    + + + +

    H4 Heading

    + + + +
    H5 Heading
    + + + +
    H6 Heading
    + + + +
      +
    • List
    • + + + +
    • List
    • +
    + + + +
      +
    1. List
    2. + + + +
    3. List
    4. +
    + + + +
      +
    1. List +
        +
      • List
      • +
      +
    2. +
    + + + +
    +

    Quote block

    +citation
    + + +

    classic block

    + + +
    code block
    + + + +
    Preformatted block
    + + + +

    Pull quote

    Citation
    + + + +
    table celltable cell two
    table cell threetable cell four
    Table caption
    + + + +
    header label oneheader label two
    table celltable cell two
    table cell threetable cell four
    footer label onefooter label two
    Table caption
    + + + +
    Verse block
    +]]>
    + + 8 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + +
    + + Keyboard navigation + https://wpthemetestdata.wordpress.com/2018/10/20/keyboard-navigation/ + Sun, 21 Oct 2018 03:03:48 +0000 + + https://wpthemetestdata.wordpress.com/?p=1724 + + +

    There are many different ways to use the web besides a mouse and a pair of eyes. Users navigate for example with a keyboard only or with their voice.

    + + + +

    All the functionality, including menus, links and forms should work using a keyboard only. This is essential for all assistive technology to work properly. The only way to test this, at the moment, is manually. The best time to test this is during development.

    + + + +

    How to keyboard test:

    + + + +

    Tab through your pages, links and forms to do the following tests:

    + + + +
    • Confirm that all links can be reached and activated via keyboard, including any in dropdown submenus.
    • Confirm that all links get a visible focus indicator (e.g., a border highlight).
    • Confirm that all visually hidden links (e.g. skip links) become visible when in focus.
    • Confirm that all form input fields and buttons can be accessed and used via keyboard.
    • Confirm that all interactions, buttons, and other controls can be triggered via keyboard — any action you can complete with a mouse must also be performable via keyboard.
    • Confirm that focus doesn’t move in unexpected ways around the page.
    • Confirm that using shift+tab to move backwards works as well.
    + + + +

    Resources

    + + + + +]]>
    + + 1724 + + + + + + + 0 + 0 + + + + 0 +
    + + About The Tests + https://wpthemetestdata.wordpress.com/about/ + Mon, 26 Jul 2010 02:40:01 +0000 + themedemos + https://wpthemetestdata.wordpress.com/about/ + + WordPress Theme Development Resources + +
      +
    1. See the WordPress Theme Developer Handbook for examples of best practices.
    2. +
    3. See the WordPress Code Reference for more information about WordPress' functions, classes, methods, and hooks.
    4. +
    5. See Theme Unit Test for a robust test suite for your Theme and get the latest version of the test data you see here.
    6. +
    7. See Releasing Your Theme for a guide to submitting your Theme to the Theme Directory.
    8. +
    ]]>
    + + 2 + 2010-07-25 19:40:01 + 2010-07-26 02:40:01 + closed + closed + about + publish + 0 + 1 + page + + 0 +
    + + Lorem Ipsum + https://wpthemetestdata.wordpress.com/lorem-ipsum/ + Tue, 04 Sep 2007 16:52:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/lorem-ipsum/ + + + + 146 + 2007-09-04 09:52:50 + 2007-09-04 16:52:50 + closed + closed + lorem-ipsum + publish + 0 + 7 + page + + 0 + + + Page with comments + https://wpthemetestdata.wordpress.com/about/page-with-comments/ + Tue, 04 Sep 2007 17:47:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/page-with-comments/ + + + + 155 + 2007-09-04 10:47:47 + 2007-09-04 17:47:47 + open + closed + page-with-comments + publish + 2 + 3 + page + + 0 + + 167 + + anon@example.com + + + 2007-09-04 10:49:28 + 2007-09-04 00:49:28 + + 1 + + 0 + 0 + + + 168 + + tellyworth+test2@example.com + + + 2007-09-04 10:49:03 + 2007-09-04 00:49:03 + + 1 + + 0 + 0 + + + 169 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2007-09-04 10:48:51 + 2007-09-04 17:48:51 + + 1 + + 0 + 0 + + + 1017 + + themereviewteam@gmail.com + + + 2014-12-10 01:56:24 + 2014-12-10 08:56:24 + + 0 + + 168 + 0 + + + + Page with comments disabled + https://wpthemetestdata.wordpress.com/about/page-with-comments-disabled/ + Tue, 04 Sep 2007 17:48:10 +0000 + themedemos + https://wpthemetestdata.wordpress.com/page-with-comments-disabled/ + + + + 156 + 2007-09-04 10:48:10 + 2007-09-04 17:48:10 + closed + closed + page-with-comments-disabled + publish + 2 + 4 + page + + 0 + + + Level 3 + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3/ + Tue, 11 Dec 2007 06:23:16 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-3/ + + + + 172 + 2007-12-11 16:23:16 + 2007-12-11 06:23:16 + closed + closed + level-3 + publish + 173 + 0 + page + + 0 + + + Level 2 + https://wpthemetestdata.wordpress.com/level-1/level-2/ + Tue, 11 Dec 2007 06:23:33 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-2/ + + + + 173 + 2007-12-11 16:23:33 + 2007-12-11 06:23:33 + closed + closed + level-2 + publish + 174 + 0 + page + + 0 + + + Level 1 + https://wpthemetestdata.wordpress.com/level-1/ + Tue, 11 Dec 2007 23:25:40 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-1/ + + + + 174 + 2007-12-11 16:25:40 + 2007-12-11 23:25:40 + closed + closed + level-1 + publish + 0 + 5 + page + + 0 + + + Clearing Floats + https://wpthemetestdata.wordpress.com/about/clearing-floats/ + Sun, 01 Aug 2010 16:42:26 +0000 + themedemos + https://wpthemetestdata.wordpress.com/ + + This is the second page]]> + + 501 + 2010-08-01 09:42:26 + 2010-08-01 16:42:26 + closed + closed + clearing-floats + publish + 2 + 2 + page + + 0 + + + canola2 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/canola2/ + Mon, 16 Jun 2008 13:17:54 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/canola2.jpg + + + + 611 + 2008-06-16 06:17:54 + 2008-06-16 13:17:54 + open + closed + canola2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/canola2.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + dsc20050727_091048_222 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050727_091048_222/ + Mon, 16 Jun 2008 13:20:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050727_091048_222.jpg + + + + 616 + 2008-06-16 06:20:37 + 2008-06-16 13:20:37 + open + closed + dsc20050727_091048_222 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050727_091048_222.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + dsc20050813_115856_52 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050813_115856_52/ + Mon, 16 Jun 2008 13:20:57 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050813_115856_52.jpg + + + + 617 + 2008-06-16 06:20:57 + 2008-06-16 13:20:57 + open + closed + dsc20050813_115856_52 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050813_115856_52.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Front Page + https://wpthemetestdata.wordpress.com/front-page/ + Sat, 21 May 2011 01:49:43 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=701 + + + + 701 + 2011-05-20 18:49:43 + 2011-05-21 01:49:43 + open + closed + front-page + publish + 0 + 0 + page + + 0 + + + a Blog page + https://wpthemetestdata.wordpress.com/blog/ + Sat, 21 May 2011 01:51:43 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=703 + + + + 703 + 2011-05-20 18:51:43 + 2011-05-21 01:51:43 + open + closed + blog + publish + 0 + 0 + page + + 0 + + 1016 + + example@example.com + + + 2014-11-29 21:03:05 + 2014-11-30 04:03:05 + + 0 + + 0 + 0 + + + + Bell on Wharf + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/100_5478/ + Mon, 16 Jun 2008 21:34:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/100_5478.jpg + + + + 754 + 2008-06-16 14:34:50 + 2008-06-16 21:34:50 + open + closed + 100_5478 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/100_5478.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Golden Gate Bridge + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/100_5540/ + Mon, 16 Jun 2008 21:35:55 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/100_5540.jpg + + + + 755 + 2008-06-16 14:35:55 + 2008-06-16 21:35:55 + open + closed + 100_5540 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/100_5540.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sunburst Over River + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/cep00032/ + Mon, 16 Jun 2008 21:41:24 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/cep00032.jpg + + + + 756 + 2008-06-16 14:41:24 + 2008-06-16 21:41:24 + open + closed + cep00032 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/cep00032.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Boardwalk + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dcp_2082/ + Mon, 16 Jun 2008 21:41:27 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dcp_2082.jpg + + + + 757 + 2008-06-16 14:41:27 + 2008-06-16 21:41:27 + open + closed + dcp_2082 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dcp_2082.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Yachtsody in Blue + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc03149/ + Mon, 16 Jun 2008 21:41:33 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc03149.jpg + + + + 758 + 2008-06-16 14:41:33 + 2008-06-16 21:41:33 + open + closed + dsc03149 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc03149.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Rain Ripples + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc04563/ + Mon, 16 Jun 2008 21:41:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc04563.jpg + + + + 759 + 2008-06-16 14:41:37 + 2008-06-16 21:41:37 + open + closed + dsc04563 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc04563.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sydney Harbor Bridge + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc09114/ + Mon, 16 Jun 2008 21:41:41 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc09114.jpg + + + + 760 + 2008-06-16 14:41:41 + 2008-06-16 21:41:41 + open + closed + dsc09114 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc09114.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Wind Farm + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050102_192118_51/ + Mon, 16 Jun 2008 21:41:42 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050102_192118_51.jpg + + + + 761 + 2008-06-16 14:41:42 + 2008-06-16 21:41:42 + open + closed + dsc20050102_192118_51 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050102_192118_51.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Antique Farm Machinery + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20051220_160808_102/ + Mon, 16 Jun 2008 21:41:45 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_160808_102.jpg + + + + 762 + 2008-06-16 14:41:45 + 2008-06-16 21:41:45 + open + closed + dsc20051220_160808_102 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_160808_102.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Rusty Rail + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20051220_173257_119/ + Mon, 16 Jun 20081 21:47:17 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_173257_119.jpg + + + + 764 + 2008-06-16 14:47:17 + 2008-06-16 21:47:17 + open + closed + dsc20051220_173257_119 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_173257_119.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sea and Rocks + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dscn3316/ + Mon, 16 Jun 2008 21:47:20 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dscn3316.jpg + + + + 765 + 2008-06-16 14:47:20 + 2008-06-16 21:47:20 + open + closed + dscn3316 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dscn3316.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Big Sur + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/michelle_049/ + Mon, 16 Jun 2008 21:47:23 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/michelle_049.jpg + + + + 766 + 2008-06-16 14:47:23 + 2008-06-16 21:47:23 + open + closed + michelle_049 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/michelle_049.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Windmill + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dcf-1-0/ + Mon, 16 Jun 2008 21:47:26 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/windmill.jpg + + + + 767 + 2008-06-16 14:47:26 + 2008-06-16 21:47:26 + open + closed + dcf-1-0 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/windmill.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Huatulco Coastline + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/alas-i-have-found-my-shangri-la/ + Mon, 16 Jun 2008 21:49:48 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0513-1.jpg + + + + 768 + 2008-06-16 14:49:48 + 2008-06-16 21:49:48 + open + closed + alas-i-have-found-my-shangri-la + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0513-1.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Brazil Beach + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_0747/ + Mon, 16 Jun 2008 21:50:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0747.jpg + + + + 769 + 2008-06-16 14:50:37 + 2008-06-16 21:50:37 + open + closed + img_0747 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0747.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Huatulco Coastline + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_0767/ + Mon, 16 Jun 2008 21:51:19 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0767.jpg + + + + 770 + 2008-06-16 14:51:19 + 2008-06-16 21:51:19 + open + closed + img_0767 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0767.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Boat Barco Texture + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_8399/ + Mon, 16 Jun 2008 21:51:57 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_8399.jpg + + + + 771 + 2008-06-16 14:51:57 + 2008-06-16 21:51:57 + open + closed + img_8399 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_8399.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Resinous + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20040724_152504_532-2/ + Mon, 04 Jun 2012 18:36:56 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg + + + + 807 + 2012-06-04 11:36:56 + 2012-06-04 18:36:56 + open + closed + dsc20040724_152504_532-2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg + + _attachment_original_parent_id + + + + + St. Louis Blues + https://wpthemetestdata.wordpress.com/2010/07/02/post-format-audio/originaldixielandjazzbandwithalbernard-stlouisblues/ + Mon, 16 Jun 2008 16:49:29 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3 + + + + 821 + 2008-06-16 09:49:29 + 2008-06-16 16:49:29 + open + closed + originaldixielandjazzbandwithalbernard-stlouisblues + inherit + 587 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3 + + + OLYMPUS DIGITAL CAMERA + https://wpthemetestdata.wordpress.com/about/clearing-floats/olympus-digital-camera/ + Thu, 05 Aug 2010 18:07:34 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2010/08/manhattansummer.jpg + + + + 827 + 2010-08-05 11:07:34 + 2010-08-05 18:07:34 + open + closed + olympus-digital-camera + inherit + 501 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2010/08/manhattansummer.jpg + + + Image Alignment 580x300 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-580x300/ + Fri, 15 Mar 2013 00:44:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg + + + + 967 + 2013-03-14 19:44:50 + 2013-03-15 00:44:50 + open + open + image-alignment-580x300 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Image Alignment 150x150 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-150x150/ + Fri, 15 Mar 2013 00:44:49 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg + + + + 968 + 2013-03-14 19:44:49 + 2013-03-15 00:44:49 + open + open + image-alignment-150x150 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Horizontal Featured Image + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-horizontal/featured-image-horizontal-2/ + Fri, 15 Mar 2013 20:40:38 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-horizontal.jpg + + + + 1022 + 2013-03-15 15:40:38 + 2013-03-15 20:40:38 + open + open + featured-image-horizontal-2 + inherit + 1011 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-horizontal.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + I Am Worth Loving Wallpaper + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/soworthloving-wallpaper/ + Thu, 14 Mar 2013 14:58:24 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/soworthloving-wallpaper.jpg + + + + 1023 + 2013-03-14 09:58:24 + 2013-03-14 14:58:24 + open + open + soworthloving-wallpaper + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/soworthloving-wallpaper.jpg + + _wp_attachment_image_alt + + + + + Image Alignment 300x200 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-300x200/ + Fri, 15 Mar 2013 00:44:49 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg + + + + 1025 + 2013-03-14 19:44:49 + 2013-03-15 00:44:49 + open + open + image-alignment-300x200 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Vertical Featured Image + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-vertical/featured-image-vertical-2/ + Fri, 15 Mar 2013 20:41:09 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-vertical.jpg + + + + 1027 + 2013-03-15 15:41:09 + 2013-03-15 20:41:09 + open + open + featured-image-vertical-2 + inherit + 1016 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-vertical.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Image Alignment 1200x4002 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-1200x4002/ + Fri, 15 Mar 2013 00:44:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg + + + + 1029 + 2013-03-14 19:44:50 + 2013-03-15 00:44:50 + open + open + image-alignment-1200x4002 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Unicorn Wallpaper + https://wpthemetestdata.wordpress.com/2010/08/08/post-format-image/unicorn-wallpaper/ + Fri, 14 Dec 2012 03:10:39 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2012/12/unicorn-wallpaper.jpg + + + + 1045 + 2012-12-13 22:10:39 + 2012-12-14 03:10:39 + open + open + unicorn-wallpaper + inherit + 1158 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2012/12/unicorn-wallpaper.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Pages + https://wpthemetestdata.wordpress.com/2013/04/09/pages/ + Tue, 09 Apr 2013 13:37:45 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/pages + + + + 1100 + 2013-04-09 06:37:45 + 2013-04-09 13:37:45 + open + closed + pages + publish + 0 + 2 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Categories + https://wpthemetestdata.wordpress.com/2013/04/09/categories/ + Tue, 09 Apr 2013 13:37:45 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/categories + + + + 1101 + 2013-04-09 06:37:45 + 2013-04-09 13:37:45 + open + closed + categories + publish + 0 + 10 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1112/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1112</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test markup tags and styles.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1112</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1112</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>21</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[4675]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1115/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1115</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test post formats.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1115</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1115</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>24</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[44090582]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1118/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1118</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test unpublished posts.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1118</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1118</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>28</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[54090]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>Depth + https://wpthemetestdata.wordpress.com/2013/04/09/depth/ + Tue, 09 Apr 2013 13:37:46 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/depth + + + + 1119 + 2013-04-09 06:37:46 + 2013-04-09 13:37:46 + open + closed + depth + publish + 0 + 29 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 01 + https://wpthemetestdata.wordpress.com/2013/04/09/level-01/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-01 + + + + 1120 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-01 + publish + 0 + 30 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 02 + https://wpthemetestdata.wordpress.com/2013/04/09/level-02/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-02 + + + + 1121 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-02 + publish + 0 + 31 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 03 + https://wpthemetestdata.wordpress.com/2013/04/09/level-03/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-03 + + + + 1122 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-03 + publish + 0 + 32 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 04 + https://wpthemetestdata.wordpress.com/2013/04/09/level-04/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-04 + + + + 1123 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-04 + publish + 0 + 33 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 05 + https://wpthemetestdata.wordpress.com/2013/04/09/level-05/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-05 + + + + 1124 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-05 + publish + 0 + 34 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 06 + https://wpthemetestdata.wordpress.com/2013/04/09/level-06/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-06 + + + + 1125 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-06 + publish + 0 + 35 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 07 + https://wpthemetestdata.wordpress.com/2013/04/09/level-07/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-07 + + + + 1126 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-07 + publish + 0 + 36 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 08 + https://wpthemetestdata.wordpress.com/2013/04/09/level-08/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-08 + + + + 1127 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-08 + publish + 0 + 37 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 09 + https://wpthemetestdata.wordpress.com/2013/04/09/level-09/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-09 + + + + 1128 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-09 + publish + 0 + 38 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 10 + https://wpthemetestdata.wordpress.com/2013/04/09/level-10/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-10 + + + + 1129 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-10 + publish + 0 + 39 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Advanced + https://wpthemetestdata.wordpress.com/2013/04/09/advanced/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/advanced + + + + 1130 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + advanced + publish + 0 + 40 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu Description + https://wpthemetestdata.wordpress.com/2013/04/09/menu-description/ + Tue, 09 Apr 2013 13:37:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-description + + + + 1142 + 2013-04-09 06:37:50 + 2013-04-09 13:37:50 + open + closed + menu-description + publish + 0 + 44 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu Title Attribute + https://wpthemetestdata.wordpress.com/2013/04/09/menu-title-attribute/ + Tue, 09 Apr 2013 13:37:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-title-attribute + + + + 1143 + 2013-04-09 06:37:50 + 2013-04-09 13:37:50 + open + closed + menu-title-attribute + publish + 0 + 41 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu CSS Class + https://wpthemetestdata.wordpress.com/2013/04/09/menu-css-class/ + Tue, 09 Apr 2013 13:37:51 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-css-class + + + + 1144 + 2013-04-09 06:37:51 + 2013-04-09 13:37:51 + open + closed + menu-css-class + publish + 0 + 42 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + New Window / Tab + https://wpthemetestdata.wordpress.com/2013/04/09/new-window-tab/ + Tue, 09 Apr 2013 13:37:51 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/new-window-tab + + + + 1145 + 2013-04-09 06:37:51 + 2013-04-09 13:37:51 + open + closed + new-window-tab + publish + 0 + 43 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1263/</link> + <pubDate>Tue, 09 Apr 2013 13:38:00 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1263</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1263</wp:post_id> + <wp:post_date>2013-04-09 06:38:00</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:38:00</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1263</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1100]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1264/</link> + <pubDate>Tue, 09 Apr 2013 13:38:01 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1264</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1264</wp:post_id> + <wp:post_date>2013-04-09 06:38:01</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:38:01</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1264</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1100]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>twitter.com + https://wpthemetestdata.wordpress.com/2018/10/20/twitter-com/ + Sun, 21 Oct 2018 02:57:33 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/twitter-com/ + + + + 1719 + + + + + + + 0 + 1 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + facebook.com + https://wpthemetestdata.wordpress.com/2018/10/20/facebook-com/ + Sun, 21 Oct 2018 02:57:35 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/facebook-com/ + + + + 1720 + + + + + + + 0 + 2 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + github.com + https://wpthemetestdata.wordpress.com/2018/10/20/github-com/ + Sun, 21 Oct 2018 02:57:37 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/github-com + + + + 1721 + + + + + + + 0 + 3 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + instagram.com + https://wpthemetestdata.wordpress.com/2018/10/20/instagram-com + Sun, 21 Oct 2018 02:57:41 +000 + themereviewteam> + https://wpthemetestdata.wordpress.com/2018/10/20/instagram-com + + + + 1723 + + + + + + + 0 + 5 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + linkedin.com + https://wpthemetestdata.wordpress.com/2018/10/20/linkedin-com/ + Sun, 21 Oct 2018 02:57:39 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/linkedin-com/ + + + + 1722 + + + + + + + 0 + 4 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + triforce-wallpaper + https://wpthemetestdata.wordpress.com/2010/08/07/post-format-image-caption/triforce-wallpaper/ + Tue, 17 Aug 2010 20:17:31 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2010/08/triforce-wallpaper.jpg + + + + 1628 + 2010-08-17 13:17:31 + 2010-08-17 20:17:31 + open + closed + triforce-wallpaper + inherit + 1163 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2010/08/triforce-wallpaper.jpg + + + + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1636/</link> + <pubDate>Tue, 07 May 2013 19:54:30 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1636</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1636</wp:post_id> + <wp:post_date>2013-05-07 12:54:30</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:30</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1636</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1637/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1637</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1637</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1637</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1638/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1638</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1638</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1638</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1639/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1639</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1639</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1639</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1640/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1640</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1640</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1640</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1641/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1641</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1641</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1641</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1643/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1643</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1643</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1643</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1644/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1644</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1644</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1644</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[701]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1645/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1645</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1645</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1645</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1646/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1646</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1646</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1646</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1647/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1647</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1647</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1647</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1648/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1648</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1648</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1648</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1649/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1649</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1649</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1649</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1650/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1650</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1650</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1650</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1651/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1651</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1651</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1651</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>10</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[174]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1652/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1652</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1652</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1652</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>11</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[173]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1653/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1653</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1653</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1653</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>12</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[172]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1654/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1654</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1654</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1654</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>13</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[746]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1655/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1655</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1655</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1655</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>14</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[748]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1656/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1656</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1656</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1656</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>15</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[742]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1657/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1657</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1657</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1657</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>16</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[744]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1658/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1658</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1658</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1658</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>17</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1659/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1659</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1659</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1659</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>18</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[733]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1660/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1660</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1660</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1660</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>19</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[735]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1643/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1643</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1643</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1643</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1644/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1644</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1644</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1644</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[701]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1645/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1645</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1645</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1645</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1646/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1646</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1646</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1646</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1647/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1647</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1647</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1647</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1648/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1648</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1648</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1648</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1649/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1649</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1649</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1649</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1650/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1650</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1650</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1650</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1651/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1651</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1651</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1651</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>10</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[174]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1652/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1652</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1652</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1652</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>11</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[173]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1653/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1653</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1653</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1653</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>12</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[172]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1654/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1654</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1654</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1654</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>13</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[746]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1655/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1655</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1655</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1655</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>14</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[748]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1656/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1656</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1656</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1656</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>15</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[742]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1657/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1657</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1657</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1657</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>16</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[744]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1658/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1658</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1658</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1658</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>17</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1659/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1659</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1659</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1659</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>18</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[733]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1660/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1660</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1660</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1660</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>19</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[735]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>dsc20040724_152504_532 + https://wpthemetestdata.wordpress.com/?attachment_id=1686 + Wed, 18 Sep 2013 21:37:05 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20040724_152504_532.jpg + + + + 1686 + 2013-09-18 14:37:05 + 2013-09-18 21:37:05 + open + closed + dsc20040724_152504_532 + inherit + 0 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20040724_152504_532.jpg + + + dsc20050604_133440_34211 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050604_133440_34211/ + Wed, 18 Sep 2013 21:37:07 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20050604_133440_34211.jpg + + + + 1687 + 2013-09-18 14:37:07 + 2013-09-18 21:37:07 + open + closed + dsc20050604_133440_34211 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20050604_133440_34211.jpg + + + 2014-slider-mobile-behavior + https://wpthemetestdata.wordpress.com/?attachment_id=1690 + Wed, 04 Dec 2013 18:08:29 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/12/2014-slider-mobile-behavior.mov + + + + 1690 + 2013-12-04 11:08:29 + 2013-12-04 18:08:29 + open + closed + 2014-slider-mobile-behavior + inherit + 0 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/12/2014-slider-mobile-behavior.mov + + + dsc20050315_145007_132 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050315_145007_132-2/ + Sun, 05 Jan 2014 18:45:21 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2014/01/dsc20050315_145007_132.jpg + + + + 1691 + 2014-01-05 11:45:21 + 2014-01-05 18:45:21 + open + closed + dsc20050315_145007_132-2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2014/01/dsc20050315_145007_132.jpg + + + spectacles + https://wpthemetestdata.wordpress.com/about/clearing-floats/spectacles-2/ + Sun, 05 Jan 2014 18:45:36 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2014/01/spectacles.gif + + + + 1692 + 2014-01-05 11:45:36 + 2014-01-05 18:45:36 + open + closed + spectacles-2 + inherit + 501 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2014/01/spectacles.gif + + + Post Format: Standard + https://wpthemetestdata.wordpress.com/2010/10/05/post-format-standard/ + Tue, 05 Oct 2010 07:27:25 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=358 + + + +Mrs. Darling first heard of Peter when she was tidying up her children's minds. It is the nightly custom of every good mother after her children are asleep to rummage in their minds and put things straight for next morning, repacking into their proper places the many articles that have wandered during the day. + +If you could keep awake (but of course you can't) you would see your own mother doing this, and you would find it very interesting to watch her. It is quite like tidying up drawers. You would see her on her knees, I expect, lingering humorously over some of your contents, wondering where on earth you had picked this thing up, making discoveries sweet and not so sweet, pressing this to her cheek as if it were as nice as a kitten, and hurriedly stowing that out of sight. When you wake in the morning, the naughtiness and evil passions with which you went to bed have been folded up small and placed at the bottom of your mind and on the top, beautifully aired, are spread out your prettier thoughts, ready for you to put on. + +I don't know whether you have ever seen a map of a person's mind. Doctors sometimes draw maps of other parts of you, and your own map can become intensely interesting, but catch them trying to draw a map of a child's mind, which is not only confused, but keeps going round all the time. There are zigzag lines on it, just like your temperature on a card, and these are probably roads in the island, for the Neverland is always more or less an island, with astonishing splashes of colour here and there, and coral reefs and rakish-looking craft in the offing, and savages and lonely lairs, and gnomes who are mostly tailors, and caves through which a river runs, and princes with six elder brothers, and a hut fast going to decay, and one very small old lady with a hooked nose. It would be an easy map if that were all, but there is also first day at school, religion, fathers, the round pond, needle-work, murders, hangings, verbs that take the dative, chocolate pudding day, getting into braces, say ninety-nine, three-pence for pulling out your tooth yourself, and so on, and either these are part of the island or they are another map showing through, and it is all rather confusing, especially as nothing will stand still. + +Of course the Neverlands vary a good deal. John's, for instance, had a lagoon with flamingoes flying over it at which John was shooting, while Michael, who was very small, had a flamingo with lagoons flying over it. John lived in a boat turned upside down on the sands, Michael in a wigwam, Wendy in a house of leaves deftly sewn together. John had no friends, Michael had friends at night, Wendy had a pet wolf forsaken by its parents, but on the whole the Neverlands have a family resemblance, and if they stood still in a row you could say of them that they have each other's nose, and so forth. On these magic shores children at play are for ever beaching their coracles [simple boat]. We too have been there; we can still hear the sound of the surf, though we shall land no more. + +Of all delectable islands the Neverland is the snuggest and most compact, not large and sprawly, you know, with tedious distances between one adventure and another, but nicely crammed. When you play at it by day with the chairs and table-cloth, it is not in the least alarming, but in the two minutes before you go to sleep it becomes very real. That is why there are night-lights. + +Occasionally in her travels through her children's minds Mrs. Darling found things she could not understand, and of these quite the most perplexing was the word Peter. She knew of no Peter, and yet he was here and there in John and Michael's minds, while Wendy's began to be scrawled all over with him. The name stood out in bolder letters than any of the other words, and as Mrs. Darling gazed she felt that it had an oddly cocky appearance.]]> + + 358 + 2010-10-05 00:27:25 + 2010-10-05 07:27:25 + closed + closed + post-format-standard + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Gallery + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/ + Fri, 10 Sep 2010 14:24:14 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=555 + + + +You can use this page to test the Theme's handling of the gallery shortcode, including the columns parameter, from 1 to 9 columns. Themes are only required to support the default setting (3 columns), so this page is entirely optional. +

    One Column

    +[gallery columns="1"] +

    Two Columns

    +[gallery columns="2"] +

    Three Columns

    +[gallery columns="3"] +

    Four Columns

    +[gallery columns="4"] +

    Five Columns

    +[gallery columns="5"] +

    Six Columns

    +[gallery columns="6"] +

    Seven Columns

    +[gallery columns="7"] +

    Eight Columns

    +[gallery columns="8"] +

    Nine Columns

    +[gallery columns="9"]]]>
    + + 555 + 2010-09-10 07:24:14 + 2010-09-10 14:24:14 + closed + closed + post-format-gallery + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Post Format: Aside + https://wpthemetestdata.wordpress.com/2010/05/09/post-format-aside/ + Sun, 09 May 2010 14:51:54 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=559 + + + + 559 + 2010-05-09 07:51:54 + 2010-05-09 14:51:54 + closed + closed + post-format-aside + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Chat + https://wpthemetestdata.wordpress.com/2010/01/08/post-format-chat/ + Fri, 08 Jan 2010 14:59:31 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=562 + + + + 562 + 2010-01-08 07:59:31 + 2010-01-08 14:59:31 + closed + closed + post-format-chat + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Link + https://wpthemetestdata.wordpress.com/2010/03/07/post-format-link/ + Sun, 07 Mar 2010 15:06:53 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=565 + + The WordPress Theme Review Team Website]]> + + 565 + 2010-03-07 08:06:53 + 2010-03-07 15:06:53 + closed + closed + post-format-link + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Image (Linked) + https://wpthemetestdata.wordpress.com/2010/08/06/post-format-image-linked/ + Fri, 06 Aug 2010 15:09:39 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=568 + + chunk of resinous blackboy husk[/caption] +]]> + + 568 + 2010-08-06 08:09:39 + 2010-08-06 15:09:39 + closed + closed + post-format-image-linked + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Quote + https://wpthemetestdata.wordpress.com/2010/02/05/post-format-quote/ + Fri, 05 Feb 2010 15:13:15 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=575 + + Only one thing is impossible for God: To find any sense in any copyright law on the planet. +Mark Twain]]> + + 575 + 2010-02-05 08:13:15 + 2010-02-05 15:13:15 + closed + closed + post-format-quote + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Status + https://wpthemetestdata.wordpress.com/2010/04/04/post-format-status/ + Sun, 04 Apr 2010 15:21:24 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=579 + + + + 579 + 2010-04-04 08:21:24 + 2010-04-04 15:21:24 + closed + closed + post-format-status + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Video (WordPress.tv) + https://wpthemetestdata.wordpress.com/2010/06/03/post-format-video-wordpresstv/ + Thu, 03 Jun 2010 15:25:58 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=582 + + instructions in the Codex.]]> + + 582 + 2010-06-03 08:25:58 + 2010-06-03 15:25:58 + closed + closed + post-format-video-wordpresstv + publish + 0 + 0 + post + + 0 + + + + + + + + + _oembed_4321638fc1a6fee26443f7fe8a70a871 + ]]> + + + _oembed_29351fff85c1be1d1e9a965a0332a861 + ]]> + + + _oembed_9fcc86d7d9398ff736577f922307f64d + ]]> + + + _oembed_366237792d32461d0052efb2edec37f5 + ]]> + + + _oembed_37fdfe862c13c46a93be2921279bf675 + ]]> + + + + Post Format: Audio + https://wpthemetestdata.wordpress.com/2010/07/02/post-format-audio/ + Fri, 02 Jul 2010 15:36:44 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=587 + + St. Louis Blues + +Audio shortcode: + +[audio https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3]]]> + + 587 + 2010-07-02 08:36:44 + 2010-07-02 15:36:44 + closed + closed + post-format-audio + publish + 0 + 0 + post + + 0 + + + + + + + + enclosure + + + + + Page A + https://wpthemetestdata.wordpress.com/page-a/ + Fri, 24 Jun 2011 01:38:52 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=733 + + + + 733 + 2011-06-23 18:38:52 + 2011-06-24 01:38:52 + open + closed + page-a + publish + 0 + 10 + page + + 0 + + + Page B + https://wpthemetestdata.wordpress.com/page-b/ + Fri, 24 Jun 2011 01:39:14 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=735 + + + + 735 + 2011-06-23 18:39:14 + 2011-06-24 01:39:14 + open + closed + page-b + publish + 0 + 11 + page + + 0 + + + Level 2a + https://wpthemetestdata.wordpress.com/level-1/level-2a/ + Fri, 24 Jun 2011 02:03:33 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=742 + + + + 742 + 2011-06-23 19:03:33 + 2011-06-24 02:03:33 + open + closed + level-2a + publish + 174 + 0 + page + + 0 + + + Level 2b + https://wpthemetestdata.wordpress.com/level-1/level-2b/ + Fri, 24 Jun 2011 02:04:03 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=744 + + + + 744 + 2011-06-23 19:04:03 + 2011-06-24 02:04:03 + open + closed + level-2b + publish + 174 + 0 + page + + 0 + + + Level 3a + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3a/ + Fri, 24 Jun 2011 02:04:24 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=746 + + + + 746 + 2011-06-23 19:04:24 + 2011-06-24 02:04:24 + open + closed + level-3a + publish + 173 + 0 + page + + 0 + + + Level 3b + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3b/ + Fri, 24 Jun 2011 02:04:46 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=748 + + + + 748 + 2011-06-23 19:04:46 + 2011-06-24 02:04:46 + open + closed + level-3b + publish + 173 + 0 + page + + 0 + + + Template: Excerpt (Defined) + https://wpthemetestdata.wordpress.com/2012/03/15/template-excerpt-defined/ + Thu, 15 Mar 2012 21:38:08 +0000 + themedemos + http://wptest.io/demo/?p=993 + + should be displayed in place of the user-defined excerpt in single-page views.]]> + should be displayed in place of the post content in archive-index pages. It can be longer than the automatically generated excerpts, and can have HTML tags.]]> + 993 + 2012-03-15 14:38:08 + 2012-03-15 21:38:08 + closed + closed + template-excerpt-defined + publish + 0 + 0 + post + + 0 + + + + + + + + + Template: More Tag + https://wpthemetestdata.wordpress.com/2012/03/15/template-more-tag/ + Thu, 15 Mar 2012 21:41:11 +0000 + themedemos + http://wptest.io/demo/?p=996 + + more tag. + +Right after this sentence should be a "continue reading" button of some sort on list pages of themes that show full content. It won't show on single pages or on themes showing excerpts. + + + +And this content is after the more tag. (which should be the anchor link for when the button is clicked)]]> + + 996 + 2012-03-15 14:41:11 + 2012-03-15 21:41:11 + closed + closed + template-more-tag + publish + 0 + 0 + post + + 0 + + + + + + + + + Edge Case: Nested And Mixed Lists + https://wpthemetestdata.wordpress.com/2009/05/15/edge-case-nested-and-mixed-lists/ + Fri, 15 May 2009 21:48:32 +0000 + themedemos + http://wptest.io/demo/?p=1000 + + +
  • Lists within lists do not break the ordered list numbering order
  • +
  • Your list styles go deep enough.
  • + +

    Ordered - Unordered - Ordered

    +
      +
    1. ordered item
    2. +
    3. ordered item +
        +
      • unordered
      • +
      • unordered +
          +
        1. ordered item
        2. +
        3. ordered item
        4. +
        +
      • +
      +
    4. +
    5. ordered item
    6. +
    7. ordered item
    8. +
    +

    Ordered - Unordered - Unordered

    +
      +
    1. ordered item
    2. +
    3. ordered item +
        +
      • unordered
      • +
      • unordered +
          +
        • unordered item
        • +
        • unordered item
        • +
        +
      • +
      +
    4. +
    5. ordered item
    6. +
    7. ordered item
    8. +
    +

    Unordered - Ordered - Unordered

    +
      +
    • unordered item
    • +
    • unordered item +
        +
      1. ordered
      2. +
      3. ordered +
          +
        • unordered item
        • +
        • unordered item
        • +
        +
      4. +
      +
    • +
    • unordered item
    • +
    • unordered item
    • +
    +

    Unordered - Unordered - Ordered

    +
      +
    • unordered item
    • +
    • unordered item +
        +
      • unordered
      • +
      • unordered +
          +
        1. ordered item
        2. +
        3. ordered item
        4. +
        +
      • +
      +
    • +
    • unordered item
    • +
    • unordered item
    • +
    ]]>
    + + 1000 + 2009-05-15 14:48:32 + 2009-05-15 21:48:32 + closed + closed + edge-case-nested-and-mixed-lists + publish + 0 + 0 + post + + 0 + + + + + + + +
    + + Template: Featured Image (Horizontal) + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-horizontal/ + Thu, 15 Mar 2012 22:15:12 +0000 + themedemos + http://wptest.io/demo/?p=1011 + + featured image, if the theme supports it. + +Non-square images can provide some unique styling issues. + +This post tests a horizontal featured image.]]> + + 1011 + 2012-03-15 15:15:12 + 2012-03-15 22:15:12 + closed + closed + template-featured-image-horizontal + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + + + + Template: Featured Image (Vertical) + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-vertical/ + Thu, 15 Mar 2012 22:36:32 +0000 + themedemos + http://wptest.io/demo/?p=1016 + + featured image, if the theme supports it. + +Non-square images can provide some unique styling issues. + +This post tests a vertical featured image.]]> + + 1016 + 2012-03-15 15:36:32 + 2012-03-15 22:36:32 + closed + closed + template-featured-image-vertical + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + + + + Post Format: Gallery (Tiled) + https://wpthemetestdata.wordpress.com/2010/09/09/post-format-gallery-tiled/ + Fri, 10 Sep 2010 00:23:27 +0000 + themedemos + http://wptest.io/demo/?p=1031 + + Jetpack to test. + +[gallery type="rectangular" columns="4" ids="755,757,758,760,766,763" orderby="rand"] + +This is some text after the Tiled Gallery just to make sure that everything spaces nicely.]]> + + 1031 + 2010-09-09 17:23:27 + 2010-09-10 00:23:27 + closed + closed + post-format-gallery-tiled + publish + 0 + 0 + post + + 0 + + + + + + + + + + + Page Image Alignment + https://wpthemetestdata.wordpress.com/about/page-image-alignment/ + Fri, 15 Mar 2013 23:19:23 +0000 + themedemos + http://wptest.io/demo/?page_id=1080 + + None, Left, Right, and Center. In addition, they also get the options of Thumbnail, Medium, Large & Fullsize. Be sure to try this page in RTL mode and it should look the same as LTR. +

    Image Alignment 580x300

    +The image above happens to be centered. + +Image Alignment 150x150 The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see there should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +Image Alignment 1200x400 + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 1200x400 + +And we try the large image again, with the center alignment since that sometimes is a problem. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 300x200 + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And just when you thought we were done, we're going to do them all over again with captions! + +[caption id="attachment_906" align="aligncenter" width="580"]Image Alignment 580x300 Look at 580x300 getting some caption love.[/caption] + +The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky. + +[caption id="attachment_904" align="alignleft" width="150"]Image Alignment 150x150 Bigger caption than the image usually is.[/caption] + +The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +[caption id="attachment_907" align="alignnone" width="1200"]Image Alignment 1200x400 Comment for massive image for your eyeballs.[/caption] + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. +[caption id="attachment_907" align="aligncenter" width="1200"]Image Alignment 1200x400 This massive image is centered.[/caption] + +And again with the big image centered. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +[caption id="attachment_905" align="alignright" width="300"]Image Alignment 300x200 Feels good to be right all the time.[/caption] + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! Last thing is a small image aligned right. Whatever follows should be unaffected. Image Alignment 150x150]]>
    + + 1133 + 2013-03-15 18:19:23 + 2013-03-15 23:19:23 + open + open + page-image-alignment + publish + 2 + 0 + page + + 0 +
    + + Page Markup And Formatting + https://wpthemetestdata.wordpress.com/about/page-markup-and-formatting/ + Fri, 15 Mar 2013 23:20:05 +0000 + themedemos + http://wptest.io/demo/?page_id=1083 + + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    Jane$1Because that's all Steve Jobs needed for a salary.
    John$100KFor all the blogging he does.
    Jane$100MPictures are worth a thousand words, right? So Tom x 1,000.
    Jane$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    + Robert Frost
    +
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +This tag shows strike-through text. + +Small Tag + +This tag shows smaller text. + +Strong Tag + +This tag shows bold text. + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +This rarely used tag emulates teletype text, which is usually styled like the <code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +This tag shows underlined text. + +Variable Tag + +This allows you to denote variables.]]>
    + + 1134 + 2013-03-15 18:20:05 + 2013-03-15 23:20:05 + open + open + page-markup-and-formatting + publish + 2 + 0 + page + + 0 +
    + + Template: Comments + https://wpthemetestdata.wordpress.com/2012/01/03/template-comments/ + Tue, 03 Jan 2012 17:11:37 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/comment-test/ + + +
  • Threaded comments up to 10 levels deep
  • +
  • Paginated comments (set Settings > Discussion > Break comments into pages to 5 top level comments per page)
  • +
  • Comment markup / formatting
  • +
  • Comment images
  • +
  • Comment videos
  • +
  • Author comments
  • +
  • Gravatars and default fallbacks
  • +]]>
    + + 1148 + 2012-01-03 10:11:37 + 2012-01-03 17:11:37 + open + closed + template-comments + publish + 0 + 0 + post + + 0 + + + + + + + 881 + + example@example.org + http://example.org/ + + 2012-09-03 10:18:04 + 2012-09-03 17:18:04 + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    John Saddington$1Because that's all Steve Job' needed for a salary.
    Tom McFarlin$100KFor all the blogging he does.
    Jared Erickson$100MPictures are worth a thousand words, right? So Tom x 1,000.
    Chris Ames$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    + +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    +Robert Frost
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    + +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up.]]>
    + 1 + + 0 + 0 +
    + + 899 + + fake@example.com + + + 2013-03-11 23:45:54 + 2013-03-12 04:45:54 + Gravatar associated with it. + They did not speify a website, so there should be no link to it in the comment. +]]> + 1 + + 0 + 0 + + + 900 + + example@example.org + http://example.org/ + + 2013-03-12 13:17:35 + 2013-03-12 20:17:35 + + 1 + + 0 + 0 + + + 901 + + example@example.org + http://example.org + + 2013-03-14 07:53:26 + 2013-03-14 14:53:26 + + 1 + + 0 + 0 + + + 903 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 07:56:46 + 2013-03-14 14:56:46 + + 1 + + 0 + 24783058 + + + 904 + + example@example.org + http://example.org/ + + 2013-03-14 07:57:01 + 2013-03-14 14:57:01 + + 1 + + 0 + 0 + + + 905 + + example@example.org + http://example.org/ + + 2013-03-14 08:01:21 + 2013-03-14 15:01:21 + + 1 + + 904 + 0 + + + 906 + + example@example.org + http://example.org/ + + 2013-03-14 08:02:06 + 2013-03-14 15:02:06 + + 1 + + 905 + 0 + + + 907 + + example@example.org + http://example.org/ + + 2013-03-14 08:03:22 + 2013-03-14 15:03:22 + + 1 + + 906 + 0 + + + 910 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 08:10:29 + 2013-03-14 15:10:29 + + 1 + + 907 + 24783058 + + + 911 + + example@example.org + http://example.org/ + + 2013-03-14 08:12:16 + 2013-03-14 15:12:16 + + 1 + + 910 + 0 + + + 912 + + example@example.org + http://example.org/ + + 2013-03-14 08:12:58 + 2013-03-14 15:12:58 + + 1 + + 911 + 0 + + + 913 + + example@example.org + http://example.org/ + + 2013-03-14 08:13:42 + 2013-03-14 15:13:42 + + 1 + + 912 + 0 + + + 914 + + example@example.org + http://example.org/ + + 2013-03-14 08:14:13 + 2013-03-14 15:14:13 + + 1 + + 913 + 0 + + + 915 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 08:14:47 + 2013-03-14 15:14:47 + + 1 + + 914 + 24783058 + + + 917 + + example@example.org + http://example.org/ + + 2013-03-14 09:56:43 + 2013-03-14 16:56:43 + + If the image imports... + ]]> + 1 + + 0 + 0 + + + 918 + + example@example.org + http://example.org/ + + 2013-03-14 11:23:24 + 2013-03-14 18:23:24 + + 1 + + 0 + 0 + + + 919 + + example@example.org + http://example.org/ + + 2013-03-14 11:27:54 + 2013-03-14 18:27:54 + + 1 + + 0 + 0 + + + 920 + + example@example.org + http://example.org/ + + 2013-03-14 11:30:33 + 2013-03-14 18:30:33 + + 1 + + 0 + 24783058 + + + 1015 + + auser@example.com + + + 2014-09-29 02:52:15 + 2014-09-29 09:52:15 + + 0 + + 0 + 0 + +
    + + Template: Pingbacks And Trackbacks + https://wpthemetestdata.wordpress.com/2012/01/01/template-pingbacks-an-trackbacks/ + Sun, 01 Jan 2012 17:17:18 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/many-trackbacks/ + + +
  • Above the comments
  • +
  • Below the comments
  • +
  • Included within the normal flow of comments
  • +]]>
    + + 1149 + 2012-01-01 10:17:18 + 2012-01-01 17:17:18 + closed + closed + template-pingbacks-an-trackbacks + publish + 0 + 0 + post + + 0 + + + + + + + + + 921 + + + http://tellyworth.wordpress.com/2007/11/21/ping-1/ + + 2007-11-21 11:31:12 + 2007-11-21 01:31:12 + + 1 + trackback + 0 + 0 + + + 922 + + + http://tellyworth.wordpress.com/2007/11/21/ping-2-with-a-much-longer-title-than-the-previous-ping-which-was-called-ping-1/ + + 2007-11-21 11:35:47 + 2007-11-21 01:35:47 + + 1 + trackback + 0 + 0 + + + 923 + + + http://tellyworth.wordpress.com/2007/11/21/ping-4/ + + 2007-11-21 11:39:25 + 2007-11-21 01:39:25 + + 1 + pingback + 0 + 0 + + + 924 + + + http://tellyworth.wordpress.com/2007/11/21/ping-3/ + + 2007-11-21 11:38:22 + 2007-11-21 01:38:22 + + 1 + pingback + 0 + 0 + + + 925 + + example@example.org + http://example.org/ + + 2010-06-11 15:27:04 + 2010-06-11 22:27:04 + + 1 + + 0 + 0 + +
    + + Template: Comments Disabled + https://wpthemetestdata.wordpress.com/2012/01/02/template-comments-disabled/ + Mon, 02 Jan 2012 17:21:15 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/no-comments/ + + should display pingbacks and trackbacks.]]> + + 1150 + 2012-01-02 10:21:15 + 2012-01-02 17:21:15 + closed + closed + template-comments-disabled + publish + 0 + 0 + post + + 0 + + + + + + + + Edge Case: Many Tags + https://wpthemetestdata.wordpress.com/2009/06/01/edge-case-many-tags/ + Mon, 01 Jun 2009 08:00:34 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/11/24/many-tags/ + + + + 1151 + 2009-06-01 01:00:34 + 2009-06-01 08:00:34 + closed + closed + edge-case-many-tags + publish + 0 + 0 + post + + 0' + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Edge Case: Many Categories + https://wpthemetestdata.wordpress.com/2009/07/02/edge-case-many-categories/ + Thu, 02 Jul 2009 09:00:03 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/11/24/many-categories/ + + + + 1152 + 2009-07-02 02:00:03 + 2009-07-02 09:00:03 + closed + closed + edge-case-many-categories + publish + 0 + 0 + post + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Scheduled + https://wpthemetestdata.wordpress.com/2020/01/01/scheduled/ + Wed, 01 Jan 2030 19:00:18 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=418 + + + + 1153 + 2030-01-01 12:00:18 + 2030-01-01 19:00:18 + closed + closed + scheduled + future + 0 + 0 + post + + 0 + + + + + + Post Format: Image + https://wpthemetestdata.wordpress.com/2010/08/08/post-format-image/ + Sun, 08 Aug 2010 12:00:39 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=568 + +
      + +]]>
    + + 1158 + 2010-08-08 05:00:39 + 2010-08-08 12:00:39 + closed + closed + post-format-image + publish + 0 + 0 + post + + 0 + + + + + +
    + + Post Format: Video (YouTube) + https://wpthemetestdata.wordpress.com/2010/06/02/post-format-video-youtube/ + Wed, 02 Jun 2010 09:00:58 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=582 + + WordPress Embeds.]]> + + 1161 + 2010-06-02 02:00:58 + 2010-06-02 09:00:58 + closed + closed + post-format-video-youtube + publish + 0 + 0 + post + + 0 + + + + + + + Post Format: Image (Caption) + https://wpthemetestdata.wordpress.com/2010/08/07/post-format-image-caption/ + Sat, 07 Aug 2010 13:00:19 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=674 + + Bell on Wharf Bell on wharf in San Francisco[/caption]]]> + + 1163 + 2010-08-07 06:00:19 + 2010-08-07 13:00:19 + closed + closed + post-format-image-caption + publish + 0 + 0 + post + + 0 + + + + + + + + _thumbnail_id + + + + + Draft + https://wpthemetestdata.wordpress.com/?p=1164 + Tue, 09 Apr 2013 18:20:39 +0000 + themedemos + http://wptest.io/demo/?p=922 + + + + 1164 + 2013-04-09 11:20:39 + 2013-04-09 18:20:39 + closed + closed + + draft + 0 + 0 + post + + 0 + + + + + + Template: Password Protected (the password is "enter") + https://wpthemetestdata.wordpress.com/2012/01/04/template-password-protected/ + Wed, 04 Jan 2012 16:38:05 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/test-with-secret-password/ + + + + 1168 + 2012-01-04 09:38:05 + 2012-01-04 16:38:05 + closed + closed + template-password-protected + publish + 0 + 0 + post + enter + 0 + + + + + + + 926 + + example@example.org + http://example.org/ + + 2013-03-14 11:56:08 + 2013-03-14 18:56:08 + + 1 + + 0 + 0 + + + + + <link>https://wpthemetestdata.wordpress.com/2009/09/05/edge-case-no-title/</link> + <pubDate>Sat, 05 Sep 2009 16:00:23 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2007/09/04/14/</guid> + <description/> + <content:encoded><![CDATA[This post has no title, but it still must link to the single post view somehow. + +This is typically done by placing the permalink on the post date.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1169</wp:post_id> + <wp:post_date>2009-09-05 09:00:23</wp:post_date> + <wp:post_date_gmt>2009-09-05 16:00:23</wp:post_date_gmt> + <wp:comment_status>closed</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>edge-case-no-title</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>0</wp:menu_order> + <wp:post_type>post</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="category" nicename="classic"><![CDATA[Classic]]></category> + <category domain="post_tag" nicename="edge-case"><![CDATA[edge case]]></category> + <category domain="category" nicename="edge-case-2"><![CDATA[Edge Case]]></category> + <category domain="post_tag" nicename="layout"><![CDATA[layout]]></category> + <category domain="post_tag" nicename="title"><![CDATA[title]]></category> +</item> +<item> + <title>Edge Case: No Content + https://wpthemetestdata.wordpress.com/2009/08/06/edge-case-no-content/ + Thu, 06 Aug 2009 16:39:56 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/this-post-has-no-body/ + + + + 1170 + 2009-08-06 09:39:56 + 2009-08-06 16:39:56 + closed + closed + edge-case-no-content + publish + 0 + 0 + post + + 0 + + + + + + + 927 + + example@example.org + http://example.org/ + + 2013-03-14 12:35:07 + 2013-03-14 19:35:07 + + 1 + + 0 + 0 + + + + Template: Paginated + https://wpthemetestdata.wordpress.com/2012/01/08/template-paginated/ + Sun, 08 Jan 2012 17:00:20 +0000 + themedemos + https://noeltest.wordpress.com/?p=188 + + + +Post Page 2 + + + +Post Page 3]]> + + 1171 + 2012-01-08 10:00:20 + 2012-01-08 17:00:20 + closed + closed + template-paginated + publish + 0 + 0 + post + + 0 + + + + + + + + + <![CDATA[Markup: Title <em>With</em> <b>Mark<sup>up</sup></b>]]> + https://wpthemetestdata.wordpress.com/2013/01/05/markup-title-with-markup/ + Sat, 05 Jan 2013 17:00:49 +0000 + themedemos + http://wptest.io/demo/?p=861 + + +
  • The post title renders the word "with" in italics and the word "markup" in bold (and "up" is superscript).
  • +
  • The post title markup should be removed from the browser window / tab.
  • +]]>
    + + 1173 + 2013-01-05 10:00:49 + 2013-01-05 17:00:49 + closed + closed + markup-title-with-markup + publish + 0 + 0 + post + + 0 + + + + + +
    + + Markup: Title With Special Characters ~`!@#$%^&*()-_=+{}[]/\;:'"?,.> + https://wpthemetestdata.wordpress.com/2013/01/05/title-with-special-characters/ + Sat, 05 Jan 2013 18:00:20 +0000 + themedemos + http://wptest.io/demo/?p=867 + + Latin Character Tests +This is a test to see if the fonts used in this theme support basic Latin characters. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    !"#$%&'()*
    +,-./01234
    56789:;>=<
    ?@ABCDEFGH
    IJKLMNOPQR
    STUVWXYZ[\
    ]^_`abcdef
    ghijklmnop
    qrstuvwxyz
    {|}~
    ]]>
    + + 1174 + 2013-01-05 11:00:20 + 2013-01-05 18:00:20 + closed + closed + title-with-special-characters + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Taumatawhakatangihangakoauauotamateaturipukakapikimaungahoronukupokaiwhenuakitanatahu + https://wpthemetestdata.wordpress.com/2009/10/05/title-should-not-overflow-the-content-area/ + Mon, 05 Oct 2009 19:00:59 +0000 + themedemos + http://wptest.io/demo/?p=877 + + Title should not overflow the content area + +A few things to check for: +
      +
    • Non-breaking text in the title, content, and comments should have no adverse effects on layout or functionality.
    • +
    • Check the browser window / tab title.
    • +
    • If you are a plugin or widget developer, check that this text does not break anything.
    • +
    + +The following CSS properties will help you support non-breaking text. + +
    -ms-word-wrap: break-word;
    +word-wrap: break-word;
    + ]]>
    + + 1175 + 2009-10-05 12:00:59 + 2009-10-05 19:00:59 + closed + closed + title-should-not-overflow-the-content-area + publish + 0 + 0 + post + + 0 + + + + + + + + +
    + + Markup: Text Alignment + https://wpthemetestdata.wordpress.com/2013/01/09/markup-text-alignment/ + Wed, 09 Jan 2013 16:00:39 +0000 + themedemos + http://wptest.io/demo/?p=895 + + Default +This is a paragraph. It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love. Completely neutral and not picking a side or sitting on the fence. It just is. It just freaking is. It likes where it is. It does not feel compelled to pick a side. Leave him be. It will just be better that way. Trust me. +

    Left Align

    +

    This is a paragraph. It is left aligned. Because of this, it is a bit more liberal in it's views. It's favorite color is green. Left align tends to be more eco-friendly, but it provides no concrete evidence that it really is. Even though it likes share the wealth evenly, it leaves the equal distribution up to justified alignment.

    + +

    Center Align

    +

    This is a paragraph. It is center aligned. Center is, but nature, a fence sitter. A flip flopper. It has a difficult time making up its mind. It wants to pick a side. Really, it does. It has the best intentions, but it tends to complicate matters more than help. The best you can do is try to win it over and hope for the best. I hear center align does take bribes.

    + +

    Right Align

    +

    This is a paragraph. It is right aligned. It is a bit more conservative in it's views. It's prefers to not be told what to do or how to do it. Right align totally owns a slew of guns and loves to head to the range for some practice. Which is cool and all. I mean, it's a pretty good shot from at least four or five football fields away. Dead on. So boss.

    + +

    Justify Align

    +

    This is a paragraph. It is justify aligned. It gets really mad when people associate it with Justin Timberlake. Typically, justified is pretty straight laced. It likes everything to be in it's place and not all cattywampus like the rest of the aligns. I am not saying that makes it better than the rest of the aligns, but it does tend to put off more of an elitist attitude.

    ]]>
    + + 1176 + 2013-01-09 09:00:39 + 2013-01-09 16:00:39 + closed + closed + markup-text-alignment + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Markup: Image Alignment + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/ + Fri, 11 Jan 2013 03:15:40 +0000 + themedemos + http://wptest.io/demo/?p=903 + + None, Left, Right, and Center. In addition, they also get the options of Thumbnail, Medium, Large & Fullsize. Be sure to try this page in RTL mode and it should look the same as LTR. +

    Image Alignment 580x300

    +The image above happens to be centered. + +Image Alignment 150x150 The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +Image Alignment 1200x400 + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 1200x400 + +And we try the large image again, with the center alignment since that sometimes is a problem. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 300x200 + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And just when you thought we were done, we're going to do them all over again with captions! + +[caption id="attachment_906" align="aligncenter" width="580"]Image Alignment 580x300 Look at 580x300 getting some caption love.[/caption] + +The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky. + +[caption id="attachment_904" align="alignleft" width="150"]Image Alignment 150x150 Bigger caption than the image usually is.[/caption] + +The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +[caption id="attachment_907" align="alignnone" width="1200"]Image Alignment 1200x400 Comment for massive image for your eyeballs.[/caption] + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. +[caption id="attachment_907" align="aligncenter" width="1200"]Image Alignment 1200x400 This massive image is centered.[/caption] + +And again with the big image centered. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +[caption id="attachment_905" align="alignright" width="300"]Image Alignment 300x200 Feels good to be right all the time.[/caption] + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! One last thing: The last item in this post's content is a thumbnail floated right. Make sure any elements after the content are clearing properly. + +]]>
    + + 1177 + 2013-01-10 20:15:40 + 2013-01-11 03:15:40 + closed + closed + markup-image-alignment + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + +
    + + Markup: HTML Tags and Formatting + https://wpthemetestdata.wordpress.com/2013/01/11/markup-html-tags-and-formatting/ + Sat, 12 Jan 2013 03:22:19 +0000 + themedemos + http://wptest.io/demo/?p=919 + + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    John Doe$1Because that's all Steve Jobs needed for a salary.
    Jane Doe$100KFor all the blogging she does.
    Fred Bloggs$100MPictures are worth a thousand words, right? So Jane x 1,000.
    Jane Bloggs$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    +Robert Frost
    +
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +This tag shows strike-through text. + +Small Tag + +This tag shows smaller text. + +Strong Tag + +This tag shows bold text. + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +This rarely used tag emulates teletype text, which is usually styled like the <code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +This tag shows underlined text. + +Variable Tag + +This allows you to denote variables.]]>
    + + 1178 + 2013-01-11 20:22:19 + 2013-01-12 03:22:19 + closed + closed + markup-html-tags-and-formatting + publish + 0 + 0 + post + + 0 + + + + + + + +
    + + Media: Twitter Embeds + https://wpthemetestdata.wordpress.com/2011/03/15/media-twitter-embeds/ + Tue, 15 Mar 2011 22:47:16 +0000 + themedemos + http://wptest.io/demo/?p=1027 + + Twitter Embeds feature.]]> + + 1179 + 2011-03-15 15:47:16 + 2011-03-15 22:47:16 + closed + closed + media-twitter-embeds + publish + 0 + 0 + post + + 0 + + + + + + + + _oembed_time_d01e104b758ab65a49dfdede5913069c + + + + _oembed_ac49b172e1844531a885a53eff2efd91 + ]]> + + + _oembed_time_ac49b172e1844531a885a53eff2efd91 + + + + _oembed_d01e104b758ab65a49dfdede5913069c + ]]> + + + + Template: Sticky + https://wpthemetestdata.wordpress.com/2012/01/07/template-sticky/ + Sat, 07 Jan 2012 14:07:21 +0000 + themedemos + http://wptest.io/demo/?p=1241 + + +
  • The sticky post should be distinctly recognizable in some way in comparison to normal posts. You can style the .sticky class if you are using the post_class() function to generate your post classes, which is a best practice.
  • +
  • They should show at the very top of the blog index page, even though they could be several posts back chronologically.
  • +
  • They should still show up again in their chronologically correct postion in time, but without the sticky indicator.
  • +
  • If you have a plugin or widget that lists popular posts or comments, make sure that this sticky post is not always at the top of those lists unless it really is popular.
  • +]]>
    + + 1241 + 2012-01-07 07:07:21 + 2012-01-07 14:07:21 + closed + closed + template-sticky + publish + 0 + 0 + post + + 1 + + + + +
    + + Template: Excerpt (Generated) + https://wpthemetestdata.wordpress.com/2012/03/14/template-excerpt-generated/ + Wed, 14 Mar 2012 16:49:22 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=1446 + + excerpt_length and excerpt_more, display properly.]]> + + 1446 + 2012-03-14 09:49:22 + 2012-03-14 16:49:22 + closed + closed + template-excerpt-generated + publish + 0 + 0 + post + + 0 + + + + + + + + + Block category: Common + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-common/ + Fri, 02 Nov 2018 16:20:28 +0000 + >themereviewteam + https://wpthemetestdata.wordpress.com/?p=1730 + + +

    The Common category includes the following blocks: Paragraph, image, headings, list, gallery, quote, audio, cover, video.

    + + + +

    The paragraph block is the default block type.  It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love.

    + + + +

    This paragraph is left aligned.

    + + + +

    This italic paragraph is right aligned.

    + + + +

    Neither of these paragraphs care about politics, but this one is bold, medium sized and has a drop cap.

    + + + +

    This paragraph is centered.

    + + + +

    This paragraph prefers Jazz over Justin Timberlake. It also uses the small font size.

    + + + +

    This paragraph has something important to say:  It has a large font size, which defaults to 36px.

    + + + +

    The huge text size defaults to 46px, but the size can be customized.

    + + + +

    This paragraph is colorful, with a red background and white text (maybe). Colored blocks should have a high enough contrast, so that the text is readable.

    + + + +

    Below this block, you will see a single image with a circle mask applied.

    + + + +
    Image Alignment 150x150
    + + + +

    H1 Heading

    + + + +

    H2 Heading

    + + + +

    H3 Heading

    + + + +

    H4 Heading

    + + + +
    H5 Heading
    + + + +
    H6 Heading
    + + + +

    Ordered list

    + + + +
    1. The software should be licensed under the GNU Public License.
    2. The software should be freely available to anyone to use for any purpose, and without permission.
    3. The software should be open to modifications.
      1. Any modifications should be freely distributable at no cost and without permission from its creators.
    4. The software should provide a framework for translation to make it globally accessible to speakers of all languages.
    5. The software should provide a framework for extensions so modifications and enhancements can be made without modifying core code
    + + + +

    Unordered list

    + + + +
    • One
    • Two
    • Three
      • Four
    • Five
    + + + + + + + +

    Quote

    Cite
    + + + +
    + + + +
    +

    Cover block with background image

    +
    + + + +

    The file block has a setting that lets us show or hide a download button with editable text:

    + + + + + + + + + + + +

    Video blocks have settings for showing and hiding the playback controls. Use autoplay and playback controls responsibly.

    + + + +
    This is a video block caption.
    + + + +

    The video block below is muted and has a poster image that displays before the video starts:

    + + + +
    + +]]>
    + + 1730 + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + +
    + + Block category: Formatting + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-formatting/ + Fri, 02 Nov 2018 16:41:42 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1732 + + +

    The formatting category includes the following blocks:

    + + + +
    The code block starts with
    +<!-- wp:code -->
    +<?php echo 'Hello World'; ?>
    +
    + + +

    The classic block can have almost anything in it.

    +
    +
    a heading
    + + +
    The custom HTML block lets you put HTML that isn't configured like blocks in it. (this div has a width of 45%)
    + + + +
    The preformatted block.

    The Road Not Taken

    Robert Frost
    Two roads diverged in a yellow wood,
    And sorry I could not travel both (\_/)
    And be one traveler, long I stood (='.'=)
    And looked down one as far as I could (")_(")
    To where it bent in the undergrowth;

    Then took the other, as just as fair,
    And having perhaps the better claim, |\_/|
    Because it was grassy and wanted wear; / @ @ \
    Though as for that the passing there ( > º < )
    Had worn them really about the same, `>>x<<´
    / O \
    And both that morning equally lay
    In leaves no step had trodden black.
    Oh, I kept the first for another day!
    Yet knowing how way leads on to way,
    I doubted if I should ever come back.
    I shall be telling this with a sigh
    Somewhere ages and ages hence:
    Two roads diverged in a wood, and I—
    I took the one less traveled by,
    And that has made all the difference.



    and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    + + + +

    The pull quote can be aligned or wide or neither.

    Theme Reviewer
    + + + +
    The table blockThis is the default style.
    The cell next to this is empty.
    Cell #5
    Cell #6
    + + + +
    This is the striped style.This row should have a background color.
    The cell next to this is empty.

    This table has fixed width table cells.

    Make sure that the text wraps correctly.

    + + + +
    The Verse block

    A block for haiku?
    Why not?
    Blocks for all the things!
    +]]>
    + + 1732 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Block category: Layout Elements + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-layout-elements/ + Fri, 02 Nov 2018 16:44:37 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1734 + + +
    +

    The Layout Elements category includes the following blocks: Group, Button, Columns, Media & Text, separator, spacer, read more, and page break.

    + + + +

    This group block has a light green background color.

    + + + + + + + +

    The read more block should be right below this text, but only on list pages of themes that show the full content. It won't show on the single page or on themes showing excerpts.

    +
    + + + + + + + +
    +
    +

    The columns:

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    +
    + + + +
    Boardwalk
    +

    Media &Text

    + + + +

    For displaying media and text next to each other. By default, the media is to the left.

    +
    + + + +
    Golden Gate Bridge
    +

    This time our block is full width, and the image is to the right.

    + + + +

    The background color is a pale blue. 

    +
    + + + +

    Test to make sure that the editor and the front match. To test the Stack on mobile setting, reduce the browser window width.

    + + + +

    The control these settings, the block uses the css classes "has-media-on-the-right" and "is-stacked-on-mobile".

    + + + +

    The separator has three styles: default, wide line, and dots.

    + + + +
    + + + +
    + + + +
    + + + +

    The spacer block has a default height of 100 pixels:

    + + + + + + + +

    And finally, the page break:

    + + + + + + + +

    This paragraph block is on page two, after the page break.

    + + + + +]]>
    + + 1734 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block category: Embeds + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-embeds/ + Fri, 02 Nov 2018 16:51:55 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1738 + + + +

    This post tests various embed blocks:

    + + + +
    +https://twitter.com/WordPress/status/1057136472321613824 +
    Twitter,  wide width
    + + + +
    +https://youtu.be/ex8fMxXJDJw +
    YouTube
    + + + +
    +https://www.facebook.com/6427302910/posts/10156380423617911/ +
    + + + +
    +https://www.instagram.com/p/BpmueLLgEn_/?utm_source=ig_share_sheet&igshid=1hcxphic7p9e2 +
    + + + +
    +https://wordpress.tv/2018/10/14/kjell-reigstad-allan-cole-how-we-made-our-first-gutenberg-powered-theme/ +
    WordPress TV, full width
    + + + +

    +]]>
    + + 1738 + + + + + + + 0 + 0 + + + 0 + + + + + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + + + + + + + + + + ]]> + + + + + + + +

    Many of the WordPress contribution teams have been working hard on the new WordPress editor, and the tools, services,...

    Publicerat av WordPress Måndag 3 september 2018
    ]]>
    +
    + + + + + + + ]]> + + + + + + + + ]]> + + + + + + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + + + + + + ]]> + + + + + + + +

    Many of the WordPress contribution teams have been working hard on the new WordPress editor, and the tools, services,...

    Publicerat av WordPress Måndag 3 september 2018
    ]]>
    +
    + + + + + + + ]]> + + + + + + + + ]]> + + + + + +
    + + Block category: Widgets + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-widgets/ + Fri, 02 Nov 2018 16:45:35 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1736 + + +

    The shortcode widget:

    + + + +[gallery columns=2 ids="770,771"] + + + +

    The Archive Widget:

    + + + + + +

    The same Archive widget but as a dropdown:

    + + + + + + + +

    The Category widget block has an additional option for showing category hierarchies:

    + + + + + +

    The Latest Comments widget can display or hide the avatars, the date, and the comment excerpt:

    + + + + + +

    Here is an example of the Comments widget with all the options disabled. The number of comments has been reduced to two.

    + + + + + +

    And here is the Latest Posts widget in the list view, with dates:

    + + + + + +

    Grid view, now sorted from A -Z.

    + + + + + +

    You can also change the number of columns used to display the latest posts. The block below only displays posts from the Block category:

    + + + + + +

    Search widget:

    + + + + + +

    Tag Cloud widget:

    + + + + + +

    RSS Feed widget:

    + + + + ]]>
    + + 1736 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Columns + https://wpthemetestdata.wordpress.com/2018/11/02/block-columns/ + Fri, 02 Nov 2018 12:10:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1743 + + +
    +
    +

    This page tests how the theme displays the columns block. The first block tests a two column block with paragraphs.

    +
    + + + +
    +

    This is the second column. It should align next to the first column. Reduce the browser window width to test the responsiveness.

    +
    +
    + + + +
    +
    +

    This is the second column block. It has 3 columns.

    +
    + + + +
    +

    Paragraph 2 is in the middle.

    +
    + + + +
    +

    Paragraph 3 is in the last column.

    +
    +
    + + + +
    +
    +

    The third column block has 4 columns. Make sure that all the text is visible and that it is not cut off.

    +
    + + + +
    +

    Now the columns are getting narrower.

    +
    + + + +
    +

    The margins between the columns should be wide enough,

    +
    + + + +
    +

    so that the content of the columns does not run into or overlap each other.

    +
    +
    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    + + + +
    +

    Column five.

    +
    +
    + + + +

    To change the number of columns, select the column block to open the settings panel. You can show up to 6 columns. If the theme has support for wide align, you can also set the alignments to wide and full width.

    + + + +

    Below is a column block with six columns, and no alignment:

    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    + + + +
    +

    Column five.

    +
    + + + +
    +

    Column six.

    +
    +
    + + + +

    Next is a 3 column block, with a wide alignment:

    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    +
    + + + +

    And here is a two column block with full width, and a longer text. Make sure that the text wraps correctly.

    + + + +
    +
    +

    This is column one. Sometimes, you may want to use columns to display a larger text, so, lets add some more words. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna. Praesent sit amet ligula id orci venenatis auctor. Phasellus porttitor, metus non tincidunt dapibus, orci pede pretium neque, sit amet adipiscing ipsum lectus et libero. Aenean bibendum. Curabitur mattis quam id urna. Vivamus dui. Donec nonummy lacinia lorem. Cras risus arcu, sodales ac, ultrices ac, mollis quis, justo. Sed a libero. Quisque risus erat, posuere at, tristique non, lacinia quis, eros.

    +
    + + + +
    +

    Column two. Cras volutpat, lacus quis semper pharetra, nisi enim dignissim est, et sollicitudin quam ipsum vel mi. Sed commodo urna ac urna. Nullam eu tortor. Curabitur sodales scelerisque magna. Donec ultricies tristique pede. Nullam libero. Nam sollicitudin felis vel metus. Nullam posuere molestie metus. Nullam molestie, nunc id suscipit rhoncus, felis mi vulputate lacus, a ultrices tortor dolor eget augue. Aenean ultricies felis ut turpis. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Suspendisse placerat tellus ac nulla. Proin adipiscing sem ac risus. Maecenas nisi. Cras semper.

    +
    +
    + + + +

    We can also add blocks inside columns:

    + + + +
    +
    +
    1. This is a numbered list,
    2. inside a 3 column block
    3. with a wide alignment.
    +
    + + + +
    +

    The middle column has a paragraph with an image block below.

    + + + +
    canola
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna.
    +
    + + + +
    +

    -This third column has a quote

    Theme Reviewer
    +
    +
    + + + +

    But wait there is more!  We also have a block called Media & Text, which is a two column block that helps you display media and text content next to each other, without having to first setup a column block:

    + + + +
    dsc20050813_115856_52
    +

    Media & Text

    + + + +

    A paragraph block sits ready to be used, below your headline.

    + + + +

    +
    +]]>
    + + 1743 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Block: Cover + https://wpthemetestdata.wordpress.com/2018/11/02/block-cover/ + Sat, 03 Nov 2018 12:25:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1745 + + +

    This is a left aligned cover block with a background image.

    + + + +

    The cover block lets you add text on top of images or videos.

    + + + +

    This blocktype has several alignment options, and you can also align or center the text inside the block.

    + + + +

    The background image can be fixed and you can change its opacity and add an overlay color.

    + + + +

    Make sure that the text wraps correctly over the image, and that text markup and alignments are working.

    + + + +

    The next image should have a pink overlay color, the text should be bold and aligned to the left:

    + + + +

    A center aligned cover image block, with a left aligned text.

    + + + +

    This is a full width cover block with a fixed background image with a 20% opacity.

    + + + +

    Make sure that all the text is readable.

    + + + +

    Our last cover image block has a wide width.

    + + + +

    This is a wide cover block with a video background.

    + + + +

    Compare the video and image blocks.
    This block is centered.

    + + + +

    The block below has no alignment, and the text is a link. Overlay colors must also work with video backgrounds.

    + + + + +]]>
    + + 1745 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Button + https://wpthemetestdata.wordpress.com/2018/11/02/block-button/ + Sat, 03 Nov 2018 13:20:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1747 + + +

    Button blocks are not semantically buttons, but links inside a styled div. 

    + + + +

    If you do not add a link, a link tag without an anchor will be used.

    + + + + + + + +

    Check to make sure that the text wraps correctly when the button has more than one line of text, and when it is extra long.

    + + + + + + + +

    Buttons have three styles: 

    + + + + + + + + + + + + + + + +

    If the theme has a custom color palette, test that background color and text color settings work correctly. 

    + + + + + + + +

    Now lets test how buttons display together with large texts.

    + + + +

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio.

    + + + + + + + +

    Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna. Praesent sit amet ligula id orci venenatis auctor. Phasellus porttitor, metus non tincidunt dapibus, orci pede pretium neque, sit amet adipiscing ipsum lectus et libero. Aenean bibendum. Curabitur mattis quam id urna.

    + + + + + + + +

    Vivamus dui. Donec nonummy lacinia lorem. Cras risus arcu, sodales ac, ultrices ac, mollis quis, justo. Sed a libero. Quisque risus erat, posuere at, tristique non, lacinia quis, eros.

    +]]>
    + + 1747 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Quote + https://wpthemetestdata.wordpress.com/2018/11/02/block-quote/ + Sat, 03 Nov 2018 03:05:49 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1749 + + +

    The quote block has two styles, regular:

    + + + +

    Gutenberg is more than an editor.

    The Gutenberg Team
    + + + +

    and large:

    + + + +

    Yes, it is a press, certainly, but a press from which shall flow in inexhaustible streams, the most abundant and most marvelous liquor that has ever flowed to relieve the thirst of men!


    Johannes Gutenberg
    + + + +

    The quote blocks themselves have no alignments but the text can be aligned, bold, italic, and linked:

    + + + +

    Right

    Theme Review
    + + + +

    In addition to the quote block, we also have the pull quote, with a regular and a solid color style.

    + + + +

    You can change the color of the border and the text with the regular style:

    + + + +

    In addition to the quote block, we also have the pull quote.

    Theme Reviewer
    + + + +

    Or change the background color and text color with the solid color style:

    + + + +

    a solid color style

    Theme Reviewer
    +]]>
    + + 1749 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Gallery + https://wpthemetestdata.wordpress.com/2018/11/02/block-gallery/ + Sat, 03 Nov 2018 04:34:24 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1752 + + +

    Gallery blocks have two settings: the number of columns, and whether or not images should be cropped. The default number of columns is three, and the maximum number of columns is eight.

    + + + +

    Below is a three column gallery at full width, with cropped images.

    + + + + + + + + + + + +

    Some more text for taking up space.

    + + + +

    A two column gallery, aligned to the left, linked to media file.

    + + + +

    In the editor, the image captions can be edited directly by clicking on the text.

    + + + +

    If the number of images cannot be divided into the number of columns you have selected, the default is to have the last image(s) automatically stretch to the width of your gallery.

    + + + + + + + +

    A four column gallery with a wide width:

    + + + + + + + +

    A five column gallery with normal images:

    + + + + + + + +

    This is the same gallery, but with cropped images.

    + + + + + + + +

    Six columns: does it work at all window sizes?

    + + + + + + + +

    Seven columns: how does this look on a narrow window?

    + + + + + + + +

    Eight columns:

    + + + + +]]>
    + + 1752 + + + + + + + 0 + 0 + + + 0 + + + + + + + + + +
    + + Block: Image + https://wpthemetestdata.wordpress.com/2018/11/03/block-image/ + Sat, 03 Nov 2018 15:20:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1755 + + +

    Welcome to image alignment! If you recognize this post, it is because these are blocks that have been converted from the classic Markup: Image Alignment post. The best way to demonstrate the ebb and flow of the various image positioning options is to nestle them snuggly among an ocean of words. Grab a paddle and let's get started. Be sure to try it in RTL mode. Left should stay left and right should stay right for both reading directions.

    + + + +

    On the topic of alignment, it should be noted that users can choose from the options of None, Left, Right, and Center. If the theme has added support for align wide, images can also be wide and full width. Be sure to test this page in RTL mode.

    + + + +

    In addition, they also get the options of the image dimensions 25%, 50%, 75%, 100% or a set width and height.

    + + + +
    Image Alignment 580x300
    + + + +

    The image above happens to be centered.

    + + + +
    Image Alignment 150x150
    + + + +

    The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned.

    + + + +

    As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished!

    + + + +

    And now for a massively large image. It also has no alignment.

    + + + +
    Image Alignment 1200x400
    + + + +

    The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.

    + + + +
    Image Alignment 300x200
    + + + +

    And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there… Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently.

    + + + +

    In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah… Just like that. It never felt so good to be right.

    + + + +

    And just when you thought we were done, we're going to do them all over again with captions!

    + + + +
    Image Alignment 580x300
    Look at 580x300 getting some caption love.
    + + + +

    The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky.

    + + + +
    Image Alignment 150x150
    Itty-bitty caption.
    + + + +

    The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned.

    + + + +

    As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished!

    + + + +

    And now for a massively large image. It also has no alignment.

    + + + +
    Image Alignment 1200x400
    Massive image comment for your eyeballs.
    + + + +

    The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.

    + + + +
    Image Alignment 300x200
    Feels good to be right all the time.
    + + + +

    And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there… Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently.

    + + + +

    In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah… Just like that. It never felt so good to be right.

    + + + +

    Imagine that we would find a use for the extra wide image! This image has the wide width alignment:

    + + + +
    Image Alignment 1200x4002
    + + + +

    Can we go bigger? This image has the full width alignment:

    + + + +
    Image Alignment 1200x4002
    + + + +

    And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! One last thing: The last item in this post's content is a thumbnail floated right. Make sure any elements after the content are clearing properly.

    + + + +
    +]]>
    + + 1755 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Ελληνικά-Greek + https://wpthemetestdata.wordpress.com/greek/ + Fri, 14 Feb 2020 10:31:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1809 + + Headings Επικεφαλίδες +

    Επικεφαλίδα 1 Header one

    +

    Επικεφαλίδα 2 Header two

    +

    Επικεφαλίδα 3 Header three

    +

    Επικεφαλίδα 2 Header four

    +
    Επικεφαλίδα 5 Header five
    +
    Επικεφαλίδα 6Header six
    +

    Παράθεση άλλου Blockquotes

    +Single line blockquote: Μια γραμμή +
    Πάντα να είναι περίεργος.
    +Πολλές γραμμέ με αναφορά Multi line blockquote with a cite reference: +
    Το HTML <blockquote> ElementHTML Block Quotation Element) καταδεικνύει ότι το κείμενο έχει μια παράθεση. Συνήθως οπτικοποιείται με εσοχή (δείτε Σημειώσεις για το πως να το αλλάξετε. Ίσως να δίνεται και URL πηγής με την χρήση του cite attribute, μπλα, μπλα <cite> .
    +multiple contributors - MDN HTML element reference - blockquote +

    Πίνακες Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Υπάλληλος EmployeeΜισθός Salary
    Τάδε κάποιος$1Γιατί τόσα χρειάζεται για να ζήσει
    Jane Doe$100KFor all the blogging she does.
    Fred Bloggs$100MPictures are worth a thousand words, right? So Jane x 1,000.
    Jane Bloggs$100BWith hair like that?! Enough said...
    +

    Λίστες Definition Lists

    +
    +
    Τίτλος λίστας Definition List Title
    +
    Υποδιαίρεση λίστας Definition list division.
    +
    +

    Λίστα με κουκίδες Unordered Lists (Nested)

    +
      +
    • Πρώτο στοιχείο List item one +
        +
      • Στοιχείο πρώτο List item one +
          +
        • Στοιχείο λίστα ένα List item one
        • +
        • Στοιχείο λίστας δύο List item two
        • +
        +
      • +
      • Στοιχείο δεύτερο -item two
      • +
      +
    • +
    • Στοιχειο δύο List item two
    • +
    +

    Αριθμημένη λίστα(Nested)

    +
      +
    1. Στοιχειο ξεκινά με 8-start at 8 +
        +
      1. Στοιχείο λίστας ενα List item one +
          +
        1. Στοιχείο λίστας ενα -reversed attribute
        2. +
        3. Στοιχείο λίστας δύο
        4. +
        +
      2. +
      3. Δεύτερο στοιχείο
      4. +
      +
    2. +
    3. Στοιχείο δύο
    4. +
    +

    Ετικέττες HTML Tags

    +Διεύθυνση Address Tag + +
    1 Απέραντη διαδρομή Infinite Loop +Απλωπολή , ΤΚ 95014 +Ελλάδα
    Αγκυρωση Anchor Tag (aka. Link) + +Πάραδειγμα συνδέσμου. + +Συντομογραφία Abbreviation Tag + +Η συντομογραφία κτλ σημαίνει "Και τα λοιπά". + +Ακρωνύμιο Acronym Tag + +Το ακρωνύμιο κυρ σημαίνει "Κύριος". + +Big Tag + +Αυτό είναι μεγάλο θέμα + +Cite Tag + +"Φάε το φαϊ σου" --Όλες οι μαμάδες + +Code Tag + +This tag styles blocks of code. +.post-title { +margin: 0 0 5px; +font-weight: bold; +font-size: 38px; +line-height: 1.2; +και μία γραμμή με πολύ πάρα πολύ υπερβολικά πάρα πολύ μεγάλο κείμενο που πρέπει να δούμε πως το χειρίζεται η γραμματοσειρά και αν ξεχειλίζει από τις γραμμές και δημιουργεί πρόβλημα; +} + +Διαγραφή Delete Tag + +Μπορείτε να διαγράφεται κείμενο, αλλά δεν συνιστάται. + +Έμφαση Emphasize Tag + +Θα πρέπει να κάνει ιταλικ italicize το κείμενο. + +Εισαγωγή Insert Tag + +Αυτό το tag υποδηλώνει εισηγμένο inserted κείμενο. + +Keyboard Tag + +Αυτό το ελάχιστο γνωστό κείμενο πληκτρολογίου keyboard Tag, συνήθως μορφοποιείται όμοια με το <κώδικα code> tag. + +Προδιαμορφωμένο Preformatted Tag +

    Ο Δρόμος που δεν διάλεξα - The Road Not Taken

    +
    Robert Frost
    +	 Δυο δρόμοι διασταυρώθηκαν σ' ένα χρυσαφένιο δάσος ,
    +	 Και προς λύπη μου και τους δυο τα πόδια μου να ταξιδέψουν δεν μπορούσαν
    +	 Κι επί μακρόν εστάθηκα , καθώς ένας ήμουν ταξιδευτής μονάχος ,
    +	 κι έστρεψα το βλέμμα μου στον πρώτο όσο να χαθεί στο βάθος
    +	 μέχρι εκεί που χάνονταν στα άγρια χόρτα που βλαστούσαν.
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	και μία μακριά, πάρα πολύ μακριά, υπερβολικά μακροσκελής δίχως νόημα πρόταση για να δούμε πως το χειρίζεται το θέμα εμφάνισης και αν αναδιπλώνεται, κρύβεται ή ξεχειλίζει;
    +
    +Quote Tag for short, inline quotes + +Προγραμματιστές, προγραμματιστές, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +Αυτή η ετικέτα είναι με διαγράμμιση strike-through κείμενο text. + +Μικρά Small Tag + +Αυτή η ετικέτα είναι μικρότερο smaller κείμενο text. + +Strong Tag + +Αυτή η ετικέτα δείχνει έντονο bold κείμενο text. + +Subscript Tag + +Getting our science styling on with H2 δύοO, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2 δύο, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +Αυτή η ετικέτα δείχνει τυλετυπος teletype κείμενο, which is usually styled like the <κώδικα code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +Αυτή η ετικέτα δείχνει υπογράμμιση underlined text. + +Variable Tag + +Αυτή η ετικέτα δείχνει παράμετροι variables.]]>
    + + 1809 + + + + + + + 0 + 0 + + + 0 + + + + + + + + +
    + + Επίπεδο 2 -Second Greek level + https://wpthemetestdata.wordpress.com//greek/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-2/ + Fri, 14 Feb 2020 10:31:47 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1811 + + + + 1811 + + + + + + + 1809 + 0 + + + 0 + + + + + + + + + + + Επίπεδο 3 + https://wpthemetestdata.wordpress.com/greek/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-2/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-3/ + Fri, 14 Feb 2020 10:32:50 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1813 + + + + 1813 + + + + + + + 1811 + 0 + + + 0 + + + + + + + + + + + <![CDATA[WP 6.1 Font size scale]]> + https://wpthemetestdata.wordpress.com/wp-6-1-font-size-scale/ + Mon, 16 Jan 2023 07:08:31 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-font-size-scale/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Small H2 Heading

    + + + +

    Medium H2 Heading

    + + + +

    Large H2 Heading

    + + + +

    Extra Large H2 Heading

    + + + +

    Small paragraph

    + + + +

    Medium paragraph

    + + + +

    Large paragraph

    + + + +

    Extra Large paragraph

    +]]> +
    + + 163 + + + + + + + + + 0 + 0 + + + 0 + + + + + + +
    + + <![CDATA[WP 6.1 spacing presets]]> + https://wpthemetestdata.wordpress.com/wp-6-1-spacing-presets/ + Mon, 16 Jan 2023 06:56:53 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-spacing-presets/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    On this page, some group blocks have border or background color set to increase visibility.

    + + + +
    +

    This group has a no background color and no additional spacing set.

    +
    + + + +
    +

    This group has a background color but no additional spacing set.

    +
    + + + +
    +

    This group has a 1px border and padding preset 1

    +
    + + + +
    +

    This group has padding preset 1

    +
    + + + +
    +

    This group has a 1px border and padding preset 2

    +
    + + + +
    +

    This group has a background color and padding preset 3

    +
    + + + +
    +

    This group has a background color and padding preset 4

    +
    + + + +
    +

    This group has a background color and padding preset 5

    +
    + + + +
    +

    This group has a background color and padding preset 6

    +
    + + + +
    +

    This group has a background color and padding preset 7

    +
    + + + +
    +

    This group has padding preset 7

    +
    + + + +
    +

    This group has a background color and margin preset 1

    +
    + + + +
    +

    This group has a background color and margin preset 2

    +
    + + + +
    +

    This group has a background color and margin preset 3

    +
    + + + +
    +

    This group has a background color and margin preset 4

    +
    + + + +
    +

    This group has a background color and margin preset 5

    +
    + + + +
    +

    This group has a background color and margin preset 6

    +
    + + + +
    +

    This group has a background color and margin preset 7

    +
    + + + +
    +

    This group has a 1px border, padding preset 4 and margin preset 4

    +
    + + + +
    +

    This group has padding preset 4 and margin preset 4

    +
    +]]>
    + + 150 + + + + + + + + + 0 + 0 + + + 0 + + + + + + +
    + + <![CDATA[WP 6.1 Theme block category]]> + https://wpthemetestdata.wordpress.com/wp-6-1-theme-block-category/ + Fri, 13 Jan 2023 18:38:05 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-theme-block-category/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Navigation block with page list:

    + + + + + + + +

    Site logo:

    + + + + + +

    Site title:

    + + + + + +

    Tagline block:

    + + + + + +

    Query loop "Title & Date" variation:

    + + + +
    + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Title & Excerpt" variation:

    + + + +
    + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Title, Date & Excerpt" variation:

    + + + +
    + + + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Image, Date & Title" variation:

    + + + +
    + + + + + + + + + + + + + + + + + +

    + +
    + + + +

    Avatar block:

    + + + + + +

    Post title block:

    + + + + + +

    Post excerpt:

    + + + + + +

    Post featured image:

    + + + + + +

    Post author:

    + + + + + +

    Post date:

    + + + + + +

    Categories:

    + + + + + +

    Tags:

    + + + + + +

    Next post & previous post:

    + + + + + + + +

    Read More:

    + + + + + +

    Comments block:

    + + + +
    + + + +
    +
    + + + +
    + + +
    + +
    + + + + +
    +
    + + + + + + + + + + + + + + +

    Post comments form block:

    +
    + + + + + +

    Login/out:

    + + + + + + + + + + + +

    Author biography block:

    + + + + + + + + + +

    Term description, archive title, search results title can not be shown on single posts.

    +]]>
    + + 51 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + + + + 2 + + + https://wpthemetestdata.wordpress.com/ + + + + + + + 0 + 0 + +
    + + <![CDATA[WP 6.1 Widgets block category]]> + https://wpthemetestdata.wordpress.com/wp-6-1-widgets-block-category/ + Fri, 13 Jan 2023 18:22:21 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-widgets-block-category/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Archives block:

    + + + + + + + +

    Categories list:

    + + + + + +

    Custom HTML:

    + + + + test + + + +

    Latest comments:

    + + + + + +

    Latest posts:

    + + + + + +

    Page list block:

    + + + + + +

    RSS block:

    + + + + + + + + + + + + + + + +

    Shortcode block:

    + + + + + +

    Social links:

    + + + + + + + + + + + + + + + +

    Tag cloud:

    + + + + + +

    +]]>
    + + 34 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Design category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-design-category-blocks/ + Fri, 13 Jan 2023 18:03:23 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-design-category-blocks/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + + + + + +
    +
    +

    One single column inside a columns block.

    +
    +
    + + + +
    +
    +

    Column one. The background color is on the single column.

    +
    + + + +
    +

    Column two

    +
    +
    + + + +
    +
    +

    Column one. The background color is on the parent columns block.

    +
    + + + +
    +

    Column two

    +
    + + + +
    +

    Column three

    +
    +
    + + + +
    +

    Group with paragraph inside. Below are the group block variations:

    +
    + + + +
    +

    Row

    + + + +

    Row

    +
    + + + +
    +

    Stack

    + + + +

    Stack

    +
    + + + +

    More block:

    + + + + + + + +

    Page break:

    + + + + + + + +

    Separators:

    + + + +

    Default style, no alignment:

    + + + +
    + + + +

    Default style, wide alignment:

    + + + +
    + + + +

    Default style, full width:

    + + + +
    + + + +

    Default style, align center:

    + + + +
    + + + +

    Wide style, no alignment:

    + + + +
    + + + +

    Wide style, wide alignment:

    + + + +
    + + + +

    Wide style, full width:

    + + + +
    + + + +

    Wide style, align center:

    + + + +
    + + + +

    Dotted style, no alignment:

    + + + +
    + + + +

    Dotted style, wide alignment:

    + + + +
    + + + +

    Dotted style, full width:

    + + + +
    + + + +

    Dotted style, align center:

    + + + +
    + + + +

    Spacer:

    + + + + +]]>
    + + 24 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Media category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-media-category-blocks/ + Fri, 13 Jan 2023 18:02:28 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-media-category-blocks/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Image block:

    + + + +
    dsc20050727_091048_222
    + + + +

    Gallery:

    + + + + + + + +

    Audio:

    + + + +
    + + + +

    Cover:

    + + + +
    Wind Farm
    +

    Write title...

    +
    + + + +
    +

    Fixed background

    +
    + + + +
    +

    Repeated background

    +
    + + + +
    +

    Fixed and Repeated background

    +
    + + + +
    dsc20050727_091048_222
    +

    Duotone

    +
    + + + +
    Rain Ripples
    +

    Top left

    +
    + + + +
    Rain Ripples
    +

    Top center

    +
    + + + +
    Rain Ripples
    +

    Top right

    +
    + + + +
    Rain Ripples
    +

    Center left

    +
    + + + +
    Rain Ripples
    +

    Center right

    +
    + + + +
    Rain Ripples
    +

    Bottom left

    +
    + + + +
    Rain Ripples
    +

    Bottom center

    +
    + + + +
    Rain Ripples
    +

    Bottom right

    +
    + + + + + + + +
    Boardwalk
    +

    This is the Media & Text block with an image on the left.

    +
    + + + +
    Image Alignment 1200x4002
    +

    This is the Media & Text block with a cropped image on the left

    +
    + + + +
    +

    This is the Media & Text block with a video the right.

    +
    + + + +
    +]]>
    + + 21 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Text category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-text-category-blocks/ + Fri, 13 Jan 2023 17:46:19 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-text-category-blocks + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Paragraph

    + + + +

    H1 Heading

    + + + +

    H2 Heading

    + + + +

    H3 Heading

    + + + +

    H4 Heading

    + + + +
    H5 Heading
    + + + +
    H6 Heading
    + + + +
      +
    • List
    • + + + +
    • List
    • +
    + + + +
      +
    1. List
    2. + + + +
    3. List
    4. +
    + + + +
      +
    1. List +
        +
      • List
      • +
      +
    2. +
    + + + +
    +

    Quote block

    +citation
    + + +

    classic block

    + + +
    code block
    + + + +
    Preformatted block
    + + + +

    Pull quote

    Citation
    + + + +
    table celltable cell two
    table cell threetable cell four
    Table caption
    + + + +
    header label oneheader label two
    table celltable cell two
    table cell threetable cell four
    footer label onefooter label two
    Table caption
    + + + +
    Verse block
    +]]>
    + + 8 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + +
    + + Keyboard navigation + https://wpthemetestdata.wordpress.com/2018/10/20/keyboard-navigation/ + Sun, 21 Oct 2018 03:03:48 +0000 + + https://wpthemetestdata.wordpress.com/?p=1724 + + +

    There are many different ways to use the web besides a mouse and a pair of eyes. Users navigate for example with a keyboard only or with their voice.

    + + + +

    All the functionality, including menus, links and forms should work using a keyboard only. This is essential for all assistive technology to work properly. The only way to test this, at the moment, is manually. The best time to test this is during development.

    + + + +

    How to keyboard test:

    + + + +

    Tab through your pages, links and forms to do the following tests:

    + + + +
    • Confirm that all links can be reached and activated via keyboard, including any in dropdown submenus.
    • Confirm that all links get a visible focus indicator (e.g., a border highlight).
    • Confirm that all visually hidden links (e.g. skip links) become visible when in focus.
    • Confirm that all form input fields and buttons can be accessed and used via keyboard.
    • Confirm that all interactions, buttons, and other controls can be triggered via keyboard — any action you can complete with a mouse must also be performable via keyboard.
    • Confirm that focus doesn’t move in unexpected ways around the page.
    • Confirm that using shift+tab to move backwards works as well.
    + + + +

    Resources

    + + + + +]]>
    + + 1724 + + + + + + + 0 + 0 + + + + 0 +
    + + About The Tests + https://wpthemetestdata.wordpress.com/about/ + Mon, 26 Jul 2010 02:40:01 +0000 + themedemos + https://wpthemetestdata.wordpress.com/about/ + + WordPress Theme Development Resources + +
      +
    1. See the WordPress Theme Developer Handbook for examples of best practices.
    2. +
    3. See the WordPress Code Reference for more information about WordPress' functions, classes, methods, and hooks.
    4. +
    5. See Theme Unit Test for a robust test suite for your Theme and get the latest version of the test data you see here.
    6. +
    7. See Releasing Your Theme for a guide to submitting your Theme to the Theme Directory.
    8. +
    ]]>
    + + 2 + 2010-07-25 19:40:01 + 2010-07-26 02:40:01 + closed + closed + about + publish + 0 + 1 + page + + 0 +
    + + Lorem Ipsum + https://wpthemetestdata.wordpress.com/lorem-ipsum/ + Tue, 04 Sep 2007 16:52:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/lorem-ipsum/ + + + + 146 + 2007-09-04 09:52:50 + 2007-09-04 16:52:50 + closed + closed + lorem-ipsum + publish + 0 + 7 + page + + 0 + + + Page with comments + https://wpthemetestdata.wordpress.com/about/page-with-comments/ + Tue, 04 Sep 2007 17:47:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/page-with-comments/ + + + + 155 + 2007-09-04 10:47:47 + 2007-09-04 17:47:47 + open + closed + page-with-comments + publish + 2 + 3 + page + + 0 + + 167 + + anon@example.com + + + 2007-09-04 10:49:28 + 2007-09-04 00:49:28 + + 1 + + 0 + 0 + + + 168 + + tellyworth+test2@example.com + + + 2007-09-04 10:49:03 + 2007-09-04 00:49:03 + + 1 + + 0 + 0 + + + 169 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2007-09-04 10:48:51 + 2007-09-04 17:48:51 + + 1 + + 0 + 0 + + + 1017 + + themereviewteam@gmail.com + + + 2014-12-10 01:56:24 + 2014-12-10 08:56:24 + + 0 + + 168 + 0 + + + + Page with comments disabled + https://wpthemetestdata.wordpress.com/about/page-with-comments-disabled/ + Tue, 04 Sep 2007 17:48:10 +0000 + themedemos + https://wpthemetestdata.wordpress.com/page-with-comments-disabled/ + + + + 156 + 2007-09-04 10:48:10 + 2007-09-04 17:48:10 + closed + closed + page-with-comments-disabled + publish + 2 + 4 + page + + 0 + + + Level 3 + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3/ + Tue, 11 Dec 2007 06:23:16 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-3/ + + + + 172 + 2007-12-11 16:23:16 + 2007-12-11 06:23:16 + closed + closed + level-3 + publish + 173 + 0 + page + + 0 + + + Level 2 + https://wpthemetestdata.wordpress.com/level-1/level-2/ + Tue, 11 Dec 2007 06:23:33 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-2/ + + + + 173 + 2007-12-11 16:23:33 + 2007-12-11 06:23:33 + closed + closed + level-2 + publish + 174 + 0 + page + + 0 + + + Level 1 + https://wpthemetestdata.wordpress.com/level-1/ + Tue, 11 Dec 2007 23:25:40 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-1/ + + + + 174 + 2007-12-11 16:25:40 + 2007-12-11 23:25:40 + closed + closed + level-1 + publish + 0 + 5 + page + + 0 + + + Clearing Floats + https://wpthemetestdata.wordpress.com/about/clearing-floats/ + Sun, 01 Aug 2010 16:42:26 +0000 + themedemos + https://wpthemetestdata.wordpress.com/ + + This is the second page]]> + + 501 + 2010-08-01 09:42:26 + 2010-08-01 16:42:26 + closed + closed + clearing-floats + publish + 2 + 2 + page + + 0 + + + canola2 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/canola2/ + Mon, 16 Jun 2008 13:17:54 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/canola2.jpg + + + + 611 + 2008-06-16 06:17:54 + 2008-06-16 13:17:54 + open + closed + canola2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/canola2.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + dsc20050727_091048_222 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050727_091048_222/ + Mon, 16 Jun 2008 13:20:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050727_091048_222.jpg + + + + 616 + 2008-06-16 06:20:37 + 2008-06-16 13:20:37 + open + closed + dsc20050727_091048_222 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050727_091048_222.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + dsc20050813_115856_52 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050813_115856_52/ + Mon, 16 Jun 2008 13:20:57 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050813_115856_52.jpg + + + + 617 + 2008-06-16 06:20:57 + 2008-06-16 13:20:57 + open + closed + dsc20050813_115856_52 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050813_115856_52.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Front Page + https://wpthemetestdata.wordpress.com/front-page/ + Sat, 21 May 2011 01:49:43 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=701 + + + + 701 + 2011-05-20 18:49:43 + 2011-05-21 01:49:43 + open + closed + front-page + publish + 0 + 0 + page + + 0 + + + a Blog page + https://wpthemetestdata.wordpress.com/blog/ + Sat, 21 May 2011 01:51:43 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=703 + + + + 703 + 2011-05-20 18:51:43 + 2011-05-21 01:51:43 + open + closed + blog + publish + 0 + 0 + page + + 0 + + 1016 + + example@example.com + + + 2014-11-29 21:03:05 + 2014-11-30 04:03:05 + + 0 + + 0 + 0 + + + + Bell on Wharf + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/100_5478/ + Mon, 16 Jun 2008 21:34:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/100_5478.jpg + + + + 754 + 2008-06-16 14:34:50 + 2008-06-16 21:34:50 + open + closed + 100_5478 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/100_5478.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Golden Gate Bridge + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/100_5540/ + Mon, 16 Jun 2008 21:35:55 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/100_5540.jpg + + + + 755 + 2008-06-16 14:35:55 + 2008-06-16 21:35:55 + open + closed + 100_5540 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/100_5540.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sunburst Over River + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/cep00032/ + Mon, 16 Jun 2008 21:41:24 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/cep00032.jpg + + + + 756 + 2008-06-16 14:41:24 + 2008-06-16 21:41:24 + open + closed + cep00032 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/cep00032.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Boardwalk + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dcp_2082/ + Mon, 16 Jun 2008 21:41:27 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dcp_2082.jpg + + + + 757 + 2008-06-16 14:41:27 + 2008-06-16 21:41:27 + open + closed + dcp_2082 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dcp_2082.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Yachtsody in Blue + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc03149/ + Mon, 16 Jun 2008 21:41:33 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc03149.jpg + + + + 758 + 2008-06-16 14:41:33 + 2008-06-16 21:41:33 + open + closed + dsc03149 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc03149.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Rain Ripples + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc04563/ + Mon, 16 Jun 2008 21:41:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc04563.jpg + + + + 759 + 2008-06-16 14:41:37 + 2008-06-16 21:41:37 + open + closed + dsc04563 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc04563.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sydney Harbor Bridge + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc09114/ + Mon, 16 Jun 2008 21:41:41 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc09114.jpg + + + + 760 + 2008-06-16 14:41:41 + 2008-06-16 21:41:41 + open + closed + dsc09114 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc09114.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Wind Farm + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050102_192118_51/ + Mon, 16 Jun 2008 21:41:42 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050102_192118_51.jpg + + + + 761 + 2008-06-16 14:41:42 + 2008-06-16 21:41:42 + open + closed + dsc20050102_192118_51 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050102_192118_51.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Antique Farm Machinery + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20051220_160808_102/ + Mon, 16 Jun 2008 21:41:45 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_160808_102.jpg + + + + 762 + 2008-06-16 14:41:45 + 2008-06-16 21:41:45 + open + closed + dsc20051220_160808_102 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_160808_102.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Rusty Rail + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20051220_173257_119/ + Mon, 16 Jun 20081 21:47:17 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_173257_119.jpg + + + + 764 + 2008-06-16 14:47:17 + 2008-06-16 21:47:17 + open + closed + dsc20051220_173257_119 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_173257_119.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sea and Rocks + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dscn3316/ + Mon, 16 Jun 2008 21:47:20 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dscn3316.jpg + + + + 765 + 2008-06-16 14:47:20 + 2008-06-16 21:47:20 + open + closed + dscn3316 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dscn3316.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Big Sur + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/michelle_049/ + Mon, 16 Jun 2008 21:47:23 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/michelle_049.jpg + + + + 766 + 2008-06-16 14:47:23 + 2008-06-16 21:47:23 + open + closed + michelle_049 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/michelle_049.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Windmill + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dcf-1-0/ + Mon, 16 Jun 2008 21:47:26 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/windmill.jpg + + + + 767 + 2008-06-16 14:47:26 + 2008-06-16 21:47:26 + open + closed + dcf-1-0 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/windmill.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Huatulco Coastline + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/alas-i-have-found-my-shangri-la/ + Mon, 16 Jun 2008 21:49:48 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0513-1.jpg + + + + 768 + 2008-06-16 14:49:48 + 2008-06-16 21:49:48 + open + closed + alas-i-have-found-my-shangri-la + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0513-1.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Brazil Beach + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_0747/ + Mon, 16 Jun 2008 21:50:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0747.jpg + + + + 769 + 2008-06-16 14:50:37 + 2008-06-16 21:50:37 + open + closed + img_0747 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0747.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Huatulco Coastline + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_0767/ + Mon, 16 Jun 2008 21:51:19 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0767.jpg + + + + 770 + 2008-06-16 14:51:19 + 2008-06-16 21:51:19 + open + closed + img_0767 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0767.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Boat Barco Texture + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_8399/ + Mon, 16 Jun 2008 21:51:57 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_8399.jpg + + + + 771 + 2008-06-16 14:51:57 + 2008-06-16 21:51:57 + open + closed + img_8399 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_8399.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Resinous + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20040724_152504_532-2/ + Mon, 04 Jun 2012 18:36:56 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg + + + + 807 + 2012-06-04 11:36:56 + 2012-06-04 18:36:56 + open + closed + dsc20040724_152504_532-2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg + + _attachment_original_parent_id + + + + + St. Louis Blues + https://wpthemetestdata.wordpress.com/2010/07/02/post-format-audio/originaldixielandjazzbandwithalbernard-stlouisblues/ + Mon, 16 Jun 2008 16:49:29 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3 + + + + 821 + 2008-06-16 09:49:29 + 2008-06-16 16:49:29 + open + closed + originaldixielandjazzbandwithalbernard-stlouisblues + inherit + 587 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3 + + + OLYMPUS DIGITAL CAMERA + https://wpthemetestdata.wordpress.com/about/clearing-floats/olympus-digital-camera/ + Thu, 05 Aug 2010 18:07:34 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2010/08/manhattansummer.jpg + + + + 827 + 2010-08-05 11:07:34 + 2010-08-05 18:07:34 + open + closed + olympus-digital-camera + inherit + 501 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2010/08/manhattansummer.jpg + + + Image Alignment 580x300 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-580x300/ + Fri, 15 Mar 2013 00:44:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg + + + + 967 + 2013-03-14 19:44:50 + 2013-03-15 00:44:50 + open + open + image-alignment-580x300 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Image Alignment 150x150 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-150x150/ + Fri, 15 Mar 2013 00:44:49 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg + + + + 968 + 2013-03-14 19:44:49 + 2013-03-15 00:44:49 + open + open + image-alignment-150x150 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Horizontal Featured Image + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-horizontal/featured-image-horizontal-2/ + Fri, 15 Mar 2013 20:40:38 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-horizontal.jpg + + + + 1022 + 2013-03-15 15:40:38 + 2013-03-15 20:40:38 + open + open + featured-image-horizontal-2 + inherit + 1011 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-horizontal.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + I Am Worth Loving Wallpaper + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/soworthloving-wallpaper/ + Thu, 14 Mar 2013 14:58:24 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/soworthloving-wallpaper.jpg + + + + 1023 + 2013-03-14 09:58:24 + 2013-03-14 14:58:24 + open + open + soworthloving-wallpaper + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/soworthloving-wallpaper.jpg + + _wp_attachment_image_alt + + + + + Image Alignment 300x200 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-300x200/ + Fri, 15 Mar 2013 00:44:49 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg + + + + 1025 + 2013-03-14 19:44:49 + 2013-03-15 00:44:49 + open + open + image-alignment-300x200 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Vertical Featured Image + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-vertical/featured-image-vertical-2/ + Fri, 15 Mar 2013 20:41:09 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-vertical.jpg + + + + 1027 + 2013-03-15 15:41:09 + 2013-03-15 20:41:09 + open + open + featured-image-vertical-2 + inherit + 1016 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-vertical.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Image Alignment 1200x4002 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-1200x4002/ + Fri, 15 Mar 2013 00:44:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg + + + + 1029 + 2013-03-14 19:44:50 + 2013-03-15 00:44:50 + open + open + image-alignment-1200x4002 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Unicorn Wallpaper + https://wpthemetestdata.wordpress.com/2010/08/08/post-format-image/unicorn-wallpaper/ + Fri, 14 Dec 2012 03:10:39 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2012/12/unicorn-wallpaper.jpg + + + + 1045 + 2012-12-13 22:10:39 + 2012-12-14 03:10:39 + open + open + unicorn-wallpaper + inherit + 1158 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2012/12/unicorn-wallpaper.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Pages + https://wpthemetestdata.wordpress.com/2013/04/09/pages/ + Tue, 09 Apr 2013 13:37:45 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/pages + + + + 1100 + 2013-04-09 06:37:45 + 2013-04-09 13:37:45 + open + closed + pages + publish + 0 + 2 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Categories + https://wpthemetestdata.wordpress.com/2013/04/09/categories/ + Tue, 09 Apr 2013 13:37:45 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/categories + + + + 1101 + 2013-04-09 06:37:45 + 2013-04-09 13:37:45 + open + closed + categories + publish + 0 + 10 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1112/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1112</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test markup tags and styles.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1112</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1112</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>21</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[4675]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1115/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1115</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test post formats.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1115</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1115</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>24</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[44090582]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1118/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1118</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test unpublished posts.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1118</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1118</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>28</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[54090]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>Depth + https://wpthemetestdata.wordpress.com/2013/04/09/depth/ + Tue, 09 Apr 2013 13:37:46 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/depth + + + + 1119 + 2013-04-09 06:37:46 + 2013-04-09 13:37:46 + open + closed + depth + publish + 0 + 29 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 01 + https://wpthemetestdata.wordpress.com/2013/04/09/level-01/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-01 + + + + 1120 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-01 + publish + 0 + 30 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 02 + https://wpthemetestdata.wordpress.com/2013/04/09/level-02/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-02 + + + + 1121 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-02 + publish + 0 + 31 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 03 + https://wpthemetestdata.wordpress.com/2013/04/09/level-03/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-03 + + + + 1122 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-03 + publish + 0 + 32 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 04 + https://wpthemetestdata.wordpress.com/2013/04/09/level-04/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-04 + + + + 1123 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-04 + publish + 0 + 33 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 05 + https://wpthemetestdata.wordpress.com/2013/04/09/level-05/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-05 + + + + 1124 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-05 + publish + 0 + 34 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 06 + https://wpthemetestdata.wordpress.com/2013/04/09/level-06/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-06 + + + + 1125 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-06 + publish + 0 + 35 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 07 + https://wpthemetestdata.wordpress.com/2013/04/09/level-07/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-07 + + + + 1126 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-07 + publish + 0 + 36 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 08 + https://wpthemetestdata.wordpress.com/2013/04/09/level-08/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-08 + + + + 1127 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-08 + publish + 0 + 37 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 09 + https://wpthemetestdata.wordpress.com/2013/04/09/level-09/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-09 + + + + 1128 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-09 + publish + 0 + 38 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 10 + https://wpthemetestdata.wordpress.com/2013/04/09/level-10/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-10 + + + + 1129 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-10 + publish + 0 + 39 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Advanced + https://wpthemetestdata.wordpress.com/2013/04/09/advanced/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/advanced + + + + 1130 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + advanced + publish + 0 + 40 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu Description + https://wpthemetestdata.wordpress.com/2013/04/09/menu-description/ + Tue, 09 Apr 2013 13:37:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-description + + + + 1142 + 2013-04-09 06:37:50 + 2013-04-09 13:37:50 + open + closed + menu-description + publish + 0 + 44 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu Title Attribute + https://wpthemetestdata.wordpress.com/2013/04/09/menu-title-attribute/ + Tue, 09 Apr 2013 13:37:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-title-attribute + + + + 1143 + 2013-04-09 06:37:50 + 2013-04-09 13:37:50 + open + closed + menu-title-attribute + publish + 0 + 41 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu CSS Class + https://wpthemetestdata.wordpress.com/2013/04/09/menu-css-class/ + Tue, 09 Apr 2013 13:37:51 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-css-class + + + + 1144 + 2013-04-09 06:37:51 + 2013-04-09 13:37:51 + open + closed + menu-css-class + publish + 0 + 42 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + New Window / Tab + https://wpthemetestdata.wordpress.com/2013/04/09/new-window-tab/ + Tue, 09 Apr 2013 13:37:51 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/new-window-tab + + + + 1145 + 2013-04-09 06:37:51 + 2013-04-09 13:37:51 + open + closed + new-window-tab + publish + 0 + 43 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1263/</link> + <pubDate>Tue, 09 Apr 2013 13:38:00 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1263</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1263</wp:post_id> + <wp:post_date>2013-04-09 06:38:00</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:38:00</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1263</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1100]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1264/</link> + <pubDate>Tue, 09 Apr 2013 13:38:01 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1264</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1264</wp:post_id> + <wp:post_date>2013-04-09 06:38:01</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:38:01</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1264</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1100]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>twitter.com + https://wpthemetestdata.wordpress.com/2018/10/20/twitter-com/ + Sun, 21 Oct 2018 02:57:33 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/twitter-com/ + + + + 1719 + + + + + + + 0 + 1 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + facebook.com + https://wpthemetestdata.wordpress.com/2018/10/20/facebook-com/ + Sun, 21 Oct 2018 02:57:35 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/facebook-com/ + + + + 1720 + + + + + + + 0 + 2 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + github.com + https://wpthemetestdata.wordpress.com/2018/10/20/github-com/ + Sun, 21 Oct 2018 02:57:37 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/github-com + + + + 1721 + + + + + + + 0 + 3 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + instagram.com + https://wpthemetestdata.wordpress.com/2018/10/20/instagram-com + Sun, 21 Oct 2018 02:57:41 +000 + themereviewteam> + https://wpthemetestdata.wordpress.com/2018/10/20/instagram-com + + + + 1723 + + + + + + + 0 + 5 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + linkedin.com + https://wpthemetestdata.wordpress.com/2018/10/20/linkedin-com/ + Sun, 21 Oct 2018 02:57:39 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/linkedin-com/ + + + + 1722 + + + + + + + 0 + 4 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + triforce-wallpaper + https://wpthemetestdata.wordpress.com/2010/08/07/post-format-image-caption/triforce-wallpaper/ + Tue, 17 Aug 2010 20:17:31 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2010/08/triforce-wallpaper.jpg + + + + 1628 + 2010-08-17 13:17:31 + 2010-08-17 20:17:31 + open + closed + triforce-wallpaper + inherit + 1163 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2010/08/triforce-wallpaper.jpg + + + + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1636/</link> + <pubDate>Tue, 07 May 2013 19:54:30 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1636</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1636</wp:post_id> + <wp:post_date>2013-05-07 12:54:30</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:30</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1636</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1637/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1637</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1637</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1637</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1638/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1638</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1638</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1638</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1639/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1639</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1639</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1639</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1640/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1640</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1640</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1640</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1641/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1641</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1641</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1641</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1643/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1643</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1643</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1643</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1644/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1644</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1644</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1644</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[701]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1645/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1645</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1645</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1645</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1646/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1646</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1646</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1646</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1647/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1647</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1647</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1647</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1648/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1648</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1648</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1648</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1649/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1649</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1649</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1649</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1650/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1650</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1650</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1650</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1651/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1651</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1651</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1651</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>10</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[174]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1652/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1652</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1652</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1652</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>11</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[173]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1653/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1653</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1653</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1653</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>12</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[172]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1654/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1654</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1654</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1654</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>13</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[746]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1655/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1655</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1655</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1655</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>14</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[748]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1656/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1656</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1656</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1656</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>15</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[742]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1657/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1657</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1657</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1657</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>16</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[744]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1658/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1658</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1658</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1658</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>17</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1659/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1659</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1659</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1659</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>18</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[733]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1660/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1660</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1660</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1660</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>19</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[735]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1643/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1643</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1643</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1643</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1644/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1644</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1644</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1644</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[701]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1645/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1645</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1645</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1645</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1646/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1646</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1646</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1646</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1647/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1647</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1647</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1647</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1648/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1648</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1648</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1648</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1649/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1649</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1649</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1649</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1650/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1650</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1650</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1650</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1651/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1651</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1651</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1651</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>10</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[174]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1652/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1652</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1652</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1652</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>11</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[173]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1653/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1653</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1653</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1653</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>12</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[172]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1654/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1654</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1654</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1654</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>13</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[746]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1655/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1655</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1655</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1655</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>14</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[748]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1656/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1656</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1656</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1656</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>15</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[742]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1657/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1657</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1657</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1657</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>16</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[744]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1658/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1658</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1658</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1658</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>17</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1659/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1659</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1659</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1659</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>18</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[733]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1660/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1660</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1660</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1660</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>19</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[735]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>dsc20040724_152504_532 + https://wpthemetestdata.wordpress.com/?attachment_id=1686 + Wed, 18 Sep 2013 21:37:05 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20040724_152504_532.jpg + + + + 1686 + 2013-09-18 14:37:05 + 2013-09-18 21:37:05 + open + closed + dsc20040724_152504_532 + inherit + 0 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20040724_152504_532.jpg + + + dsc20050604_133440_34211 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050604_133440_34211/ + Wed, 18 Sep 2013 21:37:07 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20050604_133440_34211.jpg + + + + 1687 + 2013-09-18 14:37:07 + 2013-09-18 21:37:07 + open + closed + dsc20050604_133440_34211 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20050604_133440_34211.jpg + + + 2014-slider-mobile-behavior + https://wpthemetestdata.wordpress.com/?attachment_id=1690 + Wed, 04 Dec 2013 18:08:29 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/12/2014-slider-mobile-behavior.mov + + + + 1690 + 2013-12-04 11:08:29 + 2013-12-04 18:08:29 + open + closed + 2014-slider-mobile-behavior + inherit + 0 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/12/2014-slider-mobile-behavior.mov + + + dsc20050315_145007_132 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050315_145007_132-2/ + Sun, 05 Jan 2014 18:45:21 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2014/01/dsc20050315_145007_132.jpg + + + + 1691 + 2014-01-05 11:45:21 + 2014-01-05 18:45:21 + open + closed + dsc20050315_145007_132-2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2014/01/dsc20050315_145007_132.jpg + + + spectacles + https://wpthemetestdata.wordpress.com/about/clearing-floats/spectacles-2/ + Sun, 05 Jan 2014 18:45:36 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2014/01/spectacles.gif + + + + 1692 + 2014-01-05 11:45:36 + 2014-01-05 18:45:36 + open + closed + spectacles-2 + inherit + 501 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2014/01/spectacles.gif + + + Post Format: Standard + https://wpthemetestdata.wordpress.com/2010/10/05/post-format-standard/ + Tue, 05 Oct 2010 07:27:25 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=358 + + + +Mrs. Darling first heard of Peter when she was tidying up her children's minds. It is the nightly custom of every good mother after her children are asleep to rummage in their minds and put things straight for next morning, repacking into their proper places the many articles that have wandered during the day. + +If you could keep awake (but of course you can't) you would see your own mother doing this, and you would find it very interesting to watch her. It is quite like tidying up drawers. You would see her on her knees, I expect, lingering humorously over some of your contents, wondering where on earth you had picked this thing up, making discoveries sweet and not so sweet, pressing this to her cheek as if it were as nice as a kitten, and hurriedly stowing that out of sight. When you wake in the morning, the naughtiness and evil passions with which you went to bed have been folded up small and placed at the bottom of your mind and on the top, beautifully aired, are spread out your prettier thoughts, ready for you to put on. + +I don't know whether you have ever seen a map of a person's mind. Doctors sometimes draw maps of other parts of you, and your own map can become intensely interesting, but catch them trying to draw a map of a child's mind, which is not only confused, but keeps going round all the time. There are zigzag lines on it, just like your temperature on a card, and these are probably roads in the island, for the Neverland is always more or less an island, with astonishing splashes of colour here and there, and coral reefs and rakish-looking craft in the offing, and savages and lonely lairs, and gnomes who are mostly tailors, and caves through which a river runs, and princes with six elder brothers, and a hut fast going to decay, and one very small old lady with a hooked nose. It would be an easy map if that were all, but there is also first day at school, religion, fathers, the round pond, needle-work, murders, hangings, verbs that take the dative, chocolate pudding day, getting into braces, say ninety-nine, three-pence for pulling out your tooth yourself, and so on, and either these are part of the island or they are another map showing through, and it is all rather confusing, especially as nothing will stand still. + +Of course the Neverlands vary a good deal. John's, for instance, had a lagoon with flamingoes flying over it at which John was shooting, while Michael, who was very small, had a flamingo with lagoons flying over it. John lived in a boat turned upside down on the sands, Michael in a wigwam, Wendy in a house of leaves deftly sewn together. John had no friends, Michael had friends at night, Wendy had a pet wolf forsaken by its parents, but on the whole the Neverlands have a family resemblance, and if they stood still in a row you could say of them that they have each other's nose, and so forth. On these magic shores children at play are for ever beaching their coracles [simple boat]. We too have been there; we can still hear the sound of the surf, though we shall land no more. + +Of all delectable islands the Neverland is the snuggest and most compact, not large and sprawly, you know, with tedious distances between one adventure and another, but nicely crammed. When you play at it by day with the chairs and table-cloth, it is not in the least alarming, but in the two minutes before you go to sleep it becomes very real. That is why there are night-lights. + +Occasionally in her travels through her children's minds Mrs. Darling found things she could not understand, and of these quite the most perplexing was the word Peter. She knew of no Peter, and yet he was here and there in John and Michael's minds, while Wendy's began to be scrawled all over with him. The name stood out in bolder letters than any of the other words, and as Mrs. Darling gazed she felt that it had an oddly cocky appearance.]]> + + 358 + 2010-10-05 00:27:25 + 2010-10-05 07:27:25 + closed + closed + post-format-standard + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Gallery + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/ + Fri, 10 Sep 2010 14:24:14 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=555 + + + +You can use this page to test the Theme's handling of the gallery shortcode, including the columns parameter, from 1 to 9 columns. Themes are only required to support the default setting (3 columns), so this page is entirely optional. +

    One Column

    +[gallery columns="1"] +

    Two Columns

    +[gallery columns="2"] +

    Three Columns

    +[gallery columns="3"] +

    Four Columns

    +[gallery columns="4"] +

    Five Columns

    +[gallery columns="5"] +

    Six Columns

    +[gallery columns="6"] +

    Seven Columns

    +[gallery columns="7"] +

    Eight Columns

    +[gallery columns="8"] +

    Nine Columns

    +[gallery columns="9"]]]>
    + + 555 + 2010-09-10 07:24:14 + 2010-09-10 14:24:14 + closed + closed + post-format-gallery + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Post Format: Aside + https://wpthemetestdata.wordpress.com/2010/05/09/post-format-aside/ + Sun, 09 May 2010 14:51:54 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=559 + + + + 559 + 2010-05-09 07:51:54 + 2010-05-09 14:51:54 + closed + closed + post-format-aside + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Chat + https://wpthemetestdata.wordpress.com/2010/01/08/post-format-chat/ + Fri, 08 Jan 2010 14:59:31 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=562 + + + + 562 + 2010-01-08 07:59:31 + 2010-01-08 14:59:31 + closed + closed + post-format-chat + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Link + https://wpthemetestdata.wordpress.com/2010/03/07/post-format-link/ + Sun, 07 Mar 2010 15:06:53 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=565 + + The WordPress Theme Review Team Website]]> + + 565 + 2010-03-07 08:06:53 + 2010-03-07 15:06:53 + closed + closed + post-format-link + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Image (Linked) + https://wpthemetestdata.wordpress.com/2010/08/06/post-format-image-linked/ + Fri, 06 Aug 2010 15:09:39 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=568 + + chunk of resinous blackboy husk[/caption] +]]> + + 568 + 2010-08-06 08:09:39 + 2010-08-06 15:09:39 + closed + closed + post-format-image-linked + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Quote + https://wpthemetestdata.wordpress.com/2010/02/05/post-format-quote/ + Fri, 05 Feb 2010 15:13:15 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=575 + + Only one thing is impossible for God: To find any sense in any copyright law on the planet. +Mark Twain]]> + + 575 + 2010-02-05 08:13:15 + 2010-02-05 15:13:15 + closed + closed + post-format-quote + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Status + https://wpthemetestdata.wordpress.com/2010/04/04/post-format-status/ + Sun, 04 Apr 2010 15:21:24 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=579 + + + + 579 + 2010-04-04 08:21:24 + 2010-04-04 15:21:24 + closed + closed + post-format-status + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Video (WordPress.tv) + https://wpthemetestdata.wordpress.com/2010/06/03/post-format-video-wordpresstv/ + Thu, 03 Jun 2010 15:25:58 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=582 + + instructions in the Codex.]]> + + 582 + 2010-06-03 08:25:58 + 2010-06-03 15:25:58 + closed + closed + post-format-video-wordpresstv + publish + 0 + 0 + post + + 0 + + + + + + + + + _oembed_4321638fc1a6fee26443f7fe8a70a871 + ]]> + + + _oembed_29351fff85c1be1d1e9a965a0332a861 + ]]> + + + _oembed_9fcc86d7d9398ff736577f922307f64d + ]]> + + + _oembed_366237792d32461d0052efb2edec37f5 + ]]> + + + _oembed_37fdfe862c13c46a93be2921279bf675 + ]]> + + + + Post Format: Audio + https://wpthemetestdata.wordpress.com/2010/07/02/post-format-audio/ + Fri, 02 Jul 2010 15:36:44 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=587 + + St. Louis Blues + +Audio shortcode: + +[audio https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3]]]> + + 587 + 2010-07-02 08:36:44 + 2010-07-02 15:36:44 + closed + closed + post-format-audio + publish + 0 + 0 + post + + 0 + + + + + + + + enclosure + + + + + Page A + https://wpthemetestdata.wordpress.com/page-a/ + Fri, 24 Jun 2011 01:38:52 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=733 + + + + 733 + 2011-06-23 18:38:52 + 2011-06-24 01:38:52 + open + closed + page-a + publish + 0 + 10 + page + + 0 + + + Page B + https://wpthemetestdata.wordpress.com/page-b/ + Fri, 24 Jun 2011 01:39:14 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=735 + + + + 735 + 2011-06-23 18:39:14 + 2011-06-24 01:39:14 + open + closed + page-b + publish + 0 + 11 + page + + 0 + + + Level 2a + https://wpthemetestdata.wordpress.com/level-1/level-2a/ + Fri, 24 Jun 2011 02:03:33 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=742 + + + + 742 + 2011-06-23 19:03:33 + 2011-06-24 02:03:33 + open + closed + level-2a + publish + 174 + 0 + page + + 0 + + + Level 2b + https://wpthemetestdata.wordpress.com/level-1/level-2b/ + Fri, 24 Jun 2011 02:04:03 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=744 + + + + 744 + 2011-06-23 19:04:03 + 2011-06-24 02:04:03 + open + closed + level-2b + publish + 174 + 0 + page + + 0 + + + Level 3a + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3a/ + Fri, 24 Jun 2011 02:04:24 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=746 + + + + 746 + 2011-06-23 19:04:24 + 2011-06-24 02:04:24 + open + closed + level-3a + publish + 173 + 0 + page + + 0 + + + Level 3b + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3b/ + Fri, 24 Jun 2011 02:04:46 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=748 + + + + 748 + 2011-06-23 19:04:46 + 2011-06-24 02:04:46 + open + closed + level-3b + publish + 173 + 0 + page + + 0 + + + Template: Excerpt (Defined) + https://wpthemetestdata.wordpress.com/2012/03/15/template-excerpt-defined/ + Thu, 15 Mar 2012 21:38:08 +0000 + themedemos + http://wptest.io/demo/?p=993 + + should be displayed in place of the user-defined excerpt in single-page views.]]> + should be displayed in place of the post content in archive-index pages. It can be longer than the automatically generated excerpts, and can have HTML tags.]]> + 993 + 2012-03-15 14:38:08 + 2012-03-15 21:38:08 + closed + closed + template-excerpt-defined + publish + 0 + 0 + post + + 0 + + + + + + + + + Template: More Tag + https://wpthemetestdata.wordpress.com/2012/03/15/template-more-tag/ + Thu, 15 Mar 2012 21:41:11 +0000 + themedemos + http://wptest.io/demo/?p=996 + + more tag. + +Right after this sentence should be a "continue reading" button of some sort on list pages of themes that show full content. It won't show on single pages or on themes showing excerpts. + + + +And this content is after the more tag. (which should be the anchor link for when the button is clicked)]]> + + 996 + 2012-03-15 14:41:11 + 2012-03-15 21:41:11 + closed + closed + template-more-tag + publish + 0 + 0 + post + + 0 + + + + + + + + + Edge Case: Nested And Mixed Lists + https://wpthemetestdata.wordpress.com/2009/05/15/edge-case-nested-and-mixed-lists/ + Fri, 15 May 2009 21:48:32 +0000 + themedemos + http://wptest.io/demo/?p=1000 + + +
  • Lists within lists do not break the ordered list numbering order
  • +
  • Your list styles go deep enough.
  • + +

    Ordered - Unordered - Ordered

    +
      +
    1. ordered item
    2. +
    3. ordered item +
        +
      • unordered
      • +
      • unordered +
          +
        1. ordered item
        2. +
        3. ordered item
        4. +
        +
      • +
      +
    4. +
    5. ordered item
    6. +
    7. ordered item
    8. +
    +

    Ordered - Unordered - Unordered

    +
      +
    1. ordered item
    2. +
    3. ordered item +
        +
      • unordered
      • +
      • unordered +
          +
        • unordered item
        • +
        • unordered item
        • +
        +
      • +
      +
    4. +
    5. ordered item
    6. +
    7. ordered item
    8. +
    +

    Unordered - Ordered - Unordered

    +
      +
    • unordered item
    • +
    • unordered item +
        +
      1. ordered
      2. +
      3. ordered +
          +
        • unordered item
        • +
        • unordered item
        • +
        +
      4. +
      +
    • +
    • unordered item
    • +
    • unordered item
    • +
    +

    Unordered - Unordered - Ordered

    +
      +
    • unordered item
    • +
    • unordered item +
        +
      • unordered
      • +
      • unordered +
          +
        1. ordered item
        2. +
        3. ordered item
        4. +
        +
      • +
      +
    • +
    • unordered item
    • +
    • unordered item
    • +
    ]]>
    + + 1000 + 2009-05-15 14:48:32 + 2009-05-15 21:48:32 + closed + closed + edge-case-nested-and-mixed-lists + publish + 0 + 0 + post + + 0 + + + + + + + +
    + + Template: Featured Image (Horizontal) + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-horizontal/ + Thu, 15 Mar 2012 22:15:12 +0000 + themedemos + http://wptest.io/demo/?p=1011 + + featured image, if the theme supports it. + +Non-square images can provide some unique styling issues. + +This post tests a horizontal featured image.]]> + + 1011 + 2012-03-15 15:15:12 + 2012-03-15 22:15:12 + closed + closed + template-featured-image-horizontal + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + + + + Template: Featured Image (Vertical) + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-vertical/ + Thu, 15 Mar 2012 22:36:32 +0000 + themedemos + http://wptest.io/demo/?p=1016 + + featured image, if the theme supports it. + +Non-square images can provide some unique styling issues. + +This post tests a vertical featured image.]]> + + 1016 + 2012-03-15 15:36:32 + 2012-03-15 22:36:32 + closed + closed + template-featured-image-vertical + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + + + + Post Format: Gallery (Tiled) + https://wpthemetestdata.wordpress.com/2010/09/09/post-format-gallery-tiled/ + Fri, 10 Sep 2010 00:23:27 +0000 + themedemos + http://wptest.io/demo/?p=1031 + + Jetpack to test. + +[gallery type="rectangular" columns="4" ids="755,757,758,760,766,763" orderby="rand"] + +This is some text after the Tiled Gallery just to make sure that everything spaces nicely.]]> + + 1031 + 2010-09-09 17:23:27 + 2010-09-10 00:23:27 + closed + closed + post-format-gallery-tiled + publish + 0 + 0 + post + + 0 + + + + + + + + + + + Page Image Alignment + https://wpthemetestdata.wordpress.com/about/page-image-alignment/ + Fri, 15 Mar 2013 23:19:23 +0000 + themedemos + http://wptest.io/demo/?page_id=1080 + + None, Left, Right, and Center. In addition, they also get the options of Thumbnail, Medium, Large & Fullsize. Be sure to try this page in RTL mode and it should look the same as LTR. +

    Image Alignment 580x300

    +The image above happens to be centered. + +Image Alignment 150x150 The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see there should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +Image Alignment 1200x400 + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 1200x400 + +And we try the large image again, with the center alignment since that sometimes is a problem. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 300x200 + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And just when you thought we were done, we're going to do them all over again with captions! + +[caption id="attachment_906" align="aligncenter" width="580"]Image Alignment 580x300 Look at 580x300 getting some caption love.[/caption] + +The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky. + +[caption id="attachment_904" align="alignleft" width="150"]Image Alignment 150x150 Bigger caption than the image usually is.[/caption] + +The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +[caption id="attachment_907" align="alignnone" width="1200"]Image Alignment 1200x400 Comment for massive image for your eyeballs.[/caption] + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. +[caption id="attachment_907" align="aligncenter" width="1200"]Image Alignment 1200x400 This massive image is centered.[/caption] + +And again with the big image centered. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +[caption id="attachment_905" align="alignright" width="300"]Image Alignment 300x200 Feels good to be right all the time.[/caption] + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! Last thing is a small image aligned right. Whatever follows should be unaffected. Image Alignment 150x150]]>
    + + 1133 + 2013-03-15 18:19:23 + 2013-03-15 23:19:23 + open + open + page-image-alignment + publish + 2 + 0 + page + + 0 +
    + + Page Markup And Formatting + https://wpthemetestdata.wordpress.com/about/page-markup-and-formatting/ + Fri, 15 Mar 2013 23:20:05 +0000 + themedemos + http://wptest.io/demo/?page_id=1083 + + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    Jane$1Because that's all Steve Jobs needed for a salary.
    John$100KFor all the blogging he does.
    Jane$100MPictures are worth a thousand words, right? So Tom x 1,000.
    Jane$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    + Robert Frost
    +
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +This tag shows strike-through text. + +Small Tag + +This tag shows smaller text. + +Strong Tag + +This tag shows bold text. + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +This rarely used tag emulates teletype text, which is usually styled like the <code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +This tag shows underlined text. + +Variable Tag + +This allows you to denote variables.]]>
    + + 1134 + 2013-03-15 18:20:05 + 2013-03-15 23:20:05 + open + open + page-markup-and-formatting + publish + 2 + 0 + page + + 0 +
    + + Template: Comments + https://wpthemetestdata.wordpress.com/2012/01/03/template-comments/ + Tue, 03 Jan 2012 17:11:37 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/comment-test/ + + +
  • Threaded comments up to 10 levels deep
  • +
  • Paginated comments (set Settings > Discussion > Break comments into pages to 5 top level comments per page)
  • +
  • Comment markup / formatting
  • +
  • Comment images
  • +
  • Comment videos
  • +
  • Author comments
  • +
  • Gravatars and default fallbacks
  • +]]>
    + + 1148 + 2012-01-03 10:11:37 + 2012-01-03 17:11:37 + open + closed + template-comments + publish + 0 + 0 + post + + 0 + + + + + + + 881 + + example@example.org + http://example.org/ + + 2012-09-03 10:18:04 + 2012-09-03 17:18:04 + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    John Saddington$1Because that's all Steve Job' needed for a salary.
    Tom McFarlin$100KFor all the blogging he does.
    Jared Erickson$100MPictures are worth a thousand words, right? So Tom x 1,000.
    Chris Ames$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    + +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    +Robert Frost
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    + +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up.]]>
    + 1 + + 0 + 0 +
    + + 899 + + fake@example.com + + + 2013-03-11 23:45:54 + 2013-03-12 04:45:54 + Gravatar associated with it. + They did not speify a website, so there should be no link to it in the comment. +]]> + 1 + + 0 + 0 + + + 900 + + example@example.org + http://example.org/ + + 2013-03-12 13:17:35 + 2013-03-12 20:17:35 + + 1 + + 0 + 0 + + + 901 + + example@example.org + http://example.org + + 2013-03-14 07:53:26 + 2013-03-14 14:53:26 + + 1 + + 0 + 0 + + + 903 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 07:56:46 + 2013-03-14 14:56:46 + + 1 + + 0 + 24783058 + + + 904 + + example@example.org + http://example.org/ + + 2013-03-14 07:57:01 + 2013-03-14 14:57:01 + + 1 + + 0 + 0 + + + 905 + + example@example.org + http://example.org/ + + 2013-03-14 08:01:21 + 2013-03-14 15:01:21 + + 1 + + 904 + 0 + + + 906 + + example@example.org + http://example.org/ + + 2013-03-14 08:02:06 + 2013-03-14 15:02:06 + + 1 + + 905 + 0 + + + 907 + + example@example.org + http://example.org/ + + 2013-03-14 08:03:22 + 2013-03-14 15:03:22 + + 1 + + 906 + 0 + + + 910 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 08:10:29 + 2013-03-14 15:10:29 + + 1 + + 907 + 24783058 + + + 911 + + example@example.org + http://example.org/ + + 2013-03-14 08:12:16 + 2013-03-14 15:12:16 + + 1 + + 910 + 0 + + + 912 + + example@example.org + http://example.org/ + + 2013-03-14 08:12:58 + 2013-03-14 15:12:58 + + 1 + + 911 + 0 + + + 913 + + example@example.org + http://example.org/ + + 2013-03-14 08:13:42 + 2013-03-14 15:13:42 + + 1 + + 912 + 0 + + + 914 + + example@example.org + http://example.org/ + + 2013-03-14 08:14:13 + 2013-03-14 15:14:13 + + 1 + + 913 + 0 + + + 915 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 08:14:47 + 2013-03-14 15:14:47 + + 1 + + 914 + 24783058 + + + 917 + + example@example.org + http://example.org/ + + 2013-03-14 09:56:43 + 2013-03-14 16:56:43 + + If the image imports... + ]]> + 1 + + 0 + 0 + + + 918 + + example@example.org + http://example.org/ + + 2013-03-14 11:23:24 + 2013-03-14 18:23:24 + + 1 + + 0 + 0 + + + 919 + + example@example.org + http://example.org/ + + 2013-03-14 11:27:54 + 2013-03-14 18:27:54 + + 1 + + 0 + 0 + + + 920 + + example@example.org + http://example.org/ + + 2013-03-14 11:30:33 + 2013-03-14 18:30:33 + + 1 + + 0 + 24783058 + + + 1015 + + auser@example.com + + + 2014-09-29 02:52:15 + 2014-09-29 09:52:15 + + 0 + + 0 + 0 + +
    + + Template: Pingbacks And Trackbacks + https://wpthemetestdata.wordpress.com/2012/01/01/template-pingbacks-an-trackbacks/ + Sun, 01 Jan 2012 17:17:18 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/many-trackbacks/ + + +
  • Above the comments
  • +
  • Below the comments
  • +
  • Included within the normal flow of comments
  • +]]>
    + + 1149 + 2012-01-01 10:17:18 + 2012-01-01 17:17:18 + closed + closed + template-pingbacks-an-trackbacks + publish + 0 + 0 + post + + 0 + + + + + + + + + 921 + + + http://tellyworth.wordpress.com/2007/11/21/ping-1/ + + 2007-11-21 11:31:12 + 2007-11-21 01:31:12 + + 1 + trackback + 0 + 0 + + + 922 + + + http://tellyworth.wordpress.com/2007/11/21/ping-2-with-a-much-longer-title-than-the-previous-ping-which-was-called-ping-1/ + + 2007-11-21 11:35:47 + 2007-11-21 01:35:47 + + 1 + trackback + 0 + 0 + + + 923 + + + http://tellyworth.wordpress.com/2007/11/21/ping-4/ + + 2007-11-21 11:39:25 + 2007-11-21 01:39:25 + + 1 + pingback + 0 + 0 + + + 924 + + + http://tellyworth.wordpress.com/2007/11/21/ping-3/ + + 2007-11-21 11:38:22 + 2007-11-21 01:38:22 + + 1 + pingback + 0 + 0 + + + 925 + + example@example.org + http://example.org/ + + 2010-06-11 15:27:04 + 2010-06-11 22:27:04 + + 1 + + 0 + 0 + +
    + + Template: Comments Disabled + https://wpthemetestdata.wordpress.com/2012/01/02/template-comments-disabled/ + Mon, 02 Jan 2012 17:21:15 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/no-comments/ + + should display pingbacks and trackbacks.]]> + + 1150 + 2012-01-02 10:21:15 + 2012-01-02 17:21:15 + closed + closed + template-comments-disabled + publish + 0 + 0 + post + + 0 + + + + + + + + Edge Case: Many Tags + https://wpthemetestdata.wordpress.com/2009/06/01/edge-case-many-tags/ + Mon, 01 Jun 2009 08:00:34 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/11/24/many-tags/ + + + + 1151 + 2009-06-01 01:00:34 + 2009-06-01 08:00:34 + closed + closed + edge-case-many-tags + publish + 0 + 0 + post + + 0' + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Edge Case: Many Categories + https://wpthemetestdata.wordpress.com/2009/07/02/edge-case-many-categories/ + Thu, 02 Jul 2009 09:00:03 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/11/24/many-categories/ + + + + 1152 + 2009-07-02 02:00:03 + 2009-07-02 09:00:03 + closed + closed + edge-case-many-categories + publish + 0 + 0 + post + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Scheduled + https://wpthemetestdata.wordpress.com/2020/01/01/scheduled/ + Wed, 01 Jan 2030 19:00:18 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=418 + + + + 1153 + 2030-01-01 12:00:18 + 2030-01-01 19:00:18 + closed + closed + scheduled + future + 0 + 0 + post + + 0 + + + + + + Post Format: Image + https://wpthemetestdata.wordpress.com/2010/08/08/post-format-image/ + Sun, 08 Aug 2010 12:00:39 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=568 + +
      + +]]>
    + + 1158 + 2010-08-08 05:00:39 + 2010-08-08 12:00:39 + closed + closed + post-format-image + publish + 0 + 0 + post + + 0 + + + + + +
    + + Post Format: Video (YouTube) + https://wpthemetestdata.wordpress.com/2010/06/02/post-format-video-youtube/ + Wed, 02 Jun 2010 09:00:58 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=582 + + WordPress Embeds.]]> + + 1161 + 2010-06-02 02:00:58 + 2010-06-02 09:00:58 + closed + closed + post-format-video-youtube + publish + 0 + 0 + post + + 0 + + + + + + + Post Format: Image (Caption) + https://wpthemetestdata.wordpress.com/2010/08/07/post-format-image-caption/ + Sat, 07 Aug 2010 13:00:19 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=674 + + Bell on Wharf Bell on wharf in San Francisco[/caption]]]> + + 1163 + 2010-08-07 06:00:19 + 2010-08-07 13:00:19 + closed + closed + post-format-image-caption + publish + 0 + 0 + post + + 0 + + + + + + + + _thumbnail_id + + + + + Draft + https://wpthemetestdata.wordpress.com/?p=1164 + Tue, 09 Apr 2013 18:20:39 +0000 + themedemos + http://wptest.io/demo/?p=922 + + + + 1164 + 2013-04-09 11:20:39 + 2013-04-09 18:20:39 + closed + closed + + draft + 0 + 0 + post + + 0 + + + + + + Template: Password Protected (the password is "enter") + https://wpthemetestdata.wordpress.com/2012/01/04/template-password-protected/ + Wed, 04 Jan 2012 16:38:05 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/test-with-secret-password/ + + + + 1168 + 2012-01-04 09:38:05 + 2012-01-04 16:38:05 + closed + closed + template-password-protected + publish + 0 + 0 + post + enter + 0 + + + + + + + 926 + + example@example.org + http://example.org/ + + 2013-03-14 11:56:08 + 2013-03-14 18:56:08 + + 1 + + 0 + 0 + + + + + <link>https://wpthemetestdata.wordpress.com/2009/09/05/edge-case-no-title/</link> + <pubDate>Sat, 05 Sep 2009 16:00:23 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2007/09/04/14/</guid> + <description/> + <content:encoded><![CDATA[This post has no title, but it still must link to the single post view somehow. + +This is typically done by placing the permalink on the post date.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1169</wp:post_id> + <wp:post_date>2009-09-05 09:00:23</wp:post_date> + <wp:post_date_gmt>2009-09-05 16:00:23</wp:post_date_gmt> + <wp:comment_status>closed</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>edge-case-no-title</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>0</wp:menu_order> + <wp:post_type>post</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="category" nicename="classic"><![CDATA[Classic]]></category> + <category domain="post_tag" nicename="edge-case"><![CDATA[edge case]]></category> + <category domain="category" nicename="edge-case-2"><![CDATA[Edge Case]]></category> + <category domain="post_tag" nicename="layout"><![CDATA[layout]]></category> + <category domain="post_tag" nicename="title"><![CDATA[title]]></category> +</item> +<item> + <title>Edge Case: No Content + https://wpthemetestdata.wordpress.com/2009/08/06/edge-case-no-content/ + Thu, 06 Aug 2009 16:39:56 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/this-post-has-no-body/ + + + + 1170 + 2009-08-06 09:39:56 + 2009-08-06 16:39:56 + closed + closed + edge-case-no-content + publish + 0 + 0 + post + + 0 + + + + + + + 927 + + example@example.org + http://example.org/ + + 2013-03-14 12:35:07 + 2013-03-14 19:35:07 + + 1 + + 0 + 0 + + + + Template: Paginated + https://wpthemetestdata.wordpress.com/2012/01/08/template-paginated/ + Sun, 08 Jan 2012 17:00:20 +0000 + themedemos + https://noeltest.wordpress.com/?p=188 + + + +Post Page 2 + + + +Post Page 3]]> + + 1171 + 2012-01-08 10:00:20 + 2012-01-08 17:00:20 + closed + closed + template-paginated + publish + 0 + 0 + post + + 0 + + + + + + + + + <![CDATA[Markup: Title <em>With</em> <b>Mark<sup>up</sup></b>]]> + https://wpthemetestdata.wordpress.com/2013/01/05/markup-title-with-markup/ + Sat, 05 Jan 2013 17:00:49 +0000 + themedemos + http://wptest.io/demo/?p=861 + + +
  • The post title renders the word "with" in italics and the word "markup" in bold (and "up" is superscript).
  • +
  • The post title markup should be removed from the browser window / tab.
  • +]]>
    + + 1173 + 2013-01-05 10:00:49 + 2013-01-05 17:00:49 + closed + closed + markup-title-with-markup + publish + 0 + 0 + post + + 0 + + + + + +
    + + Markup: Title With Special Characters ~`!@#$%^&*()-_=+{}[]/\;:'"?,.> + https://wpthemetestdata.wordpress.com/2013/01/05/title-with-special-characters/ + Sat, 05 Jan 2013 18:00:20 +0000 + themedemos + http://wptest.io/demo/?p=867 + + Latin Character Tests +This is a test to see if the fonts used in this theme support basic Latin characters. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    !"#$%&'()*
    +,-./01234
    56789:;>=<
    ?@ABCDEFGH
    IJKLMNOPQR
    STUVWXYZ[\
    ]^_`abcdef
    ghijklmnop
    qrstuvwxyz
    {|}~
    ]]>
    + + 1174 + 2013-01-05 11:00:20 + 2013-01-05 18:00:20 + closed + closed + title-with-special-characters + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Taumatawhakatangihangakoauauotamateaturipukakapikimaungahoronukupokaiwhenuakitanatahu + https://wpthemetestdata.wordpress.com/2009/10/05/title-should-not-overflow-the-content-area/ + Mon, 05 Oct 2009 19:00:59 +0000 + themedemos + http://wptest.io/demo/?p=877 + + Title should not overflow the content area + +A few things to check for: +
      +
    • Non-breaking text in the title, content, and comments should have no adverse effects on layout or functionality.
    • +
    • Check the browser window / tab title.
    • +
    • If you are a plugin or widget developer, check that this text does not break anything.
    • +
    + +The following CSS properties will help you support non-breaking text. + +
    -ms-word-wrap: break-word;
    +word-wrap: break-word;
    + ]]>
    + + 1175 + 2009-10-05 12:00:59 + 2009-10-05 19:00:59 + closed + closed + title-should-not-overflow-the-content-area + publish + 0 + 0 + post + + 0 + + + + + + + + +
    + + Markup: Text Alignment + https://wpthemetestdata.wordpress.com/2013/01/09/markup-text-alignment/ + Wed, 09 Jan 2013 16:00:39 +0000 + themedemos + http://wptest.io/demo/?p=895 + + Default +This is a paragraph. It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love. Completely neutral and not picking a side or sitting on the fence. It just is. It just freaking is. It likes where it is. It does not feel compelled to pick a side. Leave him be. It will just be better that way. Trust me. +

    Left Align

    +

    This is a paragraph. It is left aligned. Because of this, it is a bit more liberal in it's views. It's favorite color is green. Left align tends to be more eco-friendly, but it provides no concrete evidence that it really is. Even though it likes share the wealth evenly, it leaves the equal distribution up to justified alignment.

    + +

    Center Align

    +

    This is a paragraph. It is center aligned. Center is, but nature, a fence sitter. A flip flopper. It has a difficult time making up its mind. It wants to pick a side. Really, it does. It has the best intentions, but it tends to complicate matters more than help. The best you can do is try to win it over and hope for the best. I hear center align does take bribes.

    + +

    Right Align

    +

    This is a paragraph. It is right aligned. It is a bit more conservative in it's views. It's prefers to not be told what to do or how to do it. Right align totally owns a slew of guns and loves to head to the range for some practice. Which is cool and all. I mean, it's a pretty good shot from at least four or five football fields away. Dead on. So boss.

    + +

    Justify Align

    +

    This is a paragraph. It is justify aligned. It gets really mad when people associate it with Justin Timberlake. Typically, justified is pretty straight laced. It likes everything to be in it's place and not all cattywampus like the rest of the aligns. I am not saying that makes it better than the rest of the aligns, but it does tend to put off more of an elitist attitude.

    ]]>
    + + 1176 + 2013-01-09 09:00:39 + 2013-01-09 16:00:39 + closed + closed + markup-text-alignment + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Markup: Image Alignment + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/ + Fri, 11 Jan 2013 03:15:40 +0000 + themedemos + http://wptest.io/demo/?p=903 + + None, Left, Right, and Center. In addition, they also get the options of Thumbnail, Medium, Large & Fullsize. Be sure to try this page in RTL mode and it should look the same as LTR. +

    Image Alignment 580x300

    +The image above happens to be centered. + +Image Alignment 150x150 The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +Image Alignment 1200x400 + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 1200x400 + +And we try the large image again, with the center alignment since that sometimes is a problem. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 300x200 + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And just when you thought we were done, we're going to do them all over again with captions! + +[caption id="attachment_906" align="aligncenter" width="580"]Image Alignment 580x300 Look at 580x300 getting some caption love.[/caption] + +The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky. + +[caption id="attachment_904" align="alignleft" width="150"]Image Alignment 150x150 Bigger caption than the image usually is.[/caption] + +The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +[caption id="attachment_907" align="alignnone" width="1200"]Image Alignment 1200x400 Comment for massive image for your eyeballs.[/caption] + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. +[caption id="attachment_907" align="aligncenter" width="1200"]Image Alignment 1200x400 This massive image is centered.[/caption] + +And again with the big image centered. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +[caption id="attachment_905" align="alignright" width="300"]Image Alignment 300x200 Feels good to be right all the time.[/caption] + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! One last thing: The last item in this post's content is a thumbnail floated right. Make sure any elements after the content are clearing properly. + +]]>
    + + 1177 + 2013-01-10 20:15:40 + 2013-01-11 03:15:40 + closed + closed + markup-image-alignment + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + +
    + + Markup: HTML Tags and Formatting + https://wpthemetestdata.wordpress.com/2013/01/11/markup-html-tags-and-formatting/ + Sat, 12 Jan 2013 03:22:19 +0000 + themedemos + http://wptest.io/demo/?p=919 + + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    John Doe$1Because that's all Steve Jobs needed for a salary.
    Jane Doe$100KFor all the blogging she does.
    Fred Bloggs$100MPictures are worth a thousand words, right? So Jane x 1,000.
    Jane Bloggs$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    +Robert Frost
    +
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +This tag shows strike-through text. + +Small Tag + +This tag shows smaller text. + +Strong Tag + +This tag shows bold text. + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +This rarely used tag emulates teletype text, which is usually styled like the <code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +This tag shows underlined text. + +Variable Tag + +This allows you to denote variables.]]>
    + + 1178 + 2013-01-11 20:22:19 + 2013-01-12 03:22:19 + closed + closed + markup-html-tags-and-formatting + publish + 0 + 0 + post + + 0 + + + + + + + +
    + + Media: Twitter Embeds + https://wpthemetestdata.wordpress.com/2011/03/15/media-twitter-embeds/ + Tue, 15 Mar 2011 22:47:16 +0000 + themedemos + http://wptest.io/demo/?p=1027 + + Twitter Embeds feature.]]> + + 1179 + 2011-03-15 15:47:16 + 2011-03-15 22:47:16 + closed + closed + media-twitter-embeds + publish + 0 + 0 + post + + 0 + + + + + + + + _oembed_time_d01e104b758ab65a49dfdede5913069c + + + + _oembed_ac49b172e1844531a885a53eff2efd91 + ]]> + + + _oembed_time_ac49b172e1844531a885a53eff2efd91 + + + + _oembed_d01e104b758ab65a49dfdede5913069c + ]]> + + + + Template: Sticky + https://wpthemetestdata.wordpress.com/2012/01/07/template-sticky/ + Sat, 07 Jan 2012 14:07:21 +0000 + themedemos + http://wptest.io/demo/?p=1241 + + +
  • The sticky post should be distinctly recognizable in some way in comparison to normal posts. You can style the .sticky class if you are using the post_class() function to generate your post classes, which is a best practice.
  • +
  • They should show at the very top of the blog index page, even though they could be several posts back chronologically.
  • +
  • They should still show up again in their chronologically correct postion in time, but without the sticky indicator.
  • +
  • If you have a plugin or widget that lists popular posts or comments, make sure that this sticky post is not always at the top of those lists unless it really is popular.
  • +]]>
    + + 1241 + 2012-01-07 07:07:21 + 2012-01-07 14:07:21 + closed + closed + template-sticky + publish + 0 + 0 + post + + 1 + + + + +
    + + Template: Excerpt (Generated) + https://wpthemetestdata.wordpress.com/2012/03/14/template-excerpt-generated/ + Wed, 14 Mar 2012 16:49:22 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=1446 + + excerpt_length and excerpt_more, display properly.]]> + + 1446 + 2012-03-14 09:49:22 + 2012-03-14 16:49:22 + closed + closed + template-excerpt-generated + publish + 0 + 0 + post + + 0 + + + + + + + + + Block category: Common + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-common/ + Fri, 02 Nov 2018 16:20:28 +0000 + >themereviewteam + https://wpthemetestdata.wordpress.com/?p=1730 + + +

    The Common category includes the following blocks: Paragraph, image, headings, list, gallery, quote, audio, cover, video.

    + + + +

    The paragraph block is the default block type.  It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love.

    + + + +

    This paragraph is left aligned.

    + + + +

    This italic paragraph is right aligned.

    + + + +

    Neither of these paragraphs care about politics, but this one is bold, medium sized and has a drop cap.

    + + + +

    This paragraph is centered.

    + + + +

    This paragraph prefers Jazz over Justin Timberlake. It also uses the small font size.

    + + + +

    This paragraph has something important to say:  It has a large font size, which defaults to 36px.

    + + + +

    The huge text size defaults to 46px, but the size can be customized.

    + + + +

    This paragraph is colorful, with a red background and white text (maybe). Colored blocks should have a high enough contrast, so that the text is readable.

    + + + +

    Below this block, you will see a single image with a circle mask applied.

    + + + +
    Image Alignment 150x150
    + + + +

    H1 Heading

    + + + +

    H2 Heading

    + + + +

    H3 Heading

    + + + +

    H4 Heading

    + + + +
    H5 Heading
    + + + +
    H6 Heading
    + + + +

    Ordered list

    + + + +
    1. The software should be licensed under the GNU Public License.
    2. The software should be freely available to anyone to use for any purpose, and without permission.
    3. The software should be open to modifications.
      1. Any modifications should be freely distributable at no cost and without permission from its creators.
    4. The software should provide a framework for translation to make it globally accessible to speakers of all languages.
    5. The software should provide a framework for extensions so modifications and enhancements can be made without modifying core code
    + + + +

    Unordered list

    + + + +
    • One
    • Two
    • Three
      • Four
    • Five
    + + + + + + + +

    Quote

    Cite
    + + + +
    + + + +
    +

    Cover block with background image

    +
    + + + +

    The file block has a setting that lets us show or hide a download button with editable text:

    + + + + + + + + + + + +

    Video blocks have settings for showing and hiding the playback controls. Use autoplay and playback controls responsibly.

    + + + +
    This is a video block caption.
    + + + +

    The video block below is muted and has a poster image that displays before the video starts:

    + + + +
    + +]]>
    + + 1730 + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + +
    + + Block category: Formatting + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-formatting/ + Fri, 02 Nov 2018 16:41:42 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1732 + + +

    The formatting category includes the following blocks:

    + + + +
    The code block starts with
    +<!-- wp:code -->
    +<?php echo 'Hello World'; ?>
    +
    + + +

    The classic block can have almost anything in it.

    +
    +
    a heading
    + + +
    The custom HTML block lets you put HTML that isn't configured like blocks in it. (this div has a width of 45%)
    + + + +
    The preformatted block.

    The Road Not Taken

    Robert Frost
    Two roads diverged in a yellow wood,
    And sorry I could not travel both (\_/)
    And be one traveler, long I stood (='.'=)
    And looked down one as far as I could (")_(")
    To where it bent in the undergrowth;

    Then took the other, as just as fair,
    And having perhaps the better claim, |\_/|
    Because it was grassy and wanted wear; / @ @ \
    Though as for that the passing there ( > º < )
    Had worn them really about the same, `>>x<<´
    / O \
    And both that morning equally lay
    In leaves no step had trodden black.
    Oh, I kept the first for another day!
    Yet knowing how way leads on to way,
    I doubted if I should ever come back.
    I shall be telling this with a sigh
    Somewhere ages and ages hence:
    Two roads diverged in a wood, and I—
    I took the one less traveled by,
    And that has made all the difference.



    and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    + + + +

    The pull quote can be aligned or wide or neither.

    Theme Reviewer
    + + + +
    The table blockThis is the default style.
    The cell next to this is empty.
    Cell #5
    Cell #6
    + + + +
    This is the striped style.This row should have a background color.
    The cell next to this is empty.

    This table has fixed width table cells.

    Make sure that the text wraps correctly.

    + + + +
    The Verse block

    A block for haiku?
    Why not?
    Blocks for all the things!
    +]]>
    + + 1732 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Block category: Layout Elements + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-layout-elements/ + Fri, 02 Nov 2018 16:44:37 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1734 + + +
    +

    The Layout Elements category includes the following blocks: Group, Button, Columns, Media & Text, separator, spacer, read more, and page break.

    + + + +

    This group block has a light green background color.

    + + + + + + + +

    The read more block should be right below this text, but only on list pages of themes that show the full content. It won't show on the single page or on themes showing excerpts.

    +
    + + + + + + + +
    +
    +

    The columns:

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    +
    + + + +
    Boardwalk
    +

    Media &Text

    + + + +

    For displaying media and text next to each other. By default, the media is to the left.

    +
    + + + +
    Golden Gate Bridge
    +

    This time our block is full width, and the image is to the right.

    + + + +

    The background color is a pale blue. 

    +
    + + + +

    Test to make sure that the editor and the front match. To test the Stack on mobile setting, reduce the browser window width.

    + + + +

    The control these settings, the block uses the css classes "has-media-on-the-right" and "is-stacked-on-mobile".

    + + + +

    The separator has three styles: default, wide line, and dots.

    + + + +
    + + + +
    + + + +
    + + + +

    The spacer block has a default height of 100 pixels:

    + + + + + + + +

    And finally, the page break:

    + + + + + + + +

    This paragraph block is on page two, after the page break.

    + + + + +]]>
    + + 1734 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block category: Embeds + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-embeds/ + Fri, 02 Nov 2018 16:51:55 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1738 + + + +

    This post tests various embed blocks:

    + + + +
    +https://twitter.com/WordPress/status/1057136472321613824 +
    Twitter,  wide width
    + + + +
    +https://youtu.be/ex8fMxXJDJw +
    YouTube
    + + + +
    +https://www.facebook.com/6427302910/posts/10156380423617911/ +
    + + + +
    +https://www.instagram.com/p/BpmueLLgEn_/?utm_source=ig_share_sheet&igshid=1hcxphic7p9e2 +
    + + + +
    +https://wordpress.tv/2018/10/14/kjell-reigstad-allan-cole-how-we-made-our-first-gutenberg-powered-theme/ +
    WordPress TV, full width
    + + + +

    +]]>
    + + 1738 + + + + + + + 0 + 0 + + + 0 + + + + + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + + + + + + + + + + ]]> + + + + + + + +

    Many of the WordPress contribution teams have been working hard on the new WordPress editor, and the tools, services,...

    Publicerat av WordPress Måndag 3 september 2018
    ]]>
    +
    + + + + + + + ]]> + + + + + + + + ]]> + + + + + + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + + + + + + ]]> + + + + + + + +

    Many of the WordPress contribution teams have been working hard on the new WordPress editor, and the tools, services,...

    Publicerat av WordPress Måndag 3 september 2018
    ]]>
    +
    + + + + + + + ]]> + + + + + + + + ]]> + + + + + +
    + + Block category: Widgets + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-widgets/ + Fri, 02 Nov 2018 16:45:35 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1736 + + +

    The shortcode widget:

    + + + +[gallery columns=2 ids="770,771"] + + + +

    The Archive Widget:

    + + + + + +

    The same Archive widget but as a dropdown:

    + + + + + + + +

    The Category widget block has an additional option for showing category hierarchies:

    + + + + + +

    The Latest Comments widget can display or hide the avatars, the date, and the comment excerpt:

    + + + + + +

    Here is an example of the Comments widget with all the options disabled. The number of comments has been reduced to two.

    + + + + + +

    And here is the Latest Posts widget in the list view, with dates:

    + + + + + +

    Grid view, now sorted from A -Z.

    + + + + + +

    You can also change the number of columns used to display the latest posts. The block below only displays posts from the Block category:

    + + + + + +

    Search widget:

    + + + + + +

    Tag Cloud widget:

    + + + + + +

    RSS Feed widget:

    + + + + ]]>
    + + 1736 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Columns + https://wpthemetestdata.wordpress.com/2018/11/02/block-columns/ + Fri, 02 Nov 2018 12:10:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1743 + + +
    +
    +

    This page tests how the theme displays the columns block. The first block tests a two column block with paragraphs.

    +
    + + + +
    +

    This is the second column. It should align next to the first column. Reduce the browser window width to test the responsiveness.

    +
    +
    + + + +
    +
    +

    This is the second column block. It has 3 columns.

    +
    + + + +
    +

    Paragraph 2 is in the middle.

    +
    + + + +
    +

    Paragraph 3 is in the last column.

    +
    +
    + + + +
    +
    +

    The third column block has 4 columns. Make sure that all the text is visible and that it is not cut off.

    +
    + + + +
    +

    Now the columns are getting narrower.

    +
    + + + +
    +

    The margins between the columns should be wide enough,

    +
    + + + +
    +

    so that the content of the columns does not run into or overlap each other.

    +
    +
    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    + + + +
    +

    Column five.

    +
    +
    + + + +

    To change the number of columns, select the column block to open the settings panel. You can show up to 6 columns. If the theme has support for wide align, you can also set the alignments to wide and full width.

    + + + +

    Below is a column block with six columns, and no alignment:

    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    + + + +
    +

    Column five.

    +
    + + + +
    +

    Column six.

    +
    +
    + + + +

    Next is a 3 column block, with a wide alignment:

    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    +
    + + + +

    And here is a two column block with full width, and a longer text. Make sure that the text wraps correctly.

    + + + +
    +
    +

    This is column one. Sometimes, you may want to use columns to display a larger text, so, lets add some more words. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna. Praesent sit amet ligula id orci venenatis auctor. Phasellus porttitor, metus non tincidunt dapibus, orci pede pretium neque, sit amet adipiscing ipsum lectus et libero. Aenean bibendum. Curabitur mattis quam id urna. Vivamus dui. Donec nonummy lacinia lorem. Cras risus arcu, sodales ac, ultrices ac, mollis quis, justo. Sed a libero. Quisque risus erat, posuere at, tristique non, lacinia quis, eros.

    +
    + + + +
    +

    Column two. Cras volutpat, lacus quis semper pharetra, nisi enim dignissim est, et sollicitudin quam ipsum vel mi. Sed commodo urna ac urna. Nullam eu tortor. Curabitur sodales scelerisque magna. Donec ultricies tristique pede. Nullam libero. Nam sollicitudin felis vel metus. Nullam posuere molestie metus. Nullam molestie, nunc id suscipit rhoncus, felis mi vulputate lacus, a ultrices tortor dolor eget augue. Aenean ultricies felis ut turpis. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Suspendisse placerat tellus ac nulla. Proin adipiscing sem ac risus. Maecenas nisi. Cras semper.

    +
    +
    + + + +

    We can also add blocks inside columns:

    + + + +
    +
    +
    1. This is a numbered list,
    2. inside a 3 column block
    3. with a wide alignment.
    +
    + + + +
    +

    The middle column has a paragraph with an image block below.

    + + + +
    canola
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna.
    +
    + + + +
    +

    -This third column has a quote

    Theme Reviewer
    +
    +
    + + + +

    But wait there is more!  We also have a block called Media & Text, which is a two column block that helps you display media and text content next to each other, without having to first setup a column block:

    + + + +
    dsc20050813_115856_52
    +

    Media & Text

    + + + +

    A paragraph block sits ready to be used, below your headline.

    + + + +

    +
    +]]>
    + + 1743 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Block: Cover + https://wpthemetestdata.wordpress.com/2018/11/02/block-cover/ + Sat, 03 Nov 2018 12:25:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1745 + + +

    This is a left aligned cover block with a background image.

    + + + +

    The cover block lets you add text on top of images or videos.

    + + + +

    This blocktype has several alignment options, and you can also align or center the text inside the block.

    + + + +

    The background image can be fixed and you can change its opacity and add an overlay color.

    + + + +

    Make sure that the text wraps correctly over the image, and that text markup and alignments are working.

    + + + +

    The next image should have a pink overlay color, the text should be bold and aligned to the left:

    + + + +

    A center aligned cover image block, with a left aligned text.

    + + + +

    This is a full width cover block with a fixed background image with a 20% opacity.

    + + + +

    Make sure that all the text is readable.

    + + + +

    Our last cover image block has a wide width.

    + + + +

    This is a wide cover block with a video background.

    + + + +

    Compare the video and image blocks.
    This block is centered.

    + + + +

    The block below has no alignment, and the text is a link. Overlay colors must also work with video backgrounds.

    + + + + +]]>
    + + 1745 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Button + https://wpthemetestdata.wordpress.com/2018/11/02/block-button/ + Sat, 03 Nov 2018 13:20:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1747 + + +

    Button blocks are not semantically buttons, but links inside a styled div. 

    + + + +

    If you do not add a link, a link tag without an anchor will be used.

    + + + + + + + +

    Check to make sure that the text wraps correctly when the button has more than one line of text, and when it is extra long.

    + + + + + + + +

    Buttons have three styles: 

    + + + + + + + + + + + + + + + +

    If the theme has a custom color palette, test that background color and text color settings work correctly. 

    + + + + + + + +

    Now lets test how buttons display together with large texts.

    + + + +

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio.

    + + + + + + + +

    Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna. Praesent sit amet ligula id orci venenatis auctor. Phasellus porttitor, metus non tincidunt dapibus, orci pede pretium neque, sit amet adipiscing ipsum lectus et libero. Aenean bibendum. Curabitur mattis quam id urna.

    + + + + + + + +

    Vivamus dui. Donec nonummy lacinia lorem. Cras risus arcu, sodales ac, ultrices ac, mollis quis, justo. Sed a libero. Quisque risus erat, posuere at, tristique non, lacinia quis, eros.

    +]]>
    + + 1747 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Quote + https://wpthemetestdata.wordpress.com/2018/11/02/block-quote/ + Sat, 03 Nov 2018 03:05:49 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1749 + + +

    The quote block has two styles, regular:

    + + + +

    Gutenberg is more than an editor.

    The Gutenberg Team
    + + + +

    and large:

    + + + +

    Yes, it is a press, certainly, but a press from which shall flow in inexhaustible streams, the most abundant and most marvelous liquor that has ever flowed to relieve the thirst of men!


    Johannes Gutenberg
    + + + +

    The quote blocks themselves have no alignments but the text can be aligned, bold, italic, and linked:

    + + + +

    Right

    Theme Review
    + + + +

    In addition to the quote block, we also have the pull quote, with a regular and a solid color style.

    + + + +

    You can change the color of the border and the text with the regular style:

    + + + +

    In addition to the quote block, we also have the pull quote.

    Theme Reviewer
    + + + +

    Or change the background color and text color with the solid color style:

    + + + +

    a solid color style

    Theme Reviewer
    +]]>
    + + 1749 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Gallery + https://wpthemetestdata.wordpress.com/2018/11/02/block-gallery/ + Sat, 03 Nov 2018 04:34:24 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1752 + + +

    Gallery blocks have two settings: the number of columns, and whether or not images should be cropped. The default number of columns is three, and the maximum number of columns is eight.

    + + + +

    Below is a three column gallery at full width, with cropped images.

    + + + + + + + + + + + +

    Some more text for taking up space.

    + + + +

    A two column gallery, aligned to the left, linked to media file.

    + + + +

    In the editor, the image captions can be edited directly by clicking on the text.

    + + + +

    If the number of images cannot be divided into the number of columns you have selected, the default is to have the last image(s) automatically stretch to the width of your gallery.

    + + + + + + + +

    A four column gallery with a wide width:

    + + + + + + + +

    A five column gallery with normal images:

    + + + + + + + +

    This is the same gallery, but with cropped images.

    + + + + + + + +

    Six columns: does it work at all window sizes?

    + + + + + + + +

    Seven columns: how does this look on a narrow window?

    + + + + + + + +

    Eight columns:

    + + + + +]]>
    + + 1752 + + + + + + + 0 + 0 + + + 0 + + + + + + + + + +
    + + Block: Image + https://wpthemetestdata.wordpress.com/2018/11/03/block-image/ + Sat, 03 Nov 2018 15:20:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1755 + + +

    Welcome to image alignment! If you recognize this post, it is because these are blocks that have been converted from the classic Markup: Image Alignment post. The best way to demonstrate the ebb and flow of the various image positioning options is to nestle them snuggly among an ocean of words. Grab a paddle and let's get started. Be sure to try it in RTL mode. Left should stay left and right should stay right for both reading directions.

    + + + +

    On the topic of alignment, it should be noted that users can choose from the options of None, Left, Right, and Center. If the theme has added support for align wide, images can also be wide and full width. Be sure to test this page in RTL mode.

    + + + +

    In addition, they also get the options of the image dimensions 25%, 50%, 75%, 100% or a set width and height.

    + + + +
    Image Alignment 580x300
    + + + +

    The image above happens to be centered.

    + + + +
    Image Alignment 150x150
    + + + +

    The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned.

    + + + +

    As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished!

    + + + +

    And now for a massively large image. It also has no alignment.

    + + + +
    Image Alignment 1200x400
    + + + +

    The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.

    + + + +
    Image Alignment 300x200
    + + + +

    And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there… Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently.

    + + + +

    In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah… Just like that. It never felt so good to be right.

    + + + +

    And just when you thought we were done, we're going to do them all over again with captions!

    + + + +
    Image Alignment 580x300
    Look at 580x300 getting some caption love.
    + + + +

    The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky.

    + + + +
    Image Alignment 150x150
    Itty-bitty caption.
    + + + +

    The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned.

    + + + +

    As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished!

    + + + +

    And now for a massively large image. It also has no alignment.

    + + + +
    Image Alignment 1200x400
    Massive image comment for your eyeballs.
    + + + +

    The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.

    + + + +
    Image Alignment 300x200
    Feels good to be right all the time.
    + + + +

    And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there… Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently.

    + + + +

    In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah… Just like that. It never felt so good to be right.

    + + + +

    Imagine that we would find a use for the extra wide image! This image has the wide width alignment:

    + + + +
    Image Alignment 1200x4002
    + + + +

    Can we go bigger? This image has the full width alignment:

    + + + +
    Image Alignment 1200x4002
    + + + +

    And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! One last thing: The last item in this post's content is a thumbnail floated right. Make sure any elements after the content are clearing properly.

    + + + +
    +]]>
    + + 1755 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Ελληνικά-Greek + https://wpthemetestdata.wordpress.com/greek/ + Fri, 14 Feb 2020 10:31:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1809 + + Headings Επικεφαλίδες +

    Επικεφαλίδα 1 Header one

    +

    Επικεφαλίδα 2 Header two

    +

    Επικεφαλίδα 3 Header three

    +

    Επικεφαλίδα 2 Header four

    +
    Επικεφαλίδα 5 Header five
    +
    Επικεφαλίδα 6Header six
    +

    Παράθεση άλλου Blockquotes

    +Single line blockquote: Μια γραμμή +
    Πάντα να είναι περίεργος.
    +Πολλές γραμμέ με αναφορά Multi line blockquote with a cite reference: +
    Το HTML <blockquote> ElementHTML Block Quotation Element) καταδεικνύει ότι το κείμενο έχει μια παράθεση. Συνήθως οπτικοποιείται με εσοχή (δείτε Σημειώσεις για το πως να το αλλάξετε. Ίσως να δίνεται και URL πηγής με την χρήση του cite attribute, μπλα, μπλα <cite> .
    +multiple contributors - MDN HTML element reference - blockquote +

    Πίνακες Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Υπάλληλος EmployeeΜισθός Salary
    Τάδε κάποιος$1Γιατί τόσα χρειάζεται για να ζήσει
    Jane Doe$100KFor all the blogging she does.
    Fred Bloggs$100MPictures are worth a thousand words, right? So Jane x 1,000.
    Jane Bloggs$100BWith hair like that?! Enough said...
    +

    Λίστες Definition Lists

    +
    +
    Τίτλος λίστας Definition List Title
    +
    Υποδιαίρεση λίστας Definition list division.
    +
    +

    Λίστα με κουκίδες Unordered Lists (Nested)

    +
      +
    • Πρώτο στοιχείο List item one +
        +
      • Στοιχείο πρώτο List item one +
          +
        • Στοιχείο λίστα ένα List item one
        • +
        • Στοιχείο λίστας δύο List item two
        • +
        +
      • +
      • Στοιχείο δεύτερο -item two
      • +
      +
    • +
    • Στοιχειο δύο List item two
    • +
    +

    Αριθμημένη λίστα(Nested)

    +
      +
    1. Στοιχειο ξεκινά με 8-start at 8 +
        +
      1. Στοιχείο λίστας ενα List item one +
          +
        1. Στοιχείο λίστας ενα -reversed attribute
        2. +
        3. Στοιχείο λίστας δύο
        4. +
        +
      2. +
      3. Δεύτερο στοιχείο
      4. +
      +
    2. +
    3. Στοιχείο δύο
    4. +
    +

    Ετικέττες HTML Tags

    +Διεύθυνση Address Tag + +
    1 Απέραντη διαδρομή Infinite Loop +Απλωπολή , ΤΚ 95014 +Ελλάδα
    Αγκυρωση Anchor Tag (aka. Link) + +Πάραδειγμα συνδέσμου. + +Συντομογραφία Abbreviation Tag + +Η συντομογραφία κτλ σημαίνει "Και τα λοιπά". + +Ακρωνύμιο Acronym Tag + +Το ακρωνύμιο κυρ σημαίνει "Κύριος". + +Big Tag + +Αυτό είναι μεγάλο θέμα + +Cite Tag + +"Φάε το φαϊ σου" --Όλες οι μαμάδες + +Code Tag + +This tag styles blocks of code. +.post-title { +margin: 0 0 5px; +font-weight: bold; +font-size: 38px; +line-height: 1.2; +και μία γραμμή με πολύ πάρα πολύ υπερβολικά πάρα πολύ μεγάλο κείμενο που πρέπει να δούμε πως το χειρίζεται η γραμματοσειρά και αν ξεχειλίζει από τις γραμμές και δημιουργεί πρόβλημα; +} + +Διαγραφή Delete Tag + +Μπορείτε να διαγράφεται κείμενο, αλλά δεν συνιστάται. + +Έμφαση Emphasize Tag + +Θα πρέπει να κάνει ιταλικ italicize το κείμενο. + +Εισαγωγή Insert Tag + +Αυτό το tag υποδηλώνει εισηγμένο inserted κείμενο. + +Keyboard Tag + +Αυτό το ελάχιστο γνωστό κείμενο πληκτρολογίου keyboard Tag, συνήθως μορφοποιείται όμοια με το <κώδικα code> tag. + +Προδιαμορφωμένο Preformatted Tag +

    Ο Δρόμος που δεν διάλεξα - The Road Not Taken

    +
    Robert Frost
    +	 Δυο δρόμοι διασταυρώθηκαν σ' ένα χρυσαφένιο δάσος ,
    +	 Και προς λύπη μου και τους δυο τα πόδια μου να ταξιδέψουν δεν μπορούσαν
    +	 Κι επί μακρόν εστάθηκα , καθώς ένας ήμουν ταξιδευτής μονάχος ,
    +	 κι έστρεψα το βλέμμα μου στον πρώτο όσο να χαθεί στο βάθος
    +	 μέχρι εκεί που χάνονταν στα άγρια χόρτα που βλαστούσαν.
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	και μία μακριά, πάρα πολύ μακριά, υπερβολικά μακροσκελής δίχως νόημα πρόταση για να δούμε πως το χειρίζεται το θέμα εμφάνισης και αν αναδιπλώνεται, κρύβεται ή ξεχειλίζει;
    +
    +Quote Tag for short, inline quotes + +Προγραμματιστές, προγραμματιστές, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +Αυτή η ετικέτα είναι με διαγράμμιση strike-through κείμενο text. + +Μικρά Small Tag + +Αυτή η ετικέτα είναι μικρότερο smaller κείμενο text. + +Strong Tag + +Αυτή η ετικέτα δείχνει έντονο bold κείμενο text. + +Subscript Tag + +Getting our science styling on with H2 δύοO, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2 δύο, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +Αυτή η ετικέτα δείχνει τυλετυπος teletype κείμενο, which is usually styled like the <κώδικα code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +Αυτή η ετικέτα δείχνει υπογράμμιση underlined text. + +Variable Tag + +Αυτή η ετικέτα δείχνει παράμετροι variables.]]>
    + + 1809 + + + + + + + 0 + 0 + + + 0 + + + + + + + + +
    + + Επίπεδο 2 -Second Greek level + https://wpthemetestdata.wordpress.com//greek/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-2/ + Fri, 14 Feb 2020 10:31:47 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1811 + + + + 1811 + + + + + + + 1809 + 0 + + + 0 + + + + + + + + + + + Επίπεδο 3 + https://wpthemetestdata.wordpress.com/greek/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-2/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-3/ + Fri, 14 Feb 2020 10:32:50 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1813 + + + + 1813 + + + + + + + 1811 + 0 + + + 0 + + + + + + + + + + + <![CDATA[WP 6.1 Font size scale]]> + https://wpthemetestdata.wordpress.com/wp-6-1-font-size-scale/ + Mon, 16 Jan 2023 07:08:31 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-font-size-scale/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Small H2 Heading

    + + + +

    Medium H2 Heading

    + + + +

    Large H2 Heading

    + + + +

    Extra Large H2 Heading

    + + + +

    Small paragraph

    + + + +

    Medium paragraph

    + + + +

    Large paragraph

    + + + +

    Extra Large paragraph

    +]]> +
    + + 163 + + + + + + + + + 0 + 0 + + + 0 + + + + + + +
    + + <![CDATA[WP 6.1 spacing presets]]> + https://wpthemetestdata.wordpress.com/wp-6-1-spacing-presets/ + Mon, 16 Jan 2023 06:56:53 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-spacing-presets/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    On this page, some group blocks have border or background color set to increase visibility.

    + + + +
    +

    This group has a no background color and no additional spacing set.

    +
    + + + +
    +

    This group has a background color but no additional spacing set.

    +
    + + + +
    +

    This group has a 1px border and padding preset 1

    +
    + + + +
    +

    This group has padding preset 1

    +
    + + + +
    +

    This group has a 1px border and padding preset 2

    +
    + + + +
    +

    This group has a background color and padding preset 3

    +
    + + + +
    +

    This group has a background color and padding preset 4

    +
    + + + +
    +

    This group has a background color and padding preset 5

    +
    + + + +
    +

    This group has a background color and padding preset 6

    +
    + + + +
    +

    This group has a background color and padding preset 7

    +
    + + + +
    +

    This group has padding preset 7

    +
    + + + +
    +

    This group has a background color and margin preset 1

    +
    + + + +
    +

    This group has a background color and margin preset 2

    +
    + + + +
    +

    This group has a background color and margin preset 3

    +
    + + + +
    +

    This group has a background color and margin preset 4

    +
    + + + +
    +

    This group has a background color and margin preset 5

    +
    + + + +
    +

    This group has a background color and margin preset 6

    +
    + + + +
    +

    This group has a background color and margin preset 7

    +
    + + + +
    +

    This group has a 1px border, padding preset 4 and margin preset 4

    +
    + + + +
    +

    This group has padding preset 4 and margin preset 4

    +
    +]]>
    + + 150 + + + + + + + + + 0 + 0 + + + 0 + + + + + + +
    + + <![CDATA[WP 6.1 Theme block category]]> + https://wpthemetestdata.wordpress.com/wp-6-1-theme-block-category/ + Fri, 13 Jan 2023 18:38:05 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-theme-block-category/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Navigation block with page list:

    + + + + + + + +

    Site logo:

    + + + + + +

    Site title:

    + + + + + +

    Tagline block:

    + + + + + +

    Query loop "Title & Date" variation:

    + + + +
    + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Title & Excerpt" variation:

    + + + +
    + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Title, Date & Excerpt" variation:

    + + + +
    + + + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Image, Date & Title" variation:

    + + + +
    + + + + + + + + + + + + + + + + + +

    + +
    + + + +

    Avatar block:

    + + + + + +

    Post title block:

    + + + + + +

    Post excerpt:

    + + + + + +

    Post featured image:

    + + + + + +

    Post author:

    + + + + + +

    Post date:

    + + + + + +

    Categories:

    + + + + + +

    Tags:

    + + + + + +

    Next post & previous post:

    + + + + + + + +

    Read More:

    + + + + + +

    Comments block:

    + + + +
    + + + +
    +
    + + + +
    + + +
    + +
    + + + + +
    +
    + + + + + + + + + + + + + + +

    Post comments form block:

    +
    + + + + + +

    Login/out:

    + + + + + + + + + + + +

    Author biography block:

    + + + + + + + + + +

    Term description, archive title, search results title can not be shown on single posts.

    +]]>
    + + 51 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + + + + 2 + + + https://wpthemetestdata.wordpress.com/ + + + + + + + 0 + 0 + +
    + + <![CDATA[WP 6.1 Widgets block category]]> + https://wpthemetestdata.wordpress.com/wp-6-1-widgets-block-category/ + Fri, 13 Jan 2023 18:22:21 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-widgets-block-category/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Archives block:

    + + + + + + + +

    Categories list:

    + + + + + +

    Custom HTML:

    + + + + test + + + +

    Latest comments:

    + + + + + +

    Latest posts:

    + + + + + +

    Page list block:

    + + + + + +

    RSS block:

    + + + + + + + + + + + + + + + +

    Shortcode block:

    + + + + + +

    Social links:

    + + + + + + + + + + + + + + + +

    Tag cloud:

    + + + + + +

    +]]>
    + + 34 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Design category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-design-category-blocks/ + Fri, 13 Jan 2023 18:03:23 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-design-category-blocks/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + + + + + +
    +
    +

    One single column inside a columns block.

    +
    +
    + + + +
    +
    +

    Column one. The background color is on the single column.

    +
    + + + +
    +

    Column two

    +
    +
    + + + +
    +
    +

    Column one. The background color is on the parent columns block.

    +
    + + + +
    +

    Column two

    +
    + + + +
    +

    Column three

    +
    +
    + + + +
    +

    Group with paragraph inside. Below are the group block variations:

    +
    + + + +
    +

    Row

    + + + +

    Row

    +
    + + + +
    +

    Stack

    + + + +

    Stack

    +
    + + + +

    More block:

    + + + + + + + +

    Page break:

    + + + + + + + +

    Separators:

    + + + +

    Default style, no alignment:

    + + + +
    + + + +

    Default style, wide alignment:

    + + + +
    + + + +

    Default style, full width:

    + + + +
    + + + +

    Default style, align center:

    + + + +
    + + + +

    Wide style, no alignment:

    + + + +
    + + + +

    Wide style, wide alignment:

    + + + +
    + + + +

    Wide style, full width:

    + + + +
    + + + +

    Wide style, align center:

    + + + +
    + + + +

    Dotted style, no alignment:

    + + + +
    + + + +

    Dotted style, wide alignment:

    + + + +
    + + + +

    Dotted style, full width:

    + + + +
    + + + +

    Dotted style, align center:

    + + + +
    + + + +

    Spacer:

    + + + + +]]>
    + + 24 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Media category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-media-category-blocks/ + Fri, 13 Jan 2023 18:02:28 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-media-category-blocks/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Image block:

    + + + +
    dsc20050727_091048_222
    + + + +

    Gallery:

    + + + + + + + +

    Audio:

    + + + +
    + + + +

    Cover:

    + + + +
    Wind Farm
    +

    Write title...

    +
    + + + +
    +

    Fixed background

    +
    + + + +
    +

    Repeated background

    +
    + + + +
    +

    Fixed and Repeated background

    +
    + + + +
    dsc20050727_091048_222
    +

    Duotone

    +
    + + + +
    Rain Ripples
    +

    Top left

    +
    + + + +
    Rain Ripples
    +

    Top center

    +
    + + + +
    Rain Ripples
    +

    Top right

    +
    + + + +
    Rain Ripples
    +

    Center left

    +
    + + + +
    Rain Ripples
    +

    Center right

    +
    + + + +
    Rain Ripples
    +

    Bottom left

    +
    + + + +
    Rain Ripples
    +

    Bottom center

    +
    + + + +
    Rain Ripples
    +

    Bottom right

    +
    + + + + + + + +
    Boardwalk
    +

    This is the Media & Text block with an image on the left.

    +
    + + + +
    Image Alignment 1200x4002
    +

    This is the Media & Text block with a cropped image on the left

    +
    + + + +
    +

    This is the Media & Text block with a video the right.

    +
    + + + +
    +]]>
    + + 21 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Text category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-text-category-blocks/ + Fri, 13 Jan 2023 17:46:19 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-text-category-blocks + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Paragraph

    + + + +

    H1 Heading

    + + + +

    H2 Heading

    + + + +

    H3 Heading

    + + + +

    H4 Heading

    + + + +
    H5 Heading
    + + + +
    H6 Heading
    + + + +
      +
    • List
    • + + + +
    • List
    • +
    + + + +
      +
    1. List
    2. + + + +
    3. List
    4. +
    + + + +
      +
    1. List +
        +
      • List
      • +
      +
    2. +
    + + + +
    +

    Quote block

    +citation
    + + +

    classic block

    + + +
    code block
    + + + +
    Preformatted block
    + + + +

    Pull quote

    Citation
    + + + +
    table celltable cell two
    table cell threetable cell four
    Table caption
    + + + +
    header label oneheader label two
    table celltable cell two
    table cell threetable cell four
    footer label onefooter label two
    Table caption
    + + + +
    Verse block
    +]]>
    + + 8 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + +
    + + Keyboard navigation + https://wpthemetestdata.wordpress.com/2018/10/20/keyboard-navigation/ + Sun, 21 Oct 2018 03:03:48 +0000 + + https://wpthemetestdata.wordpress.com/?p=1724 + + +

    There are many different ways to use the web besides a mouse and a pair of eyes. Users navigate for example with a keyboard only or with their voice.

    + + + +

    All the functionality, including menus, links and forms should work using a keyboard only. This is essential for all assistive technology to work properly. The only way to test this, at the moment, is manually. The best time to test this is during development.

    + + + +

    How to keyboard test:

    + + + +

    Tab through your pages, links and forms to do the following tests:

    + + + +
    • Confirm that all links can be reached and activated via keyboard, including any in dropdown submenus.
    • Confirm that all links get a visible focus indicator (e.g., a border highlight).
    • Confirm that all visually hidden links (e.g. skip links) become visible when in focus.
    • Confirm that all form input fields and buttons can be accessed and used via keyboard.
    • Confirm that all interactions, buttons, and other controls can be triggered via keyboard — any action you can complete with a mouse must also be performable via keyboard.
    • Confirm that focus doesn’t move in unexpected ways around the page.
    • Confirm that using shift+tab to move backwards works as well.
    + + + +

    Resources

    + + + + +]]>
    + + 1724 + + + + + + + 0 + 0 + + + + 0 +
    + + About The Tests + https://wpthemetestdata.wordpress.com/about/ + Mon, 26 Jul 2010 02:40:01 +0000 + themedemos + https://wpthemetestdata.wordpress.com/about/ + + WordPress Theme Development Resources + +
      +
    1. See the WordPress Theme Developer Handbook for examples of best practices.
    2. +
    3. See the WordPress Code Reference for more information about WordPress' functions, classes, methods, and hooks.
    4. +
    5. See Theme Unit Test for a robust test suite for your Theme and get the latest version of the test data you see here.
    6. +
    7. See Releasing Your Theme for a guide to submitting your Theme to the Theme Directory.
    8. +
    ]]>
    + + 2 + 2010-07-25 19:40:01 + 2010-07-26 02:40:01 + closed + closed + about + publish + 0 + 1 + page + + 0 +
    + + Lorem Ipsum + https://wpthemetestdata.wordpress.com/lorem-ipsum/ + Tue, 04 Sep 2007 16:52:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/lorem-ipsum/ + + + + 146 + 2007-09-04 09:52:50 + 2007-09-04 16:52:50 + closed + closed + lorem-ipsum + publish + 0 + 7 + page + + 0 + + + Page with comments + https://wpthemetestdata.wordpress.com/about/page-with-comments/ + Tue, 04 Sep 2007 17:47:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/page-with-comments/ + + + + 155 + 2007-09-04 10:47:47 + 2007-09-04 17:47:47 + open + closed + page-with-comments + publish + 2 + 3 + page + + 0 + + 167 + + anon@example.com + + + 2007-09-04 10:49:28 + 2007-09-04 00:49:28 + + 1 + + 0 + 0 + + + 168 + + tellyworth+test2@example.com + + + 2007-09-04 10:49:03 + 2007-09-04 00:49:03 + + 1 + + 0 + 0 + + + 169 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2007-09-04 10:48:51 + 2007-09-04 17:48:51 + + 1 + + 0 + 0 + + + 1017 + + themereviewteam@gmail.com + + + 2014-12-10 01:56:24 + 2014-12-10 08:56:24 + + 0 + + 168 + 0 + + + + Page with comments disabled + https://wpthemetestdata.wordpress.com/about/page-with-comments-disabled/ + Tue, 04 Sep 2007 17:48:10 +0000 + themedemos + https://wpthemetestdata.wordpress.com/page-with-comments-disabled/ + + + + 156 + 2007-09-04 10:48:10 + 2007-09-04 17:48:10 + closed + closed + page-with-comments-disabled + publish + 2 + 4 + page + + 0 + + + Level 3 + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3/ + Tue, 11 Dec 2007 06:23:16 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-3/ + + + + 172 + 2007-12-11 16:23:16 + 2007-12-11 06:23:16 + closed + closed + level-3 + publish + 173 + 0 + page + + 0 + + + Level 2 + https://wpthemetestdata.wordpress.com/level-1/level-2/ + Tue, 11 Dec 2007 06:23:33 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-2/ + + + + 173 + 2007-12-11 16:23:33 + 2007-12-11 06:23:33 + closed + closed + level-2 + publish + 174 + 0 + page + + 0 + + + Level 1 + https://wpthemetestdata.wordpress.com/level-1/ + Tue, 11 Dec 2007 23:25:40 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-1/ + + + + 174 + 2007-12-11 16:25:40 + 2007-12-11 23:25:40 + closed + closed + level-1 + publish + 0 + 5 + page + + 0 + + + Clearing Floats + https://wpthemetestdata.wordpress.com/about/clearing-floats/ + Sun, 01 Aug 2010 16:42:26 +0000 + themedemos + https://wpthemetestdata.wordpress.com/ + + This is the second page]]> + + 501 + 2010-08-01 09:42:26 + 2010-08-01 16:42:26 + closed + closed + clearing-floats + publish + 2 + 2 + page + + 0 + + + canola2 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/canola2/ + Mon, 16 Jun 2008 13:17:54 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/canola2.jpg + + + + 611 + 2008-06-16 06:17:54 + 2008-06-16 13:17:54 + open + closed + canola2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/canola2.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + dsc20050727_091048_222 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050727_091048_222/ + Mon, 16 Jun 2008 13:20:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050727_091048_222.jpg + + + + 616 + 2008-06-16 06:20:37 + 2008-06-16 13:20:37 + open + closed + dsc20050727_091048_222 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050727_091048_222.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + dsc20050813_115856_52 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050813_115856_52/ + Mon, 16 Jun 2008 13:20:57 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050813_115856_52.jpg + + + + 617 + 2008-06-16 06:20:57 + 2008-06-16 13:20:57 + open + closed + dsc20050813_115856_52 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050813_115856_52.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Front Page + https://wpthemetestdata.wordpress.com/front-page/ + Sat, 21 May 2011 01:49:43 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=701 + + + + 701 + 2011-05-20 18:49:43 + 2011-05-21 01:49:43 + open + closed + front-page + publish + 0 + 0 + page + + 0 + + + a Blog page + https://wpthemetestdata.wordpress.com/blog/ + Sat, 21 May 2011 01:51:43 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=703 + + + + 703 + 2011-05-20 18:51:43 + 2011-05-21 01:51:43 + open + closed + blog + publish + 0 + 0 + page + + 0 + + 1016 + + example@example.com + + + 2014-11-29 21:03:05 + 2014-11-30 04:03:05 + + 0 + + 0 + 0 + + + + Bell on Wharf + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/100_5478/ + Mon, 16 Jun 2008 21:34:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/100_5478.jpg + + + + 754 + 2008-06-16 14:34:50 + 2008-06-16 21:34:50 + open + closed + 100_5478 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/100_5478.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Golden Gate Bridge + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/100_5540/ + Mon, 16 Jun 2008 21:35:55 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/100_5540.jpg + + + + 755 + 2008-06-16 14:35:55 + 2008-06-16 21:35:55 + open + closed + 100_5540 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/100_5540.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sunburst Over River + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/cep00032/ + Mon, 16 Jun 2008 21:41:24 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/cep00032.jpg + + + + 756 + 2008-06-16 14:41:24 + 2008-06-16 21:41:24 + open + closed + cep00032 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/cep00032.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Boardwalk + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dcp_2082/ + Mon, 16 Jun 2008 21:41:27 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dcp_2082.jpg + + + + 757 + 2008-06-16 14:41:27 + 2008-06-16 21:41:27 + open + closed + dcp_2082 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dcp_2082.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Yachtsody in Blue + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc03149/ + Mon, 16 Jun 2008 21:41:33 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc03149.jpg + + + + 758 + 2008-06-16 14:41:33 + 2008-06-16 21:41:33 + open + closed + dsc03149 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc03149.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Rain Ripples + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc04563/ + Mon, 16 Jun 2008 21:41:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc04563.jpg + + + + 759 + 2008-06-16 14:41:37 + 2008-06-16 21:41:37 + open + closed + dsc04563 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc04563.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sydney Harbor Bridge + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc09114/ + Mon, 16 Jun 2008 21:41:41 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc09114.jpg + + + + 760 + 2008-06-16 14:41:41 + 2008-06-16 21:41:41 + open + closed + dsc09114 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc09114.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Wind Farm + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050102_192118_51/ + Mon, 16 Jun 2008 21:41:42 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050102_192118_51.jpg + + + + 761 + 2008-06-16 14:41:42 + 2008-06-16 21:41:42 + open + closed + dsc20050102_192118_51 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050102_192118_51.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Antique Farm Machinery + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20051220_160808_102/ + Mon, 16 Jun 2008 21:41:45 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_160808_102.jpg + + + + 762 + 2008-06-16 14:41:45 + 2008-06-16 21:41:45 + open + closed + dsc20051220_160808_102 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_160808_102.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Rusty Rail + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20051220_173257_119/ + Mon, 16 Jun 20081 21:47:17 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_173257_119.jpg + + + + 764 + 2008-06-16 14:47:17 + 2008-06-16 21:47:17 + open + closed + dsc20051220_173257_119 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_173257_119.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sea and Rocks + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dscn3316/ + Mon, 16 Jun 2008 21:47:20 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dscn3316.jpg + + + + 765 + 2008-06-16 14:47:20 + 2008-06-16 21:47:20 + open + closed + dscn3316 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dscn3316.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Big Sur + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/michelle_049/ + Mon, 16 Jun 2008 21:47:23 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/michelle_049.jpg + + + + 766 + 2008-06-16 14:47:23 + 2008-06-16 21:47:23 + open + closed + michelle_049 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/michelle_049.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Windmill + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dcf-1-0/ + Mon, 16 Jun 2008 21:47:26 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/windmill.jpg + + + + 767 + 2008-06-16 14:47:26 + 2008-06-16 21:47:26 + open + closed + dcf-1-0 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/windmill.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Huatulco Coastline + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/alas-i-have-found-my-shangri-la/ + Mon, 16 Jun 2008 21:49:48 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0513-1.jpg + + + + 768 + 2008-06-16 14:49:48 + 2008-06-16 21:49:48 + open + closed + alas-i-have-found-my-shangri-la + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0513-1.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Brazil Beach + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_0747/ + Mon, 16 Jun 2008 21:50:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0747.jpg + + + + 769 + 2008-06-16 14:50:37 + 2008-06-16 21:50:37 + open + closed + img_0747 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0747.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Huatulco Coastline + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_0767/ + Mon, 16 Jun 2008 21:51:19 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0767.jpg + + + + 770 + 2008-06-16 14:51:19 + 2008-06-16 21:51:19 + open + closed + img_0767 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0767.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Boat Barco Texture + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_8399/ + Mon, 16 Jun 2008 21:51:57 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_8399.jpg + + + + 771 + 2008-06-16 14:51:57 + 2008-06-16 21:51:57 + open + closed + img_8399 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_8399.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Resinous + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20040724_152504_532-2/ + Mon, 04 Jun 2012 18:36:56 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg + + + + 807 + 2012-06-04 11:36:56 + 2012-06-04 18:36:56 + open + closed + dsc20040724_152504_532-2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg + + _attachment_original_parent_id + + + + + St. Louis Blues + https://wpthemetestdata.wordpress.com/2010/07/02/post-format-audio/originaldixielandjazzbandwithalbernard-stlouisblues/ + Mon, 16 Jun 2008 16:49:29 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3 + + + + 821 + 2008-06-16 09:49:29 + 2008-06-16 16:49:29 + open + closed + originaldixielandjazzbandwithalbernard-stlouisblues + inherit + 587 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3 + + + OLYMPUS DIGITAL CAMERA + https://wpthemetestdata.wordpress.com/about/clearing-floats/olympus-digital-camera/ + Thu, 05 Aug 2010 18:07:34 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2010/08/manhattansummer.jpg + + + + 827 + 2010-08-05 11:07:34 + 2010-08-05 18:07:34 + open + closed + olympus-digital-camera + inherit + 501 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2010/08/manhattansummer.jpg + + + Image Alignment 580x300 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-580x300/ + Fri, 15 Mar 2013 00:44:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg + + + + 967 + 2013-03-14 19:44:50 + 2013-03-15 00:44:50 + open + open + image-alignment-580x300 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Image Alignment 150x150 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-150x150/ + Fri, 15 Mar 2013 00:44:49 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg + + + + 968 + 2013-03-14 19:44:49 + 2013-03-15 00:44:49 + open + open + image-alignment-150x150 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Horizontal Featured Image + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-horizontal/featured-image-horizontal-2/ + Fri, 15 Mar 2013 20:40:38 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-horizontal.jpg + + + + 1022 + 2013-03-15 15:40:38 + 2013-03-15 20:40:38 + open + open + featured-image-horizontal-2 + inherit + 1011 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-horizontal.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + I Am Worth Loving Wallpaper + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/soworthloving-wallpaper/ + Thu, 14 Mar 2013 14:58:24 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/soworthloving-wallpaper.jpg + + + + 1023 + 2013-03-14 09:58:24 + 2013-03-14 14:58:24 + open + open + soworthloving-wallpaper + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/soworthloving-wallpaper.jpg + + _wp_attachment_image_alt + + + + + Image Alignment 300x200 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-300x200/ + Fri, 15 Mar 2013 00:44:49 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg + + + + 1025 + 2013-03-14 19:44:49 + 2013-03-15 00:44:49 + open + open + image-alignment-300x200 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Vertical Featured Image + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-vertical/featured-image-vertical-2/ + Fri, 15 Mar 2013 20:41:09 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-vertical.jpg + + + + 1027 + 2013-03-15 15:41:09 + 2013-03-15 20:41:09 + open + open + featured-image-vertical-2 + inherit + 1016 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-vertical.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Image Alignment 1200x4002 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-1200x4002/ + Fri, 15 Mar 2013 00:44:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg + + + + 1029 + 2013-03-14 19:44:50 + 2013-03-15 00:44:50 + open + open + image-alignment-1200x4002 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Unicorn Wallpaper + https://wpthemetestdata.wordpress.com/2010/08/08/post-format-image/unicorn-wallpaper/ + Fri, 14 Dec 2012 03:10:39 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2012/12/unicorn-wallpaper.jpg + + + + 1045 + 2012-12-13 22:10:39 + 2012-12-14 03:10:39 + open + open + unicorn-wallpaper + inherit + 1158 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2012/12/unicorn-wallpaper.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Pages + https://wpthemetestdata.wordpress.com/2013/04/09/pages/ + Tue, 09 Apr 2013 13:37:45 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/pages + + + + 1100 + 2013-04-09 06:37:45 + 2013-04-09 13:37:45 + open + closed + pages + publish + 0 + 2 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Categories + https://wpthemetestdata.wordpress.com/2013/04/09/categories/ + Tue, 09 Apr 2013 13:37:45 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/categories + + + + 1101 + 2013-04-09 06:37:45 + 2013-04-09 13:37:45 + open + closed + categories + publish + 0 + 10 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1112/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1112</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test markup tags and styles.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1112</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1112</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>21</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[4675]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1115/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1115</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test post formats.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1115</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1115</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>24</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[44090582]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1118/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1118</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test unpublished posts.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1118</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1118</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>28</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[54090]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>Depth + https://wpthemetestdata.wordpress.com/2013/04/09/depth/ + Tue, 09 Apr 2013 13:37:46 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/depth + + + + 1119 + 2013-04-09 06:37:46 + 2013-04-09 13:37:46 + open + closed + depth + publish + 0 + 29 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 01 + https://wpthemetestdata.wordpress.com/2013/04/09/level-01/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-01 + + + + 1120 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-01 + publish + 0 + 30 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 02 + https://wpthemetestdata.wordpress.com/2013/04/09/level-02/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-02 + + + + 1121 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-02 + publish + 0 + 31 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 03 + https://wpthemetestdata.wordpress.com/2013/04/09/level-03/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-03 + + + + 1122 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-03 + publish + 0 + 32 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 04 + https://wpthemetestdata.wordpress.com/2013/04/09/level-04/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-04 + + + + 1123 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-04 + publish + 0 + 33 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 05 + https://wpthemetestdata.wordpress.com/2013/04/09/level-05/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-05 + + + + 1124 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-05 + publish + 0 + 34 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 06 + https://wpthemetestdata.wordpress.com/2013/04/09/level-06/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-06 + + + + 1125 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-06 + publish + 0 + 35 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 07 + https://wpthemetestdata.wordpress.com/2013/04/09/level-07/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-07 + + + + 1126 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-07 + publish + 0 + 36 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 08 + https://wpthemetestdata.wordpress.com/2013/04/09/level-08/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-08 + + + + 1127 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-08 + publish + 0 + 37 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 09 + https://wpthemetestdata.wordpress.com/2013/04/09/level-09/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-09 + + + + 1128 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-09 + publish + 0 + 38 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 10 + https://wpthemetestdata.wordpress.com/2013/04/09/level-10/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-10 + + + + 1129 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-10 + publish + 0 + 39 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Advanced + https://wpthemetestdata.wordpress.com/2013/04/09/advanced/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/advanced + + + + 1130 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + advanced + publish + 0 + 40 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu Description + https://wpthemetestdata.wordpress.com/2013/04/09/menu-description/ + Tue, 09 Apr 2013 13:37:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-description + + + + 1142 + 2013-04-09 06:37:50 + 2013-04-09 13:37:50 + open + closed + menu-description + publish + 0 + 44 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu Title Attribute + https://wpthemetestdata.wordpress.com/2013/04/09/menu-title-attribute/ + Tue, 09 Apr 2013 13:37:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-title-attribute + + + + 1143 + 2013-04-09 06:37:50 + 2013-04-09 13:37:50 + open + closed + menu-title-attribute + publish + 0 + 41 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu CSS Class + https://wpthemetestdata.wordpress.com/2013/04/09/menu-css-class/ + Tue, 09 Apr 2013 13:37:51 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-css-class + + + + 1144 + 2013-04-09 06:37:51 + 2013-04-09 13:37:51 + open + closed + menu-css-class + publish + 0 + 42 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + New Window / Tab + https://wpthemetestdata.wordpress.com/2013/04/09/new-window-tab/ + Tue, 09 Apr 2013 13:37:51 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/new-window-tab + + + + 1145 + 2013-04-09 06:37:51 + 2013-04-09 13:37:51 + open + closed + new-window-tab + publish + 0 + 43 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1263/</link> + <pubDate>Tue, 09 Apr 2013 13:38:00 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1263</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1263</wp:post_id> + <wp:post_date>2013-04-09 06:38:00</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:38:00</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1263</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1100]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1264/</link> + <pubDate>Tue, 09 Apr 2013 13:38:01 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1264</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1264</wp:post_id> + <wp:post_date>2013-04-09 06:38:01</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:38:01</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1264</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1100]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>twitter.com + https://wpthemetestdata.wordpress.com/2018/10/20/twitter-com/ + Sun, 21 Oct 2018 02:57:33 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/twitter-com/ + + + + 1719 + + + + + + + 0 + 1 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + facebook.com + https://wpthemetestdata.wordpress.com/2018/10/20/facebook-com/ + Sun, 21 Oct 2018 02:57:35 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/facebook-com/ + + + + 1720 + + + + + + + 0 + 2 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + github.com + https://wpthemetestdata.wordpress.com/2018/10/20/github-com/ + Sun, 21 Oct 2018 02:57:37 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/github-com + + + + 1721 + + + + + + + 0 + 3 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + instagram.com + https://wpthemetestdata.wordpress.com/2018/10/20/instagram-com + Sun, 21 Oct 2018 02:57:41 +000 + themereviewteam> + https://wpthemetestdata.wordpress.com/2018/10/20/instagram-com + + + + 1723 + + + + + + + 0 + 5 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + linkedin.com + https://wpthemetestdata.wordpress.com/2018/10/20/linkedin-com/ + Sun, 21 Oct 2018 02:57:39 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/linkedin-com/ + + + + 1722 + + + + + + + 0 + 4 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + triforce-wallpaper + https://wpthemetestdata.wordpress.com/2010/08/07/post-format-image-caption/triforce-wallpaper/ + Tue, 17 Aug 2010 20:17:31 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2010/08/triforce-wallpaper.jpg + + + + 1628 + 2010-08-17 13:17:31 + 2010-08-17 20:17:31 + open + closed + triforce-wallpaper + inherit + 1163 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2010/08/triforce-wallpaper.jpg + + + + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1636/</link> + <pubDate>Tue, 07 May 2013 19:54:30 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1636</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1636</wp:post_id> + <wp:post_date>2013-05-07 12:54:30</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:30</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1636</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1637/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1637</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1637</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1637</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1638/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1638</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1638</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1638</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1639/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1639</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1639</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1639</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1640/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1640</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1640</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1640</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1641/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1641</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1641</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1641</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1643/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1643</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1643</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1643</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1644/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1644</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1644</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1644</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[701]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1645/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1645</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1645</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1645</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1646/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1646</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1646</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1646</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1647/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1647</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1647</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1647</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1648/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1648</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1648</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1648</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1649/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1649</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1649</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1649</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1650/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1650</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1650</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1650</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1651/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1651</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1651</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1651</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>10</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[174]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1652/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1652</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1652</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1652</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>11</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[173]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1653/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1653</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1653</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1653</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>12</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[172]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1654/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1654</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1654</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1654</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>13</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[746]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1655/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1655</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1655</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1655</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>14</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[748]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1656/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1656</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1656</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1656</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>15</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[742]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1657/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1657</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1657</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1657</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>16</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[744]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1658/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1658</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1658</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1658</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>17</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1659/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1659</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1659</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1659</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>18</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[733]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1660/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1660</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1660</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1660</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>19</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[735]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1643/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1643</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1643</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1643</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1644/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1644</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1644</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1644</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[701]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1645/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1645</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1645</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1645</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1646/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1646</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1646</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1646</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1647/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1647</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1647</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1647</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1648/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1648</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1648</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1648</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1649/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1649</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1649</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1649</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1650/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1650</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1650</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1650</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1651/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1651</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1651</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1651</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>10</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[174]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1652/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1652</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1652</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1652</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>11</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[173]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1653/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1653</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1653</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1653</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>12</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[172]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1654/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1654</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1654</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1654</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>13</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[746]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1655/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1655</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1655</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1655</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>14</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[748]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1656/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1656</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1656</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1656</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>15</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[742]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1657/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1657</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1657</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1657</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>16</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[744]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1658/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1658</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1658</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1658</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>17</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1659/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1659</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1659</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1659</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>18</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[733]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1660/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1660</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1660</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1660</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>19</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[735]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>dsc20040724_152504_532 + https://wpthemetestdata.wordpress.com/?attachment_id=1686 + Wed, 18 Sep 2013 21:37:05 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20040724_152504_532.jpg + + + + 1686 + 2013-09-18 14:37:05 + 2013-09-18 21:37:05 + open + closed + dsc20040724_152504_532 + inherit + 0 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20040724_152504_532.jpg + + + dsc20050604_133440_34211 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050604_133440_34211/ + Wed, 18 Sep 2013 21:37:07 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20050604_133440_34211.jpg + + + + 1687 + 2013-09-18 14:37:07 + 2013-09-18 21:37:07 + open + closed + dsc20050604_133440_34211 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20050604_133440_34211.jpg + + + 2014-slider-mobile-behavior + https://wpthemetestdata.wordpress.com/?attachment_id=1690 + Wed, 04 Dec 2013 18:08:29 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/12/2014-slider-mobile-behavior.mov + + + + 1690 + 2013-12-04 11:08:29 + 2013-12-04 18:08:29 + open + closed + 2014-slider-mobile-behavior + inherit + 0 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/12/2014-slider-mobile-behavior.mov + + + dsc20050315_145007_132 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050315_145007_132-2/ + Sun, 05 Jan 2014 18:45:21 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2014/01/dsc20050315_145007_132.jpg + + + + 1691 + 2014-01-05 11:45:21 + 2014-01-05 18:45:21 + open + closed + dsc20050315_145007_132-2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2014/01/dsc20050315_145007_132.jpg + + + spectacles + https://wpthemetestdata.wordpress.com/about/clearing-floats/spectacles-2/ + Sun, 05 Jan 2014 18:45:36 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2014/01/spectacles.gif + + + + 1692 + 2014-01-05 11:45:36 + 2014-01-05 18:45:36 + open + closed + spectacles-2 + inherit + 501 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2014/01/spectacles.gif + + + Post Format: Standard + https://wpthemetestdata.wordpress.com/2010/10/05/post-format-standard/ + Tue, 05 Oct 2010 07:27:25 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=358 + + + +Mrs. Darling first heard of Peter when she was tidying up her children's minds. It is the nightly custom of every good mother after her children are asleep to rummage in their minds and put things straight for next morning, repacking into their proper places the many articles that have wandered during the day. + +If you could keep awake (but of course you can't) you would see your own mother doing this, and you would find it very interesting to watch her. It is quite like tidying up drawers. You would see her on her knees, I expect, lingering humorously over some of your contents, wondering where on earth you had picked this thing up, making discoveries sweet and not so sweet, pressing this to her cheek as if it were as nice as a kitten, and hurriedly stowing that out of sight. When you wake in the morning, the naughtiness and evil passions with which you went to bed have been folded up small and placed at the bottom of your mind and on the top, beautifully aired, are spread out your prettier thoughts, ready for you to put on. + +I don't know whether you have ever seen a map of a person's mind. Doctors sometimes draw maps of other parts of you, and your own map can become intensely interesting, but catch them trying to draw a map of a child's mind, which is not only confused, but keeps going round all the time. There are zigzag lines on it, just like your temperature on a card, and these are probably roads in the island, for the Neverland is always more or less an island, with astonishing splashes of colour here and there, and coral reefs and rakish-looking craft in the offing, and savages and lonely lairs, and gnomes who are mostly tailors, and caves through which a river runs, and princes with six elder brothers, and a hut fast going to decay, and one very small old lady with a hooked nose. It would be an easy map if that were all, but there is also first day at school, religion, fathers, the round pond, needle-work, murders, hangings, verbs that take the dative, chocolate pudding day, getting into braces, say ninety-nine, three-pence for pulling out your tooth yourself, and so on, and either these are part of the island or they are another map showing through, and it is all rather confusing, especially as nothing will stand still. + +Of course the Neverlands vary a good deal. John's, for instance, had a lagoon with flamingoes flying over it at which John was shooting, while Michael, who was very small, had a flamingo with lagoons flying over it. John lived in a boat turned upside down on the sands, Michael in a wigwam, Wendy in a house of leaves deftly sewn together. John had no friends, Michael had friends at night, Wendy had a pet wolf forsaken by its parents, but on the whole the Neverlands have a family resemblance, and if they stood still in a row you could say of them that they have each other's nose, and so forth. On these magic shores children at play are for ever beaching their coracles [simple boat]. We too have been there; we can still hear the sound of the surf, though we shall land no more. + +Of all delectable islands the Neverland is the snuggest and most compact, not large and sprawly, you know, with tedious distances between one adventure and another, but nicely crammed. When you play at it by day with the chairs and table-cloth, it is not in the least alarming, but in the two minutes before you go to sleep it becomes very real. That is why there are night-lights. + +Occasionally in her travels through her children's minds Mrs. Darling found things she could not understand, and of these quite the most perplexing was the word Peter. She knew of no Peter, and yet he was here and there in John and Michael's minds, while Wendy's began to be scrawled all over with him. The name stood out in bolder letters than any of the other words, and as Mrs. Darling gazed she felt that it had an oddly cocky appearance.]]> + + 358 + 2010-10-05 00:27:25 + 2010-10-05 07:27:25 + closed + closed + post-format-standard + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Gallery + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/ + Fri, 10 Sep 2010 14:24:14 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=555 + + + +You can use this page to test the Theme's handling of the gallery shortcode, including the columns parameter, from 1 to 9 columns. Themes are only required to support the default setting (3 columns), so this page is entirely optional. +

    One Column

    +[gallery columns="1"] +

    Two Columns

    +[gallery columns="2"] +

    Three Columns

    +[gallery columns="3"] +

    Four Columns

    +[gallery columns="4"] +

    Five Columns

    +[gallery columns="5"] +

    Six Columns

    +[gallery columns="6"] +

    Seven Columns

    +[gallery columns="7"] +

    Eight Columns

    +[gallery columns="8"] +

    Nine Columns

    +[gallery columns="9"]]]>
    + + 555 + 2010-09-10 07:24:14 + 2010-09-10 14:24:14 + closed + closed + post-format-gallery + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Post Format: Aside + https://wpthemetestdata.wordpress.com/2010/05/09/post-format-aside/ + Sun, 09 May 2010 14:51:54 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=559 + + + + 559 + 2010-05-09 07:51:54 + 2010-05-09 14:51:54 + closed + closed + post-format-aside + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Chat + https://wpthemetestdata.wordpress.com/2010/01/08/post-format-chat/ + Fri, 08 Jan 2010 14:59:31 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=562 + + + + 562 + 2010-01-08 07:59:31 + 2010-01-08 14:59:31 + closed + closed + post-format-chat + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Link + https://wpthemetestdata.wordpress.com/2010/03/07/post-format-link/ + Sun, 07 Mar 2010 15:06:53 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=565 + + The WordPress Theme Review Team Website]]> + + 565 + 2010-03-07 08:06:53 + 2010-03-07 15:06:53 + closed + closed + post-format-link + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Image (Linked) + https://wpthemetestdata.wordpress.com/2010/08/06/post-format-image-linked/ + Fri, 06 Aug 2010 15:09:39 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=568 + + chunk of resinous blackboy husk[/caption] +]]> + + 568 + 2010-08-06 08:09:39 + 2010-08-06 15:09:39 + closed + closed + post-format-image-linked + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Quote + https://wpthemetestdata.wordpress.com/2010/02/05/post-format-quote/ + Fri, 05 Feb 2010 15:13:15 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=575 + + Only one thing is impossible for God: To find any sense in any copyright law on the planet. +Mark Twain]]> + + 575 + 2010-02-05 08:13:15 + 2010-02-05 15:13:15 + closed + closed + post-format-quote + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Status + https://wpthemetestdata.wordpress.com/2010/04/04/post-format-status/ + Sun, 04 Apr 2010 15:21:24 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=579 + + + + 579 + 2010-04-04 08:21:24 + 2010-04-04 15:21:24 + closed + closed + post-format-status + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Video (WordPress.tv) + https://wpthemetestdata.wordpress.com/2010/06/03/post-format-video-wordpresstv/ + Thu, 03 Jun 2010 15:25:58 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=582 + + instructions in the Codex.]]> + + 582 + 2010-06-03 08:25:58 + 2010-06-03 15:25:58 + closed + closed + post-format-video-wordpresstv + publish + 0 + 0 + post + + 0 + + + + + + + + + _oembed_4321638fc1a6fee26443f7fe8a70a871 + ]]> + + + _oembed_29351fff85c1be1d1e9a965a0332a861 + ]]> + + + _oembed_9fcc86d7d9398ff736577f922307f64d + ]]> + + + _oembed_366237792d32461d0052efb2edec37f5 + ]]> + + + _oembed_37fdfe862c13c46a93be2921279bf675 + ]]> + + + + Post Format: Audio + https://wpthemetestdata.wordpress.com/2010/07/02/post-format-audio/ + Fri, 02 Jul 2010 15:36:44 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=587 + + St. Louis Blues + +Audio shortcode: + +[audio https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3]]]> + + 587 + 2010-07-02 08:36:44 + 2010-07-02 15:36:44 + closed + closed + post-format-audio + publish + 0 + 0 + post + + 0 + + + + + + + + enclosure + + + + + Page A + https://wpthemetestdata.wordpress.com/page-a/ + Fri, 24 Jun 2011 01:38:52 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=733 + + + + 733 + 2011-06-23 18:38:52 + 2011-06-24 01:38:52 + open + closed + page-a + publish + 0 + 10 + page + + 0 + + + Page B + https://wpthemetestdata.wordpress.com/page-b/ + Fri, 24 Jun 2011 01:39:14 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=735 + + + + 735 + 2011-06-23 18:39:14 + 2011-06-24 01:39:14 + open + closed + page-b + publish + 0 + 11 + page + + 0 + + + Level 2a + https://wpthemetestdata.wordpress.com/level-1/level-2a/ + Fri, 24 Jun 2011 02:03:33 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=742 + + + + 742 + 2011-06-23 19:03:33 + 2011-06-24 02:03:33 + open + closed + level-2a + publish + 174 + 0 + page + + 0 + + + Level 2b + https://wpthemetestdata.wordpress.com/level-1/level-2b/ + Fri, 24 Jun 2011 02:04:03 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=744 + + + + 744 + 2011-06-23 19:04:03 + 2011-06-24 02:04:03 + open + closed + level-2b + publish + 174 + 0 + page + + 0 + + + Level 3a + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3a/ + Fri, 24 Jun 2011 02:04:24 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=746 + + + + 746 + 2011-06-23 19:04:24 + 2011-06-24 02:04:24 + open + closed + level-3a + publish + 173 + 0 + page + + 0 + + + Level 3b + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3b/ + Fri, 24 Jun 2011 02:04:46 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=748 + + + + 748 + 2011-06-23 19:04:46 + 2011-06-24 02:04:46 + open + closed + level-3b + publish + 173 + 0 + page + + 0 + + + Template: Excerpt (Defined) + https://wpthemetestdata.wordpress.com/2012/03/15/template-excerpt-defined/ + Thu, 15 Mar 2012 21:38:08 +0000 + themedemos + http://wptest.io/demo/?p=993 + + should be displayed in place of the user-defined excerpt in single-page views.]]> + should be displayed in place of the post content in archive-index pages. It can be longer than the automatically generated excerpts, and can have HTML tags.]]> + 993 + 2012-03-15 14:38:08 + 2012-03-15 21:38:08 + closed + closed + template-excerpt-defined + publish + 0 + 0 + post + + 0 + + + + + + + + + Template: More Tag + https://wpthemetestdata.wordpress.com/2012/03/15/template-more-tag/ + Thu, 15 Mar 2012 21:41:11 +0000 + themedemos + http://wptest.io/demo/?p=996 + + more tag. + +Right after this sentence should be a "continue reading" button of some sort on list pages of themes that show full content. It won't show on single pages or on themes showing excerpts. + + + +And this content is after the more tag. (which should be the anchor link for when the button is clicked)]]> + + 996 + 2012-03-15 14:41:11 + 2012-03-15 21:41:11 + closed + closed + template-more-tag + publish + 0 + 0 + post + + 0 + + + + + + + + + Edge Case: Nested And Mixed Lists + https://wpthemetestdata.wordpress.com/2009/05/15/edge-case-nested-and-mixed-lists/ + Fri, 15 May 2009 21:48:32 +0000 + themedemos + http://wptest.io/demo/?p=1000 + + +
  • Lists within lists do not break the ordered list numbering order
  • +
  • Your list styles go deep enough.
  • + +

    Ordered - Unordered - Ordered

    +
      +
    1. ordered item
    2. +
    3. ordered item +
        +
      • unordered
      • +
      • unordered +
          +
        1. ordered item
        2. +
        3. ordered item
        4. +
        +
      • +
      +
    4. +
    5. ordered item
    6. +
    7. ordered item
    8. +
    +

    Ordered - Unordered - Unordered

    +
      +
    1. ordered item
    2. +
    3. ordered item +
        +
      • unordered
      • +
      • unordered +
          +
        • unordered item
        • +
        • unordered item
        • +
        +
      • +
      +
    4. +
    5. ordered item
    6. +
    7. ordered item
    8. +
    +

    Unordered - Ordered - Unordered

    +
      +
    • unordered item
    • +
    • unordered item +
        +
      1. ordered
      2. +
      3. ordered +
          +
        • unordered item
        • +
        • unordered item
        • +
        +
      4. +
      +
    • +
    • unordered item
    • +
    • unordered item
    • +
    +

    Unordered - Unordered - Ordered

    +
      +
    • unordered item
    • +
    • unordered item +
        +
      • unordered
      • +
      • unordered +
          +
        1. ordered item
        2. +
        3. ordered item
        4. +
        +
      • +
      +
    • +
    • unordered item
    • +
    • unordered item
    • +
    ]]>
    + + 1000 + 2009-05-15 14:48:32 + 2009-05-15 21:48:32 + closed + closed + edge-case-nested-and-mixed-lists + publish + 0 + 0 + post + + 0 + + + + + + + +
    + + Template: Featured Image (Horizontal) + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-horizontal/ + Thu, 15 Mar 2012 22:15:12 +0000 + themedemos + http://wptest.io/demo/?p=1011 + + featured image, if the theme supports it. + +Non-square images can provide some unique styling issues. + +This post tests a horizontal featured image.]]> + + 1011 + 2012-03-15 15:15:12 + 2012-03-15 22:15:12 + closed + closed + template-featured-image-horizontal + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + + + + Template: Featured Image (Vertical) + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-vertical/ + Thu, 15 Mar 2012 22:36:32 +0000 + themedemos + http://wptest.io/demo/?p=1016 + + featured image, if the theme supports it. + +Non-square images can provide some unique styling issues. + +This post tests a vertical featured image.]]> + + 1016 + 2012-03-15 15:36:32 + 2012-03-15 22:36:32 + closed + closed + template-featured-image-vertical + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + + + + Post Format: Gallery (Tiled) + https://wpthemetestdata.wordpress.com/2010/09/09/post-format-gallery-tiled/ + Fri, 10 Sep 2010 00:23:27 +0000 + themedemos + http://wptest.io/demo/?p=1031 + + Jetpack to test. + +[gallery type="rectangular" columns="4" ids="755,757,758,760,766,763" orderby="rand"] + +This is some text after the Tiled Gallery just to make sure that everything spaces nicely.]]> + + 1031 + 2010-09-09 17:23:27 + 2010-09-10 00:23:27 + closed + closed + post-format-gallery-tiled + publish + 0 + 0 + post + + 0 + + + + + + + + + + + Page Image Alignment + https://wpthemetestdata.wordpress.com/about/page-image-alignment/ + Fri, 15 Mar 2013 23:19:23 +0000 + themedemos + http://wptest.io/demo/?page_id=1080 + + None, Left, Right, and Center. In addition, they also get the options of Thumbnail, Medium, Large & Fullsize. Be sure to try this page in RTL mode and it should look the same as LTR. +

    Image Alignment 580x300

    +The image above happens to be centered. + +Image Alignment 150x150 The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see there should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +Image Alignment 1200x400 + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 1200x400 + +And we try the large image again, with the center alignment since that sometimes is a problem. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 300x200 + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And just when you thought we were done, we're going to do them all over again with captions! + +[caption id="attachment_906" align="aligncenter" width="580"]Image Alignment 580x300 Look at 580x300 getting some caption love.[/caption] + +The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky. + +[caption id="attachment_904" align="alignleft" width="150"]Image Alignment 150x150 Bigger caption than the image usually is.[/caption] + +The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +[caption id="attachment_907" align="alignnone" width="1200"]Image Alignment 1200x400 Comment for massive image for your eyeballs.[/caption] + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. +[caption id="attachment_907" align="aligncenter" width="1200"]Image Alignment 1200x400 This massive image is centered.[/caption] + +And again with the big image centered. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +[caption id="attachment_905" align="alignright" width="300"]Image Alignment 300x200 Feels good to be right all the time.[/caption] + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! Last thing is a small image aligned right. Whatever follows should be unaffected. Image Alignment 150x150]]>
    + + 1133 + 2013-03-15 18:19:23 + 2013-03-15 23:19:23 + open + open + page-image-alignment + publish + 2 + 0 + page + + 0 +
    + + Page Markup And Formatting + https://wpthemetestdata.wordpress.com/about/page-markup-and-formatting/ + Fri, 15 Mar 2013 23:20:05 +0000 + themedemos + http://wptest.io/demo/?page_id=1083 + + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    Jane$1Because that's all Steve Jobs needed for a salary.
    John$100KFor all the blogging he does.
    Jane$100MPictures are worth a thousand words, right? So Tom x 1,000.
    Jane$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    + Robert Frost
    +
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +This tag shows strike-through text. + +Small Tag + +This tag shows smaller text. + +Strong Tag + +This tag shows bold text. + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +This rarely used tag emulates teletype text, which is usually styled like the <code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +This tag shows underlined text. + +Variable Tag + +This allows you to denote variables.]]>
    + + 1134 + 2013-03-15 18:20:05 + 2013-03-15 23:20:05 + open + open + page-markup-and-formatting + publish + 2 + 0 + page + + 0 +
    + + Template: Comments + https://wpthemetestdata.wordpress.com/2012/01/03/template-comments/ + Tue, 03 Jan 2012 17:11:37 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/comment-test/ + + +
  • Threaded comments up to 10 levels deep
  • +
  • Paginated comments (set Settings > Discussion > Break comments into pages to 5 top level comments per page)
  • +
  • Comment markup / formatting
  • +
  • Comment images
  • +
  • Comment videos
  • +
  • Author comments
  • +
  • Gravatars and default fallbacks
  • +]]>
    + + 1148 + 2012-01-03 10:11:37 + 2012-01-03 17:11:37 + open + closed + template-comments + publish + 0 + 0 + post + + 0 + + + + + + + 881 + + example@example.org + http://example.org/ + + 2012-09-03 10:18:04 + 2012-09-03 17:18:04 + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    John Saddington$1Because that's all Steve Job' needed for a salary.
    Tom McFarlin$100KFor all the blogging he does.
    Jared Erickson$100MPictures are worth a thousand words, right? So Tom x 1,000.
    Chris Ames$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    + +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    +Robert Frost
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    + +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up.]]>
    + 1 + + 0 + 0 +
    + + 899 + + fake@example.com + + + 2013-03-11 23:45:54 + 2013-03-12 04:45:54 + Gravatar associated with it. + They did not speify a website, so there should be no link to it in the comment. +]]> + 1 + + 0 + 0 + + + 900 + + example@example.org + http://example.org/ + + 2013-03-12 13:17:35 + 2013-03-12 20:17:35 + + 1 + + 0 + 0 + + + 901 + + example@example.org + http://example.org + + 2013-03-14 07:53:26 + 2013-03-14 14:53:26 + + 1 + + 0 + 0 + + + 903 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 07:56:46 + 2013-03-14 14:56:46 + + 1 + + 0 + 24783058 + + + 904 + + example@example.org + http://example.org/ + + 2013-03-14 07:57:01 + 2013-03-14 14:57:01 + + 1 + + 0 + 0 + + + 905 + + example@example.org + http://example.org/ + + 2013-03-14 08:01:21 + 2013-03-14 15:01:21 + + 1 + + 904 + 0 + + + 906 + + example@example.org + http://example.org/ + + 2013-03-14 08:02:06 + 2013-03-14 15:02:06 + + 1 + + 905 + 0 + + + 907 + + example@example.org + http://example.org/ + + 2013-03-14 08:03:22 + 2013-03-14 15:03:22 + + 1 + + 906 + 0 + + + 910 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 08:10:29 + 2013-03-14 15:10:29 + + 1 + + 907 + 24783058 + + + 911 + + example@example.org + http://example.org/ + + 2013-03-14 08:12:16 + 2013-03-14 15:12:16 + + 1 + + 910 + 0 + + + 912 + + example@example.org + http://example.org/ + + 2013-03-14 08:12:58 + 2013-03-14 15:12:58 + + 1 + + 911 + 0 + + + 913 + + example@example.org + http://example.org/ + + 2013-03-14 08:13:42 + 2013-03-14 15:13:42 + + 1 + + 912 + 0 + + + 914 + + example@example.org + http://example.org/ + + 2013-03-14 08:14:13 + 2013-03-14 15:14:13 + + 1 + + 913 + 0 + + + 915 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 08:14:47 + 2013-03-14 15:14:47 + + 1 + + 914 + 24783058 + + + 917 + + example@example.org + http://example.org/ + + 2013-03-14 09:56:43 + 2013-03-14 16:56:43 + + If the image imports... + ]]> + 1 + + 0 + 0 + + + 918 + + example@example.org + http://example.org/ + + 2013-03-14 11:23:24 + 2013-03-14 18:23:24 + + 1 + + 0 + 0 + + + 919 + + example@example.org + http://example.org/ + + 2013-03-14 11:27:54 + 2013-03-14 18:27:54 + + 1 + + 0 + 0 + + + 920 + + example@example.org + http://example.org/ + + 2013-03-14 11:30:33 + 2013-03-14 18:30:33 + + 1 + + 0 + 24783058 + + + 1015 + + auser@example.com + + + 2014-09-29 02:52:15 + 2014-09-29 09:52:15 + + 0 + + 0 + 0 + +
    + + Template: Pingbacks And Trackbacks + https://wpthemetestdata.wordpress.com/2012/01/01/template-pingbacks-an-trackbacks/ + Sun, 01 Jan 2012 17:17:18 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/many-trackbacks/ + + +
  • Above the comments
  • +
  • Below the comments
  • +
  • Included within the normal flow of comments
  • +]]>
    + + 1149 + 2012-01-01 10:17:18 + 2012-01-01 17:17:18 + closed + closed + template-pingbacks-an-trackbacks + publish + 0 + 0 + post + + 0 + + + + + + + + + 921 + + + http://tellyworth.wordpress.com/2007/11/21/ping-1/ + + 2007-11-21 11:31:12 + 2007-11-21 01:31:12 + + 1 + trackback + 0 + 0 + + + 922 + + + http://tellyworth.wordpress.com/2007/11/21/ping-2-with-a-much-longer-title-than-the-previous-ping-which-was-called-ping-1/ + + 2007-11-21 11:35:47 + 2007-11-21 01:35:47 + + 1 + trackback + 0 + 0 + + + 923 + + + http://tellyworth.wordpress.com/2007/11/21/ping-4/ + + 2007-11-21 11:39:25 + 2007-11-21 01:39:25 + + 1 + pingback + 0 + 0 + + + 924 + + + http://tellyworth.wordpress.com/2007/11/21/ping-3/ + + 2007-11-21 11:38:22 + 2007-11-21 01:38:22 + + 1 + pingback + 0 + 0 + + + 925 + + example@example.org + http://example.org/ + + 2010-06-11 15:27:04 + 2010-06-11 22:27:04 + + 1 + + 0 + 0 + +
    + + Template: Comments Disabled + https://wpthemetestdata.wordpress.com/2012/01/02/template-comments-disabled/ + Mon, 02 Jan 2012 17:21:15 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/no-comments/ + + should display pingbacks and trackbacks.]]> + + 1150 + 2012-01-02 10:21:15 + 2012-01-02 17:21:15 + closed + closed + template-comments-disabled + publish + 0 + 0 + post + + 0 + + + + + + + + Edge Case: Many Tags + https://wpthemetestdata.wordpress.com/2009/06/01/edge-case-many-tags/ + Mon, 01 Jun 2009 08:00:34 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/11/24/many-tags/ + + + + 1151 + 2009-06-01 01:00:34 + 2009-06-01 08:00:34 + closed + closed + edge-case-many-tags + publish + 0 + 0 + post + + 0' + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Edge Case: Many Categories + https://wpthemetestdata.wordpress.com/2009/07/02/edge-case-many-categories/ + Thu, 02 Jul 2009 09:00:03 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/11/24/many-categories/ + + + + 1152 + 2009-07-02 02:00:03 + 2009-07-02 09:00:03 + closed + closed + edge-case-many-categories + publish + 0 + 0 + post + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Scheduled + https://wpthemetestdata.wordpress.com/2020/01/01/scheduled/ + Wed, 01 Jan 2030 19:00:18 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=418 + + + + 1153 + 2030-01-01 12:00:18 + 2030-01-01 19:00:18 + closed + closed + scheduled + future + 0 + 0 + post + + 0 + + + + + + Post Format: Image + https://wpthemetestdata.wordpress.com/2010/08/08/post-format-image/ + Sun, 08 Aug 2010 12:00:39 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=568 + +
      + +]]>
    + + 1158 + 2010-08-08 05:00:39 + 2010-08-08 12:00:39 + closed + closed + post-format-image + publish + 0 + 0 + post + + 0 + + + + + +
    + + Post Format: Video (YouTube) + https://wpthemetestdata.wordpress.com/2010/06/02/post-format-video-youtube/ + Wed, 02 Jun 2010 09:00:58 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=582 + + WordPress Embeds.]]> + + 1161 + 2010-06-02 02:00:58 + 2010-06-02 09:00:58 + closed + closed + post-format-video-youtube + publish + 0 + 0 + post + + 0 + + + + + + + Post Format: Image (Caption) + https://wpthemetestdata.wordpress.com/2010/08/07/post-format-image-caption/ + Sat, 07 Aug 2010 13:00:19 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=674 + + Bell on Wharf Bell on wharf in San Francisco[/caption]]]> + + 1163 + 2010-08-07 06:00:19 + 2010-08-07 13:00:19 + closed + closed + post-format-image-caption + publish + 0 + 0 + post + + 0 + + + + + + + + _thumbnail_id + + + + + Draft + https://wpthemetestdata.wordpress.com/?p=1164 + Tue, 09 Apr 2013 18:20:39 +0000 + themedemos + http://wptest.io/demo/?p=922 + + + + 1164 + 2013-04-09 11:20:39 + 2013-04-09 18:20:39 + closed + closed + + draft + 0 + 0 + post + + 0 + + + + + + Template: Password Protected (the password is "enter") + https://wpthemetestdata.wordpress.com/2012/01/04/template-password-protected/ + Wed, 04 Jan 2012 16:38:05 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/test-with-secret-password/ + + + + 1168 + 2012-01-04 09:38:05 + 2012-01-04 16:38:05 + closed + closed + template-password-protected + publish + 0 + 0 + post + enter + 0 + + + + + + + 926 + + example@example.org + http://example.org/ + + 2013-03-14 11:56:08 + 2013-03-14 18:56:08 + + 1 + + 0 + 0 + + + + + <link>https://wpthemetestdata.wordpress.com/2009/09/05/edge-case-no-title/</link> + <pubDate>Sat, 05 Sep 2009 16:00:23 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2007/09/04/14/</guid> + <description/> + <content:encoded><![CDATA[This post has no title, but it still must link to the single post view somehow. + +This is typically done by placing the permalink on the post date.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1169</wp:post_id> + <wp:post_date>2009-09-05 09:00:23</wp:post_date> + <wp:post_date_gmt>2009-09-05 16:00:23</wp:post_date_gmt> + <wp:comment_status>closed</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>edge-case-no-title</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>0</wp:menu_order> + <wp:post_type>post</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="category" nicename="classic"><![CDATA[Classic]]></category> + <category domain="post_tag" nicename="edge-case"><![CDATA[edge case]]></category> + <category domain="category" nicename="edge-case-2"><![CDATA[Edge Case]]></category> + <category domain="post_tag" nicename="layout"><![CDATA[layout]]></category> + <category domain="post_tag" nicename="title"><![CDATA[title]]></category> +</item> +<item> + <title>Edge Case: No Content + https://wpthemetestdata.wordpress.com/2009/08/06/edge-case-no-content/ + Thu, 06 Aug 2009 16:39:56 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/this-post-has-no-body/ + + + + 1170 + 2009-08-06 09:39:56 + 2009-08-06 16:39:56 + closed + closed + edge-case-no-content + publish + 0 + 0 + post + + 0 + + + + + + + 927 + + example@example.org + http://example.org/ + + 2013-03-14 12:35:07 + 2013-03-14 19:35:07 + + 1 + + 0 + 0 + + + + Template: Paginated + https://wpthemetestdata.wordpress.com/2012/01/08/template-paginated/ + Sun, 08 Jan 2012 17:00:20 +0000 + themedemos + https://noeltest.wordpress.com/?p=188 + + + +Post Page 2 + + + +Post Page 3]]> + + 1171 + 2012-01-08 10:00:20 + 2012-01-08 17:00:20 + closed + closed + template-paginated + publish + 0 + 0 + post + + 0 + + + + + + + + + <![CDATA[Markup: Title <em>With</em> <b>Mark<sup>up</sup></b>]]> + https://wpthemetestdata.wordpress.com/2013/01/05/markup-title-with-markup/ + Sat, 05 Jan 2013 17:00:49 +0000 + themedemos + http://wptest.io/demo/?p=861 + + +
  • The post title renders the word "with" in italics and the word "markup" in bold (and "up" is superscript).
  • +
  • The post title markup should be removed from the browser window / tab.
  • +]]>
    + + 1173 + 2013-01-05 10:00:49 + 2013-01-05 17:00:49 + closed + closed + markup-title-with-markup + publish + 0 + 0 + post + + 0 + + + + + +
    + + Markup: Title With Special Characters ~`!@#$%^&*()-_=+{}[]/\;:'"?,.> + https://wpthemetestdata.wordpress.com/2013/01/05/title-with-special-characters/ + Sat, 05 Jan 2013 18:00:20 +0000 + themedemos + http://wptest.io/demo/?p=867 + + Latin Character Tests +This is a test to see if the fonts used in this theme support basic Latin characters. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    !"#$%&'()*
    +,-./01234
    56789:;>=<
    ?@ABCDEFGH
    IJKLMNOPQR
    STUVWXYZ[\
    ]^_`abcdef
    ghijklmnop
    qrstuvwxyz
    {|}~
    ]]>
    + + 1174 + 2013-01-05 11:00:20 + 2013-01-05 18:00:20 + closed + closed + title-with-special-characters + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Taumatawhakatangihangakoauauotamateaturipukakapikimaungahoronukupokaiwhenuakitanatahu + https://wpthemetestdata.wordpress.com/2009/10/05/title-should-not-overflow-the-content-area/ + Mon, 05 Oct 2009 19:00:59 +0000 + themedemos + http://wptest.io/demo/?p=877 + + Title should not overflow the content area + +A few things to check for: +
      +
    • Non-breaking text in the title, content, and comments should have no adverse effects on layout or functionality.
    • +
    • Check the browser window / tab title.
    • +
    • If you are a plugin or widget developer, check that this text does not break anything.
    • +
    + +The following CSS properties will help you support non-breaking text. + +
    -ms-word-wrap: break-word;
    +word-wrap: break-word;
    + ]]>
    + + 1175 + 2009-10-05 12:00:59 + 2009-10-05 19:00:59 + closed + closed + title-should-not-overflow-the-content-area + publish + 0 + 0 + post + + 0 + + + + + + + + +
    + + Markup: Text Alignment + https://wpthemetestdata.wordpress.com/2013/01/09/markup-text-alignment/ + Wed, 09 Jan 2013 16:00:39 +0000 + themedemos + http://wptest.io/demo/?p=895 + + Default +This is a paragraph. It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love. Completely neutral and not picking a side or sitting on the fence. It just is. It just freaking is. It likes where it is. It does not feel compelled to pick a side. Leave him be. It will just be better that way. Trust me. +

    Left Align

    +

    This is a paragraph. It is left aligned. Because of this, it is a bit more liberal in it's views. It's favorite color is green. Left align tends to be more eco-friendly, but it provides no concrete evidence that it really is. Even though it likes share the wealth evenly, it leaves the equal distribution up to justified alignment.

    + +

    Center Align

    +

    This is a paragraph. It is center aligned. Center is, but nature, a fence sitter. A flip flopper. It has a difficult time making up its mind. It wants to pick a side. Really, it does. It has the best intentions, but it tends to complicate matters more than help. The best you can do is try to win it over and hope for the best. I hear center align does take bribes.

    + +

    Right Align

    +

    This is a paragraph. It is right aligned. It is a bit more conservative in it's views. It's prefers to not be told what to do or how to do it. Right align totally owns a slew of guns and loves to head to the range for some practice. Which is cool and all. I mean, it's a pretty good shot from at least four or five football fields away. Dead on. So boss.

    + +

    Justify Align

    +

    This is a paragraph. It is justify aligned. It gets really mad when people associate it with Justin Timberlake. Typically, justified is pretty straight laced. It likes everything to be in it's place and not all cattywampus like the rest of the aligns. I am not saying that makes it better than the rest of the aligns, but it does tend to put off more of an elitist attitude.

    ]]>
    + + 1176 + 2013-01-09 09:00:39 + 2013-01-09 16:00:39 + closed + closed + markup-text-alignment + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Markup: Image Alignment + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/ + Fri, 11 Jan 2013 03:15:40 +0000 + themedemos + http://wptest.io/demo/?p=903 + + None, Left, Right, and Center. In addition, they also get the options of Thumbnail, Medium, Large & Fullsize. Be sure to try this page in RTL mode and it should look the same as LTR. +

    Image Alignment 580x300

    +The image above happens to be centered. + +Image Alignment 150x150 The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +Image Alignment 1200x400 + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 1200x400 + +And we try the large image again, with the center alignment since that sometimes is a problem. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 300x200 + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And just when you thought we were done, we're going to do them all over again with captions! + +[caption id="attachment_906" align="aligncenter" width="580"]Image Alignment 580x300 Look at 580x300 getting some caption love.[/caption] + +The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky. + +[caption id="attachment_904" align="alignleft" width="150"]Image Alignment 150x150 Bigger caption than the image usually is.[/caption] + +The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +[caption id="attachment_907" align="alignnone" width="1200"]Image Alignment 1200x400 Comment for massive image for your eyeballs.[/caption] + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. +[caption id="attachment_907" align="aligncenter" width="1200"]Image Alignment 1200x400 This massive image is centered.[/caption] + +And again with the big image centered. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +[caption id="attachment_905" align="alignright" width="300"]Image Alignment 300x200 Feels good to be right all the time.[/caption] + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! One last thing: The last item in this post's content is a thumbnail floated right. Make sure any elements after the content are clearing properly. + +]]>
    + + 1177 + 2013-01-10 20:15:40 + 2013-01-11 03:15:40 + closed + closed + markup-image-alignment + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + +
    + + Markup: HTML Tags and Formatting + https://wpthemetestdata.wordpress.com/2013/01/11/markup-html-tags-and-formatting/ + Sat, 12 Jan 2013 03:22:19 +0000 + themedemos + http://wptest.io/demo/?p=919 + + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    John Doe$1Because that's all Steve Jobs needed for a salary.
    Jane Doe$100KFor all the blogging she does.
    Fred Bloggs$100MPictures are worth a thousand words, right? So Jane x 1,000.
    Jane Bloggs$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    +Robert Frost
    +
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +This tag shows strike-through text. + +Small Tag + +This tag shows smaller text. + +Strong Tag + +This tag shows bold text. + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +This rarely used tag emulates teletype text, which is usually styled like the <code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +This tag shows underlined text. + +Variable Tag + +This allows you to denote variables.]]>
    + + 1178 + 2013-01-11 20:22:19 + 2013-01-12 03:22:19 + closed + closed + markup-html-tags-and-formatting + publish + 0 + 0 + post + + 0 + + + + + + + +
    + + Media: Twitter Embeds + https://wpthemetestdata.wordpress.com/2011/03/15/media-twitter-embeds/ + Tue, 15 Mar 2011 22:47:16 +0000 + themedemos + http://wptest.io/demo/?p=1027 + + Twitter Embeds feature.]]> + + 1179 + 2011-03-15 15:47:16 + 2011-03-15 22:47:16 + closed + closed + media-twitter-embeds + publish + 0 + 0 + post + + 0 + + + + + + + + _oembed_time_d01e104b758ab65a49dfdede5913069c + + + + _oembed_ac49b172e1844531a885a53eff2efd91 + ]]> + + + _oembed_time_ac49b172e1844531a885a53eff2efd91 + + + + _oembed_d01e104b758ab65a49dfdede5913069c + ]]> + + + + Template: Sticky + https://wpthemetestdata.wordpress.com/2012/01/07/template-sticky/ + Sat, 07 Jan 2012 14:07:21 +0000 + themedemos + http://wptest.io/demo/?p=1241 + + +
  • The sticky post should be distinctly recognizable in some way in comparison to normal posts. You can style the .sticky class if you are using the post_class() function to generate your post classes, which is a best practice.
  • +
  • They should show at the very top of the blog index page, even though they could be several posts back chronologically.
  • +
  • They should still show up again in their chronologically correct postion in time, but without the sticky indicator.
  • +
  • If you have a plugin or widget that lists popular posts or comments, make sure that this sticky post is not always at the top of those lists unless it really is popular.
  • +]]>
    + + 1241 + 2012-01-07 07:07:21 + 2012-01-07 14:07:21 + closed + closed + template-sticky + publish + 0 + 0 + post + + 1 + + + + +
    + + Template: Excerpt (Generated) + https://wpthemetestdata.wordpress.com/2012/03/14/template-excerpt-generated/ + Wed, 14 Mar 2012 16:49:22 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=1446 + + excerpt_length and excerpt_more, display properly.]]> + + 1446 + 2012-03-14 09:49:22 + 2012-03-14 16:49:22 + closed + closed + template-excerpt-generated + publish + 0 + 0 + post + + 0 + + + + + + + + + Block category: Common + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-common/ + Fri, 02 Nov 2018 16:20:28 +0000 + >themereviewteam + https://wpthemetestdata.wordpress.com/?p=1730 + + +

    The Common category includes the following blocks: Paragraph, image, headings, list, gallery, quote, audio, cover, video.

    + + + +

    The paragraph block is the default block type.  It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love.

    + + + +

    This paragraph is left aligned.

    + + + +

    This italic paragraph is right aligned.

    + + + +

    Neither of these paragraphs care about politics, but this one is bold, medium sized and has a drop cap.

    + + + +

    This paragraph is centered.

    + + + +

    This paragraph prefers Jazz over Justin Timberlake. It also uses the small font size.

    + + + +

    This paragraph has something important to say:  It has a large font size, which defaults to 36px.

    + + + +

    The huge text size defaults to 46px, but the size can be customized.

    + + + +

    This paragraph is colorful, with a red background and white text (maybe). Colored blocks should have a high enough contrast, so that the text is readable.

    + + + +

    Below this block, you will see a single image with a circle mask applied.

    + + + +
    Image Alignment 150x150
    + + + +

    H1 Heading

    + + + +

    H2 Heading

    + + + +

    H3 Heading

    + + + +

    H4 Heading

    + + + +
    H5 Heading
    + + + +
    H6 Heading
    + + + +

    Ordered list

    + + + +
    1. The software should be licensed under the GNU Public License.
    2. The software should be freely available to anyone to use for any purpose, and without permission.
    3. The software should be open to modifications.
      1. Any modifications should be freely distributable at no cost and without permission from its creators.
    4. The software should provide a framework for translation to make it globally accessible to speakers of all languages.
    5. The software should provide a framework for extensions so modifications and enhancements can be made without modifying core code
    + + + +

    Unordered list

    + + + +
    • One
    • Two
    • Three
      • Four
    • Five
    + + + + + + + +

    Quote

    Cite
    + + + +
    + + + +
    +

    Cover block with background image

    +
    + + + +

    The file block has a setting that lets us show or hide a download button with editable text:

    + + + + + + + + + + + +

    Video blocks have settings for showing and hiding the playback controls. Use autoplay and playback controls responsibly.

    + + + +
    This is a video block caption.
    + + + +

    The video block below is muted and has a poster image that displays before the video starts:

    + + + +
    + +]]>
    + + 1730 + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + +
    + + Block category: Formatting + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-formatting/ + Fri, 02 Nov 2018 16:41:42 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1732 + + +

    The formatting category includes the following blocks:

    + + + +
    The code block starts with
    +<!-- wp:code -->
    +<?php echo 'Hello World'; ?>
    +
    + + +

    The classic block can have almost anything in it.

    +
    +
    a heading
    + + +
    The custom HTML block lets you put HTML that isn't configured like blocks in it. (this div has a width of 45%)
    + + + +
    The preformatted block.

    The Road Not Taken

    Robert Frost
    Two roads diverged in a yellow wood,
    And sorry I could not travel both (\_/)
    And be one traveler, long I stood (='.'=)
    And looked down one as far as I could (")_(")
    To where it bent in the undergrowth;

    Then took the other, as just as fair,
    And having perhaps the better claim, |\_/|
    Because it was grassy and wanted wear; / @ @ \
    Though as for that the passing there ( > º < )
    Had worn them really about the same, `>>x<<´
    / O \
    And both that morning equally lay
    In leaves no step had trodden black.
    Oh, I kept the first for another day!
    Yet knowing how way leads on to way,
    I doubted if I should ever come back.
    I shall be telling this with a sigh
    Somewhere ages and ages hence:
    Two roads diverged in a wood, and I—
    I took the one less traveled by,
    And that has made all the difference.



    and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    + + + +

    The pull quote can be aligned or wide or neither.

    Theme Reviewer
    + + + +
    The table blockThis is the default style.
    The cell next to this is empty.
    Cell #5
    Cell #6
    + + + +
    This is the striped style.This row should have a background color.
    The cell next to this is empty.

    This table has fixed width table cells.

    Make sure that the text wraps correctly.

    + + + +
    The Verse block

    A block for haiku?
    Why not?
    Blocks for all the things!
    +]]>
    + + 1732 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Block category: Layout Elements + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-layout-elements/ + Fri, 02 Nov 2018 16:44:37 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1734 + + +
    +

    The Layout Elements category includes the following blocks: Group, Button, Columns, Media & Text, separator, spacer, read more, and page break.

    + + + +

    This group block has a light green background color.

    + + + + + + + +

    The read more block should be right below this text, but only on list pages of themes that show the full content. It won't show on the single page or on themes showing excerpts.

    +
    + + + + + + + +
    +
    +

    The columns:

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    +
    + + + +
    Boardwalk
    +

    Media &Text

    + + + +

    For displaying media and text next to each other. By default, the media is to the left.

    +
    + + + +
    Golden Gate Bridge
    +

    This time our block is full width, and the image is to the right.

    + + + +

    The background color is a pale blue. 

    +
    + + + +

    Test to make sure that the editor and the front match. To test the Stack on mobile setting, reduce the browser window width.

    + + + +

    The control these settings, the block uses the css classes "has-media-on-the-right" and "is-stacked-on-mobile".

    + + + +

    The separator has three styles: default, wide line, and dots.

    + + + +
    + + + +
    + + + +
    + + + +

    The spacer block has a default height of 100 pixels:

    + + + + + + + +

    And finally, the page break:

    + + + + + + + +

    This paragraph block is on page two, after the page break.

    + + + + +]]>
    + + 1734 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block category: Embeds + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-embeds/ + Fri, 02 Nov 2018 16:51:55 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1738 + + + +

    This post tests various embed blocks:

    + + + +
    +https://twitter.com/WordPress/status/1057136472321613824 +
    Twitter,  wide width
    + + + +
    +https://youtu.be/ex8fMxXJDJw +
    YouTube
    + + + +
    +https://www.facebook.com/6427302910/posts/10156380423617911/ +
    + + + +
    +https://www.instagram.com/p/BpmueLLgEn_/?utm_source=ig_share_sheet&igshid=1hcxphic7p9e2 +
    + + + +
    +https://wordpress.tv/2018/10/14/kjell-reigstad-allan-cole-how-we-made-our-first-gutenberg-powered-theme/ +
    WordPress TV, full width
    + + + +

    +]]>
    + + 1738 + + + + + + + 0 + 0 + + + 0 + + + + + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + + + + + + + + + + ]]> + + + + + + + +

    Many of the WordPress contribution teams have been working hard on the new WordPress editor, and the tools, services,...

    Publicerat av WordPress Måndag 3 september 2018
    ]]>
    +
    + + + + + + + ]]> + + + + + + + + ]]> + + + + + + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + + + + + + ]]> + + + + + + + +

    Many of the WordPress contribution teams have been working hard on the new WordPress editor, and the tools, services,...

    Publicerat av WordPress Måndag 3 september 2018
    ]]>
    +
    + + + + + + + ]]> + + + + + + + + ]]> + + + + + +
    + + Block category: Widgets + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-widgets/ + Fri, 02 Nov 2018 16:45:35 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1736 + + +

    The shortcode widget:

    + + + +[gallery columns=2 ids="770,771"] + + + +

    The Archive Widget:

    + + + + + +

    The same Archive widget but as a dropdown:

    + + + + + + + +

    The Category widget block has an additional option for showing category hierarchies:

    + + + + + +

    The Latest Comments widget can display or hide the avatars, the date, and the comment excerpt:

    + + + + + +

    Here is an example of the Comments widget with all the options disabled. The number of comments has been reduced to two.

    + + + + + +

    And here is the Latest Posts widget in the list view, with dates:

    + + + + + +

    Grid view, now sorted from A -Z.

    + + + + + +

    You can also change the number of columns used to display the latest posts. The block below only displays posts from the Block category:

    + + + + + +

    Search widget:

    + + + + + +

    Tag Cloud widget:

    + + + + + +

    RSS Feed widget:

    + + + + ]]>
    + + 1736 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Columns + https://wpthemetestdata.wordpress.com/2018/11/02/block-columns/ + Fri, 02 Nov 2018 12:10:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1743 + + +
    +
    +

    This page tests how the theme displays the columns block. The first block tests a two column block with paragraphs.

    +
    + + + +
    +

    This is the second column. It should align next to the first column. Reduce the browser window width to test the responsiveness.

    +
    +
    + + + +
    +
    +

    This is the second column block. It has 3 columns.

    +
    + + + +
    +

    Paragraph 2 is in the middle.

    +
    + + + +
    +

    Paragraph 3 is in the last column.

    +
    +
    + + + +
    +
    +

    The third column block has 4 columns. Make sure that all the text is visible and that it is not cut off.

    +
    + + + +
    +

    Now the columns are getting narrower.

    +
    + + + +
    +

    The margins between the columns should be wide enough,

    +
    + + + +
    +

    so that the content of the columns does not run into or overlap each other.

    +
    +
    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    + + + +
    +

    Column five.

    +
    +
    + + + +

    To change the number of columns, select the column block to open the settings panel. You can show up to 6 columns. If the theme has support for wide align, you can also set the alignments to wide and full width.

    + + + +

    Below is a column block with six columns, and no alignment:

    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    + + + +
    +

    Column five.

    +
    + + + +
    +

    Column six.

    +
    +
    + + + +

    Next is a 3 column block, with a wide alignment:

    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    +
    + + + +

    And here is a two column block with full width, and a longer text. Make sure that the text wraps correctly.

    + + + +
    +
    +

    This is column one. Sometimes, you may want to use columns to display a larger text, so, lets add some more words. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna. Praesent sit amet ligula id orci venenatis auctor. Phasellus porttitor, metus non tincidunt dapibus, orci pede pretium neque, sit amet adipiscing ipsum lectus et libero. Aenean bibendum. Curabitur mattis quam id urna. Vivamus dui. Donec nonummy lacinia lorem. Cras risus arcu, sodales ac, ultrices ac, mollis quis, justo. Sed a libero. Quisque risus erat, posuere at, tristique non, lacinia quis, eros.

    +
    + + + +
    +

    Column two. Cras volutpat, lacus quis semper pharetra, nisi enim dignissim est, et sollicitudin quam ipsum vel mi. Sed commodo urna ac urna. Nullam eu tortor. Curabitur sodales scelerisque magna. Donec ultricies tristique pede. Nullam libero. Nam sollicitudin felis vel metus. Nullam posuere molestie metus. Nullam molestie, nunc id suscipit rhoncus, felis mi vulputate lacus, a ultrices tortor dolor eget augue. Aenean ultricies felis ut turpis. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Suspendisse placerat tellus ac nulla. Proin adipiscing sem ac risus. Maecenas nisi. Cras semper.

    +
    +
    + + + +

    We can also add blocks inside columns:

    + + + +
    +
    +
    1. This is a numbered list,
    2. inside a 3 column block
    3. with a wide alignment.
    +
    + + + +
    +

    The middle column has a paragraph with an image block below.

    + + + +
    canola
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna.
    +
    + + + +
    +

    -This third column has a quote

    Theme Reviewer
    +
    +
    + + + +

    But wait there is more!  We also have a block called Media & Text, which is a two column block that helps you display media and text content next to each other, without having to first setup a column block:

    + + + +
    dsc20050813_115856_52
    +

    Media & Text

    + + + +

    A paragraph block sits ready to be used, below your headline.

    + + + +

    +
    +]]>
    + + 1743 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Block: Cover + https://wpthemetestdata.wordpress.com/2018/11/02/block-cover/ + Sat, 03 Nov 2018 12:25:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1745 + + +

    This is a left aligned cover block with a background image.

    + + + +

    The cover block lets you add text on top of images or videos.

    + + + +

    This blocktype has several alignment options, and you can also align or center the text inside the block.

    + + + +

    The background image can be fixed and you can change its opacity and add an overlay color.

    + + + +

    Make sure that the text wraps correctly over the image, and that text markup and alignments are working.

    + + + +

    The next image should have a pink overlay color, the text should be bold and aligned to the left:

    + + + +

    A center aligned cover image block, with a left aligned text.

    + + + +

    This is a full width cover block with a fixed background image with a 20% opacity.

    + + + +

    Make sure that all the text is readable.

    + + + +

    Our last cover image block has a wide width.

    + + + +

    This is a wide cover block with a video background.

    + + + +

    Compare the video and image blocks.
    This block is centered.

    + + + +

    The block below has no alignment, and the text is a link. Overlay colors must also work with video backgrounds.

    + + + + +]]>
    + + 1745 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Button + https://wpthemetestdata.wordpress.com/2018/11/02/block-button/ + Sat, 03 Nov 2018 13:20:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1747 + + +

    Button blocks are not semantically buttons, but links inside a styled div. 

    + + + +

    If you do not add a link, a link tag without an anchor will be used.

    + + + + + + + +

    Check to make sure that the text wraps correctly when the button has more than one line of text, and when it is extra long.

    + + + + + + + +

    Buttons have three styles: 

    + + + + + + + + + + + + + + + +

    If the theme has a custom color palette, test that background color and text color settings work correctly. 

    + + + + + + + +

    Now lets test how buttons display together with large texts.

    + + + +

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio.

    + + + + + + + +

    Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna. Praesent sit amet ligula id orci venenatis auctor. Phasellus porttitor, metus non tincidunt dapibus, orci pede pretium neque, sit amet adipiscing ipsum lectus et libero. Aenean bibendum. Curabitur mattis quam id urna.

    + + + + + + + +

    Vivamus dui. Donec nonummy lacinia lorem. Cras risus arcu, sodales ac, ultrices ac, mollis quis, justo. Sed a libero. Quisque risus erat, posuere at, tristique non, lacinia quis, eros.

    +]]>
    + + 1747 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Quote + https://wpthemetestdata.wordpress.com/2018/11/02/block-quote/ + Sat, 03 Nov 2018 03:05:49 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1749 + + +

    The quote block has two styles, regular:

    + + + +

    Gutenberg is more than an editor.

    The Gutenberg Team
    + + + +

    and large:

    + + + +

    Yes, it is a press, certainly, but a press from which shall flow in inexhaustible streams, the most abundant and most marvelous liquor that has ever flowed to relieve the thirst of men!


    Johannes Gutenberg
    + + + +

    The quote blocks themselves have no alignments but the text can be aligned, bold, italic, and linked:

    + + + +

    Right

    Theme Review
    + + + +

    In addition to the quote block, we also have the pull quote, with a regular and a solid color style.

    + + + +

    You can change the color of the border and the text with the regular style:

    + + + +

    In addition to the quote block, we also have the pull quote.

    Theme Reviewer
    + + + +

    Or change the background color and text color with the solid color style:

    + + + +

    a solid color style

    Theme Reviewer
    +]]>
    + + 1749 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Gallery + https://wpthemetestdata.wordpress.com/2018/11/02/block-gallery/ + Sat, 03 Nov 2018 04:34:24 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1752 + + +

    Gallery blocks have two settings: the number of columns, and whether or not images should be cropped. The default number of columns is three, and the maximum number of columns is eight.

    + + + +

    Below is a three column gallery at full width, with cropped images.

    + + + + + + + + + + + +

    Some more text for taking up space.

    + + + +

    A two column gallery, aligned to the left, linked to media file.

    + + + +

    In the editor, the image captions can be edited directly by clicking on the text.

    + + + +

    If the number of images cannot be divided into the number of columns you have selected, the default is to have the last image(s) automatically stretch to the width of your gallery.

    + + + + + + + +

    A four column gallery with a wide width:

    + + + + + + + +

    A five column gallery with normal images:

    + + + + + + + +

    This is the same gallery, but with cropped images.

    + + + + + + + +

    Six columns: does it work at all window sizes?

    + + + + + + + +

    Seven columns: how does this look on a narrow window?

    + + + + + + + +

    Eight columns:

    + + + + +]]>
    + + 1752 + + + + + + + 0 + 0 + + + 0 + + + + + + + + + +
    + + Block: Image + https://wpthemetestdata.wordpress.com/2018/11/03/block-image/ + Sat, 03 Nov 2018 15:20:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1755 + + +

    Welcome to image alignment! If you recognize this post, it is because these are blocks that have been converted from the classic Markup: Image Alignment post. The best way to demonstrate the ebb and flow of the various image positioning options is to nestle them snuggly among an ocean of words. Grab a paddle and let's get started. Be sure to try it in RTL mode. Left should stay left and right should stay right for both reading directions.

    + + + +

    On the topic of alignment, it should be noted that users can choose from the options of None, Left, Right, and Center. If the theme has added support for align wide, images can also be wide and full width. Be sure to test this page in RTL mode.

    + + + +

    In addition, they also get the options of the image dimensions 25%, 50%, 75%, 100% or a set width and height.

    + + + +
    Image Alignment 580x300
    + + + +

    The image above happens to be centered.

    + + + +
    Image Alignment 150x150
    + + + +

    The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned.

    + + + +

    As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished!

    + + + +

    And now for a massively large image. It also has no alignment.

    + + + +
    Image Alignment 1200x400
    + + + +

    The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.

    + + + +
    Image Alignment 300x200
    + + + +

    And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there… Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently.

    + + + +

    In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah… Just like that. It never felt so good to be right.

    + + + +

    And just when you thought we were done, we're going to do them all over again with captions!

    + + + +
    Image Alignment 580x300
    Look at 580x300 getting some caption love.
    + + + +

    The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky.

    + + + +
    Image Alignment 150x150
    Itty-bitty caption.
    + + + +

    The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned.

    + + + +

    As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished!

    + + + +

    And now for a massively large image. It also has no alignment.

    + + + +
    Image Alignment 1200x400
    Massive image comment for your eyeballs.
    + + + +

    The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.

    + + + +
    Image Alignment 300x200
    Feels good to be right all the time.
    + + + +

    And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there… Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently.

    + + + +

    In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah… Just like that. It never felt so good to be right.

    + + + +

    Imagine that we would find a use for the extra wide image! This image has the wide width alignment:

    + + + +
    Image Alignment 1200x4002
    + + + +

    Can we go bigger? This image has the full width alignment:

    + + + +
    Image Alignment 1200x4002
    + + + +

    And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! One last thing: The last item in this post's content is a thumbnail floated right. Make sure any elements after the content are clearing properly.

    + + + +
    +]]>
    + + 1755 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Ελληνικά-Greek + https://wpthemetestdata.wordpress.com/greek/ + Fri, 14 Feb 2020 10:31:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1809 + + Headings Επικεφαλίδες +

    Επικεφαλίδα 1 Header one

    +

    Επικεφαλίδα 2 Header two

    +

    Επικεφαλίδα 3 Header three

    +

    Επικεφαλίδα 2 Header four

    +
    Επικεφαλίδα 5 Header five
    +
    Επικεφαλίδα 6Header six
    +

    Παράθεση άλλου Blockquotes

    +Single line blockquote: Μια γραμμή +
    Πάντα να είναι περίεργος.
    +Πολλές γραμμέ με αναφορά Multi line blockquote with a cite reference: +
    Το HTML <blockquote> ElementHTML Block Quotation Element) καταδεικνύει ότι το κείμενο έχει μια παράθεση. Συνήθως οπτικοποιείται με εσοχή (δείτε Σημειώσεις για το πως να το αλλάξετε. Ίσως να δίνεται και URL πηγής με την χρήση του cite attribute, μπλα, μπλα <cite> .
    +multiple contributors - MDN HTML element reference - blockquote +

    Πίνακες Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Υπάλληλος EmployeeΜισθός Salary
    Τάδε κάποιος$1Γιατί τόσα χρειάζεται για να ζήσει
    Jane Doe$100KFor all the blogging she does.
    Fred Bloggs$100MPictures are worth a thousand words, right? So Jane x 1,000.
    Jane Bloggs$100BWith hair like that?! Enough said...
    +

    Λίστες Definition Lists

    +
    +
    Τίτλος λίστας Definition List Title
    +
    Υποδιαίρεση λίστας Definition list division.
    +
    +

    Λίστα με κουκίδες Unordered Lists (Nested)

    +
      +
    • Πρώτο στοιχείο List item one +
        +
      • Στοιχείο πρώτο List item one +
          +
        • Στοιχείο λίστα ένα List item one
        • +
        • Στοιχείο λίστας δύο List item two
        • +
        +
      • +
      • Στοιχείο δεύτερο -item two
      • +
      +
    • +
    • Στοιχειο δύο List item two
    • +
    +

    Αριθμημένη λίστα(Nested)

    +
      +
    1. Στοιχειο ξεκινά με 8-start at 8 +
        +
      1. Στοιχείο λίστας ενα List item one +
          +
        1. Στοιχείο λίστας ενα -reversed attribute
        2. +
        3. Στοιχείο λίστας δύο
        4. +
        +
      2. +
      3. Δεύτερο στοιχείο
      4. +
      +
    2. +
    3. Στοιχείο δύο
    4. +
    +

    Ετικέττες HTML Tags

    +Διεύθυνση Address Tag + +
    1 Απέραντη διαδρομή Infinite Loop +Απλωπολή , ΤΚ 95014 +Ελλάδα
    Αγκυρωση Anchor Tag (aka. Link) + +Πάραδειγμα συνδέσμου. + +Συντομογραφία Abbreviation Tag + +Η συντομογραφία κτλ σημαίνει "Και τα λοιπά". + +Ακρωνύμιο Acronym Tag + +Το ακρωνύμιο κυρ σημαίνει "Κύριος". + +Big Tag + +Αυτό είναι μεγάλο θέμα + +Cite Tag + +"Φάε το φαϊ σου" --Όλες οι μαμάδες + +Code Tag + +This tag styles blocks of code. +.post-title { +margin: 0 0 5px; +font-weight: bold; +font-size: 38px; +line-height: 1.2; +και μία γραμμή με πολύ πάρα πολύ υπερβολικά πάρα πολύ μεγάλο κείμενο που πρέπει να δούμε πως το χειρίζεται η γραμματοσειρά και αν ξεχειλίζει από τις γραμμές και δημιουργεί πρόβλημα; +} + +Διαγραφή Delete Tag + +Μπορείτε να διαγράφεται κείμενο, αλλά δεν συνιστάται. + +Έμφαση Emphasize Tag + +Θα πρέπει να κάνει ιταλικ italicize το κείμενο. + +Εισαγωγή Insert Tag + +Αυτό το tag υποδηλώνει εισηγμένο inserted κείμενο. + +Keyboard Tag + +Αυτό το ελάχιστο γνωστό κείμενο πληκτρολογίου keyboard Tag, συνήθως μορφοποιείται όμοια με το <κώδικα code> tag. + +Προδιαμορφωμένο Preformatted Tag +

    Ο Δρόμος που δεν διάλεξα - The Road Not Taken

    +
    Robert Frost
    +	 Δυο δρόμοι διασταυρώθηκαν σ' ένα χρυσαφένιο δάσος ,
    +	 Και προς λύπη μου και τους δυο τα πόδια μου να ταξιδέψουν δεν μπορούσαν
    +	 Κι επί μακρόν εστάθηκα , καθώς ένας ήμουν ταξιδευτής μονάχος ,
    +	 κι έστρεψα το βλέμμα μου στον πρώτο όσο να χαθεί στο βάθος
    +	 μέχρι εκεί που χάνονταν στα άγρια χόρτα που βλαστούσαν.
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	και μία μακριά, πάρα πολύ μακριά, υπερβολικά μακροσκελής δίχως νόημα πρόταση για να δούμε πως το χειρίζεται το θέμα εμφάνισης και αν αναδιπλώνεται, κρύβεται ή ξεχειλίζει;
    +
    +Quote Tag for short, inline quotes + +Προγραμματιστές, προγραμματιστές, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +Αυτή η ετικέτα είναι με διαγράμμιση strike-through κείμενο text. + +Μικρά Small Tag + +Αυτή η ετικέτα είναι μικρότερο smaller κείμενο text. + +Strong Tag + +Αυτή η ετικέτα δείχνει έντονο bold κείμενο text. + +Subscript Tag + +Getting our science styling on with H2 δύοO, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2 δύο, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +Αυτή η ετικέτα δείχνει τυλετυπος teletype κείμενο, which is usually styled like the <κώδικα code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +Αυτή η ετικέτα δείχνει υπογράμμιση underlined text. + +Variable Tag + +Αυτή η ετικέτα δείχνει παράμετροι variables.]]>
    + + 1809 + + + + + + + 0 + 0 + + + 0 + + + + + + + + +
    + + Επίπεδο 2 -Second Greek level + https://wpthemetestdata.wordpress.com//greek/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-2/ + Fri, 14 Feb 2020 10:31:47 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1811 + + + + 1811 + + + + + + + 1809 + 0 + + + 0 + + + + + + + + + + + Επίπεδο 3 + https://wpthemetestdata.wordpress.com/greek/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-2/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-3/ + Fri, 14 Feb 2020 10:32:50 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1813 + + + + 1813 + + + + + + + 1811 + 0 + + + 0 + + + + + + + + + + + <![CDATA[WP 6.1 Font size scale]]> + https://wpthemetestdata.wordpress.com/wp-6-1-font-size-scale/ + Mon, 16 Jan 2023 07:08:31 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-font-size-scale/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Small H2 Heading

    + + + +

    Medium H2 Heading

    + + + +

    Large H2 Heading

    + + + +

    Extra Large H2 Heading

    + + + +

    Small paragraph

    + + + +

    Medium paragraph

    + + + +

    Large paragraph

    + + + +

    Extra Large paragraph

    +]]> +
    + + 163 + + + + + + + + + 0 + 0 + + + 0 + + + + + + +
    + + <![CDATA[WP 6.1 spacing presets]]> + https://wpthemetestdata.wordpress.com/wp-6-1-spacing-presets/ + Mon, 16 Jan 2023 06:56:53 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-spacing-presets/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    On this page, some group blocks have border or background color set to increase visibility.

    + + + +
    +

    This group has a no background color and no additional spacing set.

    +
    + + + +
    +

    This group has a background color but no additional spacing set.

    +
    + + + +
    +

    This group has a 1px border and padding preset 1

    +
    + + + +
    +

    This group has padding preset 1

    +
    + + + +
    +

    This group has a 1px border and padding preset 2

    +
    + + + +
    +

    This group has a background color and padding preset 3

    +
    + + + +
    +

    This group has a background color and padding preset 4

    +
    + + + +
    +

    This group has a background color and padding preset 5

    +
    + + + +
    +

    This group has a background color and padding preset 6

    +
    + + + +
    +

    This group has a background color and padding preset 7

    +
    + + + +
    +

    This group has padding preset 7

    +
    + + + +
    +

    This group has a background color and margin preset 1

    +
    + + + +
    +

    This group has a background color and margin preset 2

    +
    + + + +
    +

    This group has a background color and margin preset 3

    +
    + + + +
    +

    This group has a background color and margin preset 4

    +
    + + + +
    +

    This group has a background color and margin preset 5

    +
    + + + +
    +

    This group has a background color and margin preset 6

    +
    + + + +
    +

    This group has a background color and margin preset 7

    +
    + + + +
    +

    This group has a 1px border, padding preset 4 and margin preset 4

    +
    + + + +
    +

    This group has padding preset 4 and margin preset 4

    +
    +]]>
    + + 150 + + + + + + + + + 0 + 0 + + + 0 + + + + + + +
    + + <![CDATA[WP 6.1 Theme block category]]> + https://wpthemetestdata.wordpress.com/wp-6-1-theme-block-category/ + Fri, 13 Jan 2023 18:38:05 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-theme-block-category/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Navigation block with page list:

    + + + + + + + +

    Site logo:

    + + + + + +

    Site title:

    + + + + + +

    Tagline block:

    + + + + + +

    Query loop "Title & Date" variation:

    + + + +
    + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Title & Excerpt" variation:

    + + + +
    + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Title, Date & Excerpt" variation:

    + + + +
    + + + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Image, Date & Title" variation:

    + + + +
    + + + + + + + + + + + + + + + + + +

    + +
    + + + +

    Avatar block:

    + + + + + +

    Post title block:

    + + + + + +

    Post excerpt:

    + + + + + +

    Post featured image:

    + + + + + +

    Post author:

    + + + + + +

    Post date:

    + + + + + +

    Categories:

    + + + + + +

    Tags:

    + + + + + +

    Next post & previous post:

    + + + + + + + +

    Read More:

    + + + + + +

    Comments block:

    + + + +
    + + + +
    +
    + + + +
    + + +
    + +
    + + + + +
    +
    + + + + + + + + + + + + + + +

    Post comments form block:

    +
    + + + + + +

    Login/out:

    + + + + + + + + + + + +

    Author biography block:

    + + + + + + + + + +

    Term description, archive title, search results title can not be shown on single posts.

    +]]>
    + + 51 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + + + + 2 + + + https://wpthemetestdata.wordpress.com/ + + + + + + + 0 + 0 + +
    + + <![CDATA[WP 6.1 Widgets block category]]> + https://wpthemetestdata.wordpress.com/wp-6-1-widgets-block-category/ + Fri, 13 Jan 2023 18:22:21 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-widgets-block-category/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Archives block:

    + + + + + + + +

    Categories list:

    + + + + + +

    Custom HTML:

    + + + + test + + + +

    Latest comments:

    + + + + + +

    Latest posts:

    + + + + + +

    Page list block:

    + + + + + +

    RSS block:

    + + + + + + + + + + + + + + + +

    Shortcode block:

    + + + + + +

    Social links:

    + + + + + + + + + + + + + + + +

    Tag cloud:

    + + + + + +

    +]]>
    + + 34 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Design category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-design-category-blocks/ + Fri, 13 Jan 2023 18:03:23 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-design-category-blocks/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + + + + + +
    +
    +

    One single column inside a columns block.

    +
    +
    + + + +
    +
    +

    Column one. The background color is on the single column.

    +
    + + + +
    +

    Column two

    +
    +
    + + + +
    +
    +

    Column one. The background color is on the parent columns block.

    +
    + + + +
    +

    Column two

    +
    + + + +
    +

    Column three

    +
    +
    + + + +
    +

    Group with paragraph inside. Below are the group block variations:

    +
    + + + +
    +

    Row

    + + + +

    Row

    +
    + + + +
    +

    Stack

    + + + +

    Stack

    +
    + + + +

    More block:

    + + + + + + + +

    Page break:

    + + + + + + + +

    Separators:

    + + + +

    Default style, no alignment:

    + + + +
    + + + +

    Default style, wide alignment:

    + + + +
    + + + +

    Default style, full width:

    + + + +
    + + + +

    Default style, align center:

    + + + +
    + + + +

    Wide style, no alignment:

    + + + +
    + + + +

    Wide style, wide alignment:

    + + + +
    + + + +

    Wide style, full width:

    + + + +
    + + + +

    Wide style, align center:

    + + + +
    + + + +

    Dotted style, no alignment:

    + + + +
    + + + +

    Dotted style, wide alignment:

    + + + +
    + + + +

    Dotted style, full width:

    + + + +
    + + + +

    Dotted style, align center:

    + + + +
    + + + +

    Spacer:

    + + + + +]]>
    + + 24 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Media category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-media-category-blocks/ + Fri, 13 Jan 2023 18:02:28 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-media-category-blocks/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Image block:

    + + + +
    dsc20050727_091048_222
    + + + +

    Gallery:

    + + + + + + + +

    Audio:

    + + + +
    + + + +

    Cover:

    + + + +
    Wind Farm
    +

    Write title...

    +
    + + + +
    +

    Fixed background

    +
    + + + +
    +

    Repeated background

    +
    + + + +
    +

    Fixed and Repeated background

    +
    + + + +
    dsc20050727_091048_222
    +

    Duotone

    +
    + + + +
    Rain Ripples
    +

    Top left

    +
    + + + +
    Rain Ripples
    +

    Top center

    +
    + + + +
    Rain Ripples
    +

    Top right

    +
    + + + +
    Rain Ripples
    +

    Center left

    +
    + + + +
    Rain Ripples
    +

    Center right

    +
    + + + +
    Rain Ripples
    +

    Bottom left

    +
    + + + +
    Rain Ripples
    +

    Bottom center

    +
    + + + +
    Rain Ripples
    +

    Bottom right

    +
    + + + + + + + +
    Boardwalk
    +

    This is the Media & Text block with an image on the left.

    +
    + + + +
    Image Alignment 1200x4002
    +

    This is the Media & Text block with a cropped image on the left

    +
    + + + +
    +

    This is the Media & Text block with a video the right.

    +
    + + + +
    +]]>
    + + 21 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Text category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-text-category-blocks/ + Fri, 13 Jan 2023 17:46:19 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-text-category-blocks + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Paragraph

    + + + +

    H1 Heading

    + + + +

    H2 Heading

    + + + +

    H3 Heading

    + + + +

    H4 Heading

    + + + +
    H5 Heading
    + + + +
    H6 Heading
    + + + +
      +
    • List
    • + + + +
    • List
    • +
    + + + +
      +
    1. List
    2. + + + +
    3. List
    4. +
    + + + +
      +
    1. List +
        +
      • List
      • +
      +
    2. +
    + + + +
    +

    Quote block

    +citation
    + + +

    classic block

    + + +
    code block
    + + + +
    Preformatted block
    + + + +

    Pull quote

    Citation
    + + + +
    table celltable cell two
    table cell threetable cell four
    Table caption
    + + + +
    header label oneheader label two
    table celltable cell two
    table cell threetable cell four
    footer label onefooter label two
    Table caption
    + + + +
    Verse block
    +]]>
    + + 8 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + +
    + + Keyboard navigation + https://wpthemetestdata.wordpress.com/2018/10/20/keyboard-navigation/ + Sun, 21 Oct 2018 03:03:48 +0000 + + https://wpthemetestdata.wordpress.com/?p=1724 + + +

    There are many different ways to use the web besides a mouse and a pair of eyes. Users navigate for example with a keyboard only or with their voice.

    + + + +

    All the functionality, including menus, links and forms should work using a keyboard only. This is essential for all assistive technology to work properly. The only way to test this, at the moment, is manually. The best time to test this is during development.

    + + + +

    How to keyboard test:

    + + + +

    Tab through your pages, links and forms to do the following tests:

    + + + +
    • Confirm that all links can be reached and activated via keyboard, including any in dropdown submenus.
    • Confirm that all links get a visible focus indicator (e.g., a border highlight).
    • Confirm that all visually hidden links (e.g. skip links) become visible when in focus.
    • Confirm that all form input fields and buttons can be accessed and used via keyboard.
    • Confirm that all interactions, buttons, and other controls can be triggered via keyboard — any action you can complete with a mouse must also be performable via keyboard.
    • Confirm that focus doesn’t move in unexpected ways around the page.
    • Confirm that using shift+tab to move backwards works as well.
    + + + +

    Resources

    + + + + +]]>
    + + 1724 + + + + + + + 0 + 0 + + + + 0 +
    + + About The Tests + https://wpthemetestdata.wordpress.com/about/ + Mon, 26 Jul 2010 02:40:01 +0000 + themedemos + https://wpthemetestdata.wordpress.com/about/ + + WordPress Theme Development Resources + +
      +
    1. See the WordPress Theme Developer Handbook for examples of best practices.
    2. +
    3. See the WordPress Code Reference for more information about WordPress' functions, classes, methods, and hooks.
    4. +
    5. See Theme Unit Test for a robust test suite for your Theme and get the latest version of the test data you see here.
    6. +
    7. See Releasing Your Theme for a guide to submitting your Theme to the Theme Directory.
    8. +
    ]]>
    + + 2 + 2010-07-25 19:40:01 + 2010-07-26 02:40:01 + closed + closed + about + publish + 0 + 1 + page + + 0 +
    + + Lorem Ipsum + https://wpthemetestdata.wordpress.com/lorem-ipsum/ + Tue, 04 Sep 2007 16:52:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/lorem-ipsum/ + + + + 146 + 2007-09-04 09:52:50 + 2007-09-04 16:52:50 + closed + closed + lorem-ipsum + publish + 0 + 7 + page + + 0 + + + Page with comments + https://wpthemetestdata.wordpress.com/about/page-with-comments/ + Tue, 04 Sep 2007 17:47:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/page-with-comments/ + + + + 155 + 2007-09-04 10:47:47 + 2007-09-04 17:47:47 + open + closed + page-with-comments + publish + 2 + 3 + page + + 0 + + 167 + + anon@example.com + + + 2007-09-04 10:49:28 + 2007-09-04 00:49:28 + + 1 + + 0 + 0 + + + 168 + + tellyworth+test2@example.com + + + 2007-09-04 10:49:03 + 2007-09-04 00:49:03 + + 1 + + 0 + 0 + + + 169 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2007-09-04 10:48:51 + 2007-09-04 17:48:51 + + 1 + + 0 + 0 + + + 1017 + + themereviewteam@gmail.com + + + 2014-12-10 01:56:24 + 2014-12-10 08:56:24 + + 0 + + 168 + 0 + + + + Page with comments disabled + https://wpthemetestdata.wordpress.com/about/page-with-comments-disabled/ + Tue, 04 Sep 2007 17:48:10 +0000 + themedemos + https://wpthemetestdata.wordpress.com/page-with-comments-disabled/ + + + + 156 + 2007-09-04 10:48:10 + 2007-09-04 17:48:10 + closed + closed + page-with-comments-disabled + publish + 2 + 4 + page + + 0 + + + Level 3 + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3/ + Tue, 11 Dec 2007 06:23:16 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-3/ + + + + 172 + 2007-12-11 16:23:16 + 2007-12-11 06:23:16 + closed + closed + level-3 + publish + 173 + 0 + page + + 0 + + + Level 2 + https://wpthemetestdata.wordpress.com/level-1/level-2/ + Tue, 11 Dec 2007 06:23:33 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-2/ + + + + 173 + 2007-12-11 16:23:33 + 2007-12-11 06:23:33 + closed + closed + level-2 + publish + 174 + 0 + page + + 0 + + + Level 1 + https://wpthemetestdata.wordpress.com/level-1/ + Tue, 11 Dec 2007 23:25:40 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-1/ + + + + 174 + 2007-12-11 16:25:40 + 2007-12-11 23:25:40 + closed + closed + level-1 + publish + 0 + 5 + page + + 0 + + + Clearing Floats + https://wpthemetestdata.wordpress.com/about/clearing-floats/ + Sun, 01 Aug 2010 16:42:26 +0000 + themedemos + https://wpthemetestdata.wordpress.com/ + + This is the second page]]> + + 501 + 2010-08-01 09:42:26 + 2010-08-01 16:42:26 + closed + closed + clearing-floats + publish + 2 + 2 + page + + 0 + + + canola2 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/canola2/ + Mon, 16 Jun 2008 13:17:54 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/canola2.jpg + + + + 611 + 2008-06-16 06:17:54 + 2008-06-16 13:17:54 + open + closed + canola2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/canola2.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + dsc20050727_091048_222 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050727_091048_222/ + Mon, 16 Jun 2008 13:20:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050727_091048_222.jpg + + + + 616 + 2008-06-16 06:20:37 + 2008-06-16 13:20:37 + open + closed + dsc20050727_091048_222 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050727_091048_222.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + dsc20050813_115856_52 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050813_115856_52/ + Mon, 16 Jun 2008 13:20:57 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050813_115856_52.jpg + + + + 617 + 2008-06-16 06:20:57 + 2008-06-16 13:20:57 + open + closed + dsc20050813_115856_52 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050813_115856_52.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Front Page + https://wpthemetestdata.wordpress.com/front-page/ + Sat, 21 May 2011 01:49:43 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=701 + + + + 701 + 2011-05-20 18:49:43 + 2011-05-21 01:49:43 + open + closed + front-page + publish + 0 + 0 + page + + 0 + + + a Blog page + https://wpthemetestdata.wordpress.com/blog/ + Sat, 21 May 2011 01:51:43 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=703 + + + + 703 + 2011-05-20 18:51:43 + 2011-05-21 01:51:43 + open + closed + blog + publish + 0 + 0 + page + + 0 + + 1016 + + example@example.com + + + 2014-11-29 21:03:05 + 2014-11-30 04:03:05 + + 0 + + 0 + 0 + + + + Bell on Wharf + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/100_5478/ + Mon, 16 Jun 2008 21:34:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/100_5478.jpg + + + + 754 + 2008-06-16 14:34:50 + 2008-06-16 21:34:50 + open + closed + 100_5478 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/100_5478.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Golden Gate Bridge + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/100_5540/ + Mon, 16 Jun 2008 21:35:55 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/100_5540.jpg + + + + 755 + 2008-06-16 14:35:55 + 2008-06-16 21:35:55 + open + closed + 100_5540 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/100_5540.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sunburst Over River + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/cep00032/ + Mon, 16 Jun 2008 21:41:24 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/cep00032.jpg + + + + 756 + 2008-06-16 14:41:24 + 2008-06-16 21:41:24 + open + closed + cep00032 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/cep00032.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Boardwalk + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dcp_2082/ + Mon, 16 Jun 2008 21:41:27 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dcp_2082.jpg + + + + 757 + 2008-06-16 14:41:27 + 2008-06-16 21:41:27 + open + closed + dcp_2082 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dcp_2082.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Yachtsody in Blue + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc03149/ + Mon, 16 Jun 2008 21:41:33 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc03149.jpg + + + + 758 + 2008-06-16 14:41:33 + 2008-06-16 21:41:33 + open + closed + dsc03149 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc03149.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Rain Ripples + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc04563/ + Mon, 16 Jun 2008 21:41:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc04563.jpg + + + + 759 + 2008-06-16 14:41:37 + 2008-06-16 21:41:37 + open + closed + dsc04563 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc04563.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sydney Harbor Bridge + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc09114/ + Mon, 16 Jun 2008 21:41:41 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc09114.jpg + + + + 760 + 2008-06-16 14:41:41 + 2008-06-16 21:41:41 + open + closed + dsc09114 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc09114.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Wind Farm + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050102_192118_51/ + Mon, 16 Jun 2008 21:41:42 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050102_192118_51.jpg + + + + 761 + 2008-06-16 14:41:42 + 2008-06-16 21:41:42 + open + closed + dsc20050102_192118_51 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050102_192118_51.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Antique Farm Machinery + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20051220_160808_102/ + Mon, 16 Jun 2008 21:41:45 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_160808_102.jpg + + + + 762 + 2008-06-16 14:41:45 + 2008-06-16 21:41:45 + open + closed + dsc20051220_160808_102 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_160808_102.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Rusty Rail + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20051220_173257_119/ + Mon, 16 Jun 20081 21:47:17 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_173257_119.jpg + + + + 764 + 2008-06-16 14:47:17 + 2008-06-16 21:47:17 + open + closed + dsc20051220_173257_119 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_173257_119.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sea and Rocks + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dscn3316/ + Mon, 16 Jun 2008 21:47:20 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dscn3316.jpg + + + + 765 + 2008-06-16 14:47:20 + 2008-06-16 21:47:20 + open + closed + dscn3316 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dscn3316.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Big Sur + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/michelle_049/ + Mon, 16 Jun 2008 21:47:23 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/michelle_049.jpg + + + + 766 + 2008-06-16 14:47:23 + 2008-06-16 21:47:23 + open + closed + michelle_049 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/michelle_049.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Windmill + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dcf-1-0/ + Mon, 16 Jun 2008 21:47:26 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/windmill.jpg + + + + 767 + 2008-06-16 14:47:26 + 2008-06-16 21:47:26 + open + closed + dcf-1-0 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/windmill.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Huatulco Coastline + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/alas-i-have-found-my-shangri-la/ + Mon, 16 Jun 2008 21:49:48 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0513-1.jpg + + + + 768 + 2008-06-16 14:49:48 + 2008-06-16 21:49:48 + open + closed + alas-i-have-found-my-shangri-la + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0513-1.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Brazil Beach + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_0747/ + Mon, 16 Jun 2008 21:50:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0747.jpg + + + + 769 + 2008-06-16 14:50:37 + 2008-06-16 21:50:37 + open + closed + img_0747 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0747.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Huatulco Coastline + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_0767/ + Mon, 16 Jun 2008 21:51:19 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0767.jpg + + + + 770 + 2008-06-16 14:51:19 + 2008-06-16 21:51:19 + open + closed + img_0767 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0767.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Boat Barco Texture + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_8399/ + Mon, 16 Jun 2008 21:51:57 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_8399.jpg + + + + 771 + 2008-06-16 14:51:57 + 2008-06-16 21:51:57 + open + closed + img_8399 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_8399.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Resinous + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20040724_152504_532-2/ + Mon, 04 Jun 2012 18:36:56 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg + + + + 807 + 2012-06-04 11:36:56 + 2012-06-04 18:36:56 + open + closed + dsc20040724_152504_532-2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg + + _attachment_original_parent_id + + + + + St. Louis Blues + https://wpthemetestdata.wordpress.com/2010/07/02/post-format-audio/originaldixielandjazzbandwithalbernard-stlouisblues/ + Mon, 16 Jun 2008 16:49:29 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3 + + + + 821 + 2008-06-16 09:49:29 + 2008-06-16 16:49:29 + open + closed + originaldixielandjazzbandwithalbernard-stlouisblues + inherit + 587 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3 + + + OLYMPUS DIGITAL CAMERA + https://wpthemetestdata.wordpress.com/about/clearing-floats/olympus-digital-camera/ + Thu, 05 Aug 2010 18:07:34 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2010/08/manhattansummer.jpg + + + + 827 + 2010-08-05 11:07:34 + 2010-08-05 18:07:34 + open + closed + olympus-digital-camera + inherit + 501 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2010/08/manhattansummer.jpg + + + Image Alignment 580x300 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-580x300/ + Fri, 15 Mar 2013 00:44:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg + + + + 967 + 2013-03-14 19:44:50 + 2013-03-15 00:44:50 + open + open + image-alignment-580x300 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Image Alignment 150x150 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-150x150/ + Fri, 15 Mar 2013 00:44:49 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg + + + + 968 + 2013-03-14 19:44:49 + 2013-03-15 00:44:49 + open + open + image-alignment-150x150 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Horizontal Featured Image + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-horizontal/featured-image-horizontal-2/ + Fri, 15 Mar 2013 20:40:38 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-horizontal.jpg + + + + 1022 + 2013-03-15 15:40:38 + 2013-03-15 20:40:38 + open + open + featured-image-horizontal-2 + inherit + 1011 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-horizontal.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + I Am Worth Loving Wallpaper + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/soworthloving-wallpaper/ + Thu, 14 Mar 2013 14:58:24 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/soworthloving-wallpaper.jpg + + + + 1023 + 2013-03-14 09:58:24 + 2013-03-14 14:58:24 + open + open + soworthloving-wallpaper + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/soworthloving-wallpaper.jpg + + _wp_attachment_image_alt + + + + + Image Alignment 300x200 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-300x200/ + Fri, 15 Mar 2013 00:44:49 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg + + + + 1025 + 2013-03-14 19:44:49 + 2013-03-15 00:44:49 + open + open + image-alignment-300x200 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Vertical Featured Image + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-vertical/featured-image-vertical-2/ + Fri, 15 Mar 2013 20:41:09 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-vertical.jpg + + + + 1027 + 2013-03-15 15:41:09 + 2013-03-15 20:41:09 + open + open + featured-image-vertical-2 + inherit + 1016 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-vertical.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Image Alignment 1200x4002 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-1200x4002/ + Fri, 15 Mar 2013 00:44:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg + + + + 1029 + 2013-03-14 19:44:50 + 2013-03-15 00:44:50 + open + open + image-alignment-1200x4002 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Unicorn Wallpaper + https://wpthemetestdata.wordpress.com/2010/08/08/post-format-image/unicorn-wallpaper/ + Fri, 14 Dec 2012 03:10:39 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2012/12/unicorn-wallpaper.jpg + + + + 1045 + 2012-12-13 22:10:39 + 2012-12-14 03:10:39 + open + open + unicorn-wallpaper + inherit + 1158 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2012/12/unicorn-wallpaper.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Pages + https://wpthemetestdata.wordpress.com/2013/04/09/pages/ + Tue, 09 Apr 2013 13:37:45 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/pages + + + + 1100 + 2013-04-09 06:37:45 + 2013-04-09 13:37:45 + open + closed + pages + publish + 0 + 2 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Categories + https://wpthemetestdata.wordpress.com/2013/04/09/categories/ + Tue, 09 Apr 2013 13:37:45 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/categories + + + + 1101 + 2013-04-09 06:37:45 + 2013-04-09 13:37:45 + open + closed + categories + publish + 0 + 10 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1112/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1112</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test markup tags and styles.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1112</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1112</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>21</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[4675]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1115/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1115</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test post formats.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1115</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1115</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>24</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[44090582]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1118/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1118</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test unpublished posts.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1118</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1118</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>28</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[54090]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>Depth + https://wpthemetestdata.wordpress.com/2013/04/09/depth/ + Tue, 09 Apr 2013 13:37:46 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/depth + + + + 1119 + 2013-04-09 06:37:46 + 2013-04-09 13:37:46 + open + closed + depth + publish + 0 + 29 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 01 + https://wpthemetestdata.wordpress.com/2013/04/09/level-01/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-01 + + + + 1120 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-01 + publish + 0 + 30 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 02 + https://wpthemetestdata.wordpress.com/2013/04/09/level-02/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-02 + + + + 1121 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-02 + publish + 0 + 31 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 03 + https://wpthemetestdata.wordpress.com/2013/04/09/level-03/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-03 + + + + 1122 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-03 + publish + 0 + 32 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 04 + https://wpthemetestdata.wordpress.com/2013/04/09/level-04/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-04 + + + + 1123 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-04 + publish + 0 + 33 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 05 + https://wpthemetestdata.wordpress.com/2013/04/09/level-05/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-05 + + + + 1124 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-05 + publish + 0 + 34 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 06 + https://wpthemetestdata.wordpress.com/2013/04/09/level-06/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-06 + + + + 1125 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-06 + publish + 0 + 35 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 07 + https://wpthemetestdata.wordpress.com/2013/04/09/level-07/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-07 + + + + 1126 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-07 + publish + 0 + 36 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 08 + https://wpthemetestdata.wordpress.com/2013/04/09/level-08/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-08 + + + + 1127 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-08 + publish + 0 + 37 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 09 + https://wpthemetestdata.wordpress.com/2013/04/09/level-09/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-09 + + + + 1128 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-09 + publish + 0 + 38 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 10 + https://wpthemetestdata.wordpress.com/2013/04/09/level-10/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-10 + + + + 1129 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-10 + publish + 0 + 39 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Advanced + https://wpthemetestdata.wordpress.com/2013/04/09/advanced/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/advanced + + + + 1130 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + advanced + publish + 0 + 40 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu Description + https://wpthemetestdata.wordpress.com/2013/04/09/menu-description/ + Tue, 09 Apr 2013 13:37:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-description + + + + 1142 + 2013-04-09 06:37:50 + 2013-04-09 13:37:50 + open + closed + menu-description + publish + 0 + 44 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu Title Attribute + https://wpthemetestdata.wordpress.com/2013/04/09/menu-title-attribute/ + Tue, 09 Apr 2013 13:37:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-title-attribute + + + + 1143 + 2013-04-09 06:37:50 + 2013-04-09 13:37:50 + open + closed + menu-title-attribute + publish + 0 + 41 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu CSS Class + https://wpthemetestdata.wordpress.com/2013/04/09/menu-css-class/ + Tue, 09 Apr 2013 13:37:51 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-css-class + + + + 1144 + 2013-04-09 06:37:51 + 2013-04-09 13:37:51 + open + closed + menu-css-class + publish + 0 + 42 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + New Window / Tab + https://wpthemetestdata.wordpress.com/2013/04/09/new-window-tab/ + Tue, 09 Apr 2013 13:37:51 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/new-window-tab + + + + 1145 + 2013-04-09 06:37:51 + 2013-04-09 13:37:51 + open + closed + new-window-tab + publish + 0 + 43 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1263/</link> + <pubDate>Tue, 09 Apr 2013 13:38:00 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1263</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1263</wp:post_id> + <wp:post_date>2013-04-09 06:38:00</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:38:00</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1263</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1100]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1264/</link> + <pubDate>Tue, 09 Apr 2013 13:38:01 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1264</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1264</wp:post_id> + <wp:post_date>2013-04-09 06:38:01</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:38:01</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1264</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1100]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>twitter.com + https://wpthemetestdata.wordpress.com/2018/10/20/twitter-com/ + Sun, 21 Oct 2018 02:57:33 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/twitter-com/ + + + + 1719 + + + + + + + 0 + 1 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + facebook.com + https://wpthemetestdata.wordpress.com/2018/10/20/facebook-com/ + Sun, 21 Oct 2018 02:57:35 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/facebook-com/ + + + + 1720 + + + + + + + 0 + 2 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + github.com + https://wpthemetestdata.wordpress.com/2018/10/20/github-com/ + Sun, 21 Oct 2018 02:57:37 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/github-com + + + + 1721 + + + + + + + 0 + 3 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + instagram.com + https://wpthemetestdata.wordpress.com/2018/10/20/instagram-com + Sun, 21 Oct 2018 02:57:41 +000 + themereviewteam> + https://wpthemetestdata.wordpress.com/2018/10/20/instagram-com + + + + 1723 + + + + + + + 0 + 5 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + linkedin.com + https://wpthemetestdata.wordpress.com/2018/10/20/linkedin-com/ + Sun, 21 Oct 2018 02:57:39 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/linkedin-com/ + + + + 1722 + + + + + + + 0 + 4 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + triforce-wallpaper + https://wpthemetestdata.wordpress.com/2010/08/07/post-format-image-caption/triforce-wallpaper/ + Tue, 17 Aug 2010 20:17:31 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2010/08/triforce-wallpaper.jpg + + + + 1628 + 2010-08-17 13:17:31 + 2010-08-17 20:17:31 + open + closed + triforce-wallpaper + inherit + 1163 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2010/08/triforce-wallpaper.jpg + + + + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1636/</link> + <pubDate>Tue, 07 May 2013 19:54:30 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1636</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1636</wp:post_id> + <wp:post_date>2013-05-07 12:54:30</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:30</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1636</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1637/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1637</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1637</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1637</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1638/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1638</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1638</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1638</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1639/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1639</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1639</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1639</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1640/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1640</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1640</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1640</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1641/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1641</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1641</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1641</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1643/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1643</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1643</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1643</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1644/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1644</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1644</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1644</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[701]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1645/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1645</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1645</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1645</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1646/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1646</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1646</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1646</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1647/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1647</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1647</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1647</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1648/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1648</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1648</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1648</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1649/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1649</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1649</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1649</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1650/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1650</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1650</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1650</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1651/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1651</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1651</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1651</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>10</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[174]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1652/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1652</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1652</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1652</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>11</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[173]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1653/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1653</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1653</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1653</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>12</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[172]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1654/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1654</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1654</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1654</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>13</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[746]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1655/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1655</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1655</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1655</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>14</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[748]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1656/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1656</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1656</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1656</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>15</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[742]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1657/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1657</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1657</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1657</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>16</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[744]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1658/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1658</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1658</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1658</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>17</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1659/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1659</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1659</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1659</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>18</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[733]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1660/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1660</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1660</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1660</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>19</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[735]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1643/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1643</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1643</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1643</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1644/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1644</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1644</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1644</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[701]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1645/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1645</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1645</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1645</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1646/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1646</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1646</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1646</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1647/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1647</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1647</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1647</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1648/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1648</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1648</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1648</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1649/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1649</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1649</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1649</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1650/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1650</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1650</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1650</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1651/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1651</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1651</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1651</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>10</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[174]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1652/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1652</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1652</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1652</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>11</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[173]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1653/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1653</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1653</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1653</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>12</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[172]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1654/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1654</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1654</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1654</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>13</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[746]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1655/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1655</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1655</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1655</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>14</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[748]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1656/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1656</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1656</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1656</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>15</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[742]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1657/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1657</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1657</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1657</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>16</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[744]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1658/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1658</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1658</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1658</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>17</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1659/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1659</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1659</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1659</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>18</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[733]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1660/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1660</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1660</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1660</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>19</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[735]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>dsc20040724_152504_532 + https://wpthemetestdata.wordpress.com/?attachment_id=1686 + Wed, 18 Sep 2013 21:37:05 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20040724_152504_532.jpg + + + + 1686 + 2013-09-18 14:37:05 + 2013-09-18 21:37:05 + open + closed + dsc20040724_152504_532 + inherit + 0 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20040724_152504_532.jpg + + + dsc20050604_133440_34211 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050604_133440_34211/ + Wed, 18 Sep 2013 21:37:07 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20050604_133440_34211.jpg + + + + 1687 + 2013-09-18 14:37:07 + 2013-09-18 21:37:07 + open + closed + dsc20050604_133440_34211 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20050604_133440_34211.jpg + + + 2014-slider-mobile-behavior + https://wpthemetestdata.wordpress.com/?attachment_id=1690 + Wed, 04 Dec 2013 18:08:29 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/12/2014-slider-mobile-behavior.mov + + + + 1690 + 2013-12-04 11:08:29 + 2013-12-04 18:08:29 + open + closed + 2014-slider-mobile-behavior + inherit + 0 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/12/2014-slider-mobile-behavior.mov + + + dsc20050315_145007_132 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050315_145007_132-2/ + Sun, 05 Jan 2014 18:45:21 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2014/01/dsc20050315_145007_132.jpg + + + + 1691 + 2014-01-05 11:45:21 + 2014-01-05 18:45:21 + open + closed + dsc20050315_145007_132-2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2014/01/dsc20050315_145007_132.jpg + + + spectacles + https://wpthemetestdata.wordpress.com/about/clearing-floats/spectacles-2/ + Sun, 05 Jan 2014 18:45:36 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2014/01/spectacles.gif + + + + 1692 + 2014-01-05 11:45:36 + 2014-01-05 18:45:36 + open + closed + spectacles-2 + inherit + 501 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2014/01/spectacles.gif + + + Post Format: Standard + https://wpthemetestdata.wordpress.com/2010/10/05/post-format-standard/ + Tue, 05 Oct 2010 07:27:25 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=358 + + + +Mrs. Darling first heard of Peter when she was tidying up her children's minds. It is the nightly custom of every good mother after her children are asleep to rummage in their minds and put things straight for next morning, repacking into their proper places the many articles that have wandered during the day. + +If you could keep awake (but of course you can't) you would see your own mother doing this, and you would find it very interesting to watch her. It is quite like tidying up drawers. You would see her on her knees, I expect, lingering humorously over some of your contents, wondering where on earth you had picked this thing up, making discoveries sweet and not so sweet, pressing this to her cheek as if it were as nice as a kitten, and hurriedly stowing that out of sight. When you wake in the morning, the naughtiness and evil passions with which you went to bed have been folded up small and placed at the bottom of your mind and on the top, beautifully aired, are spread out your prettier thoughts, ready for you to put on. + +I don't know whether you have ever seen a map of a person's mind. Doctors sometimes draw maps of other parts of you, and your own map can become intensely interesting, but catch them trying to draw a map of a child's mind, which is not only confused, but keeps going round all the time. There are zigzag lines on it, just like your temperature on a card, and these are probably roads in the island, for the Neverland is always more or less an island, with astonishing splashes of colour here and there, and coral reefs and rakish-looking craft in the offing, and savages and lonely lairs, and gnomes who are mostly tailors, and caves through which a river runs, and princes with six elder brothers, and a hut fast going to decay, and one very small old lady with a hooked nose. It would be an easy map if that were all, but there is also first day at school, religion, fathers, the round pond, needle-work, murders, hangings, verbs that take the dative, chocolate pudding day, getting into braces, say ninety-nine, three-pence for pulling out your tooth yourself, and so on, and either these are part of the island or they are another map showing through, and it is all rather confusing, especially as nothing will stand still. + +Of course the Neverlands vary a good deal. John's, for instance, had a lagoon with flamingoes flying over it at which John was shooting, while Michael, who was very small, had a flamingo with lagoons flying over it. John lived in a boat turned upside down on the sands, Michael in a wigwam, Wendy in a house of leaves deftly sewn together. John had no friends, Michael had friends at night, Wendy had a pet wolf forsaken by its parents, but on the whole the Neverlands have a family resemblance, and if they stood still in a row you could say of them that they have each other's nose, and so forth. On these magic shores children at play are for ever beaching their coracles [simple boat]. We too have been there; we can still hear the sound of the surf, though we shall land no more. + +Of all delectable islands the Neverland is the snuggest and most compact, not large and sprawly, you know, with tedious distances between one adventure and another, but nicely crammed. When you play at it by day with the chairs and table-cloth, it is not in the least alarming, but in the two minutes before you go to sleep it becomes very real. That is why there are night-lights. + +Occasionally in her travels through her children's minds Mrs. Darling found things she could not understand, and of these quite the most perplexing was the word Peter. She knew of no Peter, and yet he was here and there in John and Michael's minds, while Wendy's began to be scrawled all over with him. The name stood out in bolder letters than any of the other words, and as Mrs. Darling gazed she felt that it had an oddly cocky appearance.]]> + + 358 + 2010-10-05 00:27:25 + 2010-10-05 07:27:25 + closed + closed + post-format-standard + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Gallery + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/ + Fri, 10 Sep 2010 14:24:14 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=555 + + + +You can use this page to test the Theme's handling of the gallery shortcode, including the columns parameter, from 1 to 9 columns. Themes are only required to support the default setting (3 columns), so this page is entirely optional. +

    One Column

    +[gallery columns="1"] +

    Two Columns

    +[gallery columns="2"] +

    Three Columns

    +[gallery columns="3"] +

    Four Columns

    +[gallery columns="4"] +

    Five Columns

    +[gallery columns="5"] +

    Six Columns

    +[gallery columns="6"] +

    Seven Columns

    +[gallery columns="7"] +

    Eight Columns

    +[gallery columns="8"] +

    Nine Columns

    +[gallery columns="9"]]]>
    + + 555 + 2010-09-10 07:24:14 + 2010-09-10 14:24:14 + closed + closed + post-format-gallery + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Post Format: Aside + https://wpthemetestdata.wordpress.com/2010/05/09/post-format-aside/ + Sun, 09 May 2010 14:51:54 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=559 + + + + 559 + 2010-05-09 07:51:54 + 2010-05-09 14:51:54 + closed + closed + post-format-aside + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Chat + https://wpthemetestdata.wordpress.com/2010/01/08/post-format-chat/ + Fri, 08 Jan 2010 14:59:31 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=562 + + + + 562 + 2010-01-08 07:59:31 + 2010-01-08 14:59:31 + closed + closed + post-format-chat + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Link + https://wpthemetestdata.wordpress.com/2010/03/07/post-format-link/ + Sun, 07 Mar 2010 15:06:53 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=565 + + The WordPress Theme Review Team Website]]> + + 565 + 2010-03-07 08:06:53 + 2010-03-07 15:06:53 + closed + closed + post-format-link + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Image (Linked) + https://wpthemetestdata.wordpress.com/2010/08/06/post-format-image-linked/ + Fri, 06 Aug 2010 15:09:39 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=568 + + chunk of resinous blackboy husk[/caption] +]]> + + 568 + 2010-08-06 08:09:39 + 2010-08-06 15:09:39 + closed + closed + post-format-image-linked + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Quote + https://wpthemetestdata.wordpress.com/2010/02/05/post-format-quote/ + Fri, 05 Feb 2010 15:13:15 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=575 + + Only one thing is impossible for God: To find any sense in any copyright law on the planet. +Mark Twain]]> + + 575 + 2010-02-05 08:13:15 + 2010-02-05 15:13:15 + closed + closed + post-format-quote + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Status + https://wpthemetestdata.wordpress.com/2010/04/04/post-format-status/ + Sun, 04 Apr 2010 15:21:24 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=579 + + + + 579 + 2010-04-04 08:21:24 + 2010-04-04 15:21:24 + closed + closed + post-format-status + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Video (WordPress.tv) + https://wpthemetestdata.wordpress.com/2010/06/03/post-format-video-wordpresstv/ + Thu, 03 Jun 2010 15:25:58 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=582 + + instructions in the Codex.]]> + + 582 + 2010-06-03 08:25:58 + 2010-06-03 15:25:58 + closed + closed + post-format-video-wordpresstv + publish + 0 + 0 + post + + 0 + + + + + + + + + _oembed_4321638fc1a6fee26443f7fe8a70a871 + ]]> + + + _oembed_29351fff85c1be1d1e9a965a0332a861 + ]]> + + + _oembed_9fcc86d7d9398ff736577f922307f64d + ]]> + + + _oembed_366237792d32461d0052efb2edec37f5 + ]]> + + + _oembed_37fdfe862c13c46a93be2921279bf675 + ]]> + + + + Post Format: Audio + https://wpthemetestdata.wordpress.com/2010/07/02/post-format-audio/ + Fri, 02 Jul 2010 15:36:44 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=587 + + St. Louis Blues + +Audio shortcode: + +[audio https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3]]]> + + 587 + 2010-07-02 08:36:44 + 2010-07-02 15:36:44 + closed + closed + post-format-audio + publish + 0 + 0 + post + + 0 + + + + + + + + enclosure + + + + + Page A + https://wpthemetestdata.wordpress.com/page-a/ + Fri, 24 Jun 2011 01:38:52 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=733 + + + + 733 + 2011-06-23 18:38:52 + 2011-06-24 01:38:52 + open + closed + page-a + publish + 0 + 10 + page + + 0 + + + Page B + https://wpthemetestdata.wordpress.com/page-b/ + Fri, 24 Jun 2011 01:39:14 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=735 + + + + 735 + 2011-06-23 18:39:14 + 2011-06-24 01:39:14 + open + closed + page-b + publish + 0 + 11 + page + + 0 + + + Level 2a + https://wpthemetestdata.wordpress.com/level-1/level-2a/ + Fri, 24 Jun 2011 02:03:33 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=742 + + + + 742 + 2011-06-23 19:03:33 + 2011-06-24 02:03:33 + open + closed + level-2a + publish + 174 + 0 + page + + 0 + + + Level 2b + https://wpthemetestdata.wordpress.com/level-1/level-2b/ + Fri, 24 Jun 2011 02:04:03 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=744 + + + + 744 + 2011-06-23 19:04:03 + 2011-06-24 02:04:03 + open + closed + level-2b + publish + 174 + 0 + page + + 0 + + + Level 3a + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3a/ + Fri, 24 Jun 2011 02:04:24 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=746 + + + + 746 + 2011-06-23 19:04:24 + 2011-06-24 02:04:24 + open + closed + level-3a + publish + 173 + 0 + page + + 0 + + + Level 3b + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3b/ + Fri, 24 Jun 2011 02:04:46 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=748 + + + + 748 + 2011-06-23 19:04:46 + 2011-06-24 02:04:46 + open + closed + level-3b + publish + 173 + 0 + page + + 0 + + + Template: Excerpt (Defined) + https://wpthemetestdata.wordpress.com/2012/03/15/template-excerpt-defined/ + Thu, 15 Mar 2012 21:38:08 +0000 + themedemos + http://wptest.io/demo/?p=993 + + should be displayed in place of the user-defined excerpt in single-page views.]]> + should be displayed in place of the post content in archive-index pages. It can be longer than the automatically generated excerpts, and can have HTML tags.]]> + 993 + 2012-03-15 14:38:08 + 2012-03-15 21:38:08 + closed + closed + template-excerpt-defined + publish + 0 + 0 + post + + 0 + + + + + + + + + Template: More Tag + https://wpthemetestdata.wordpress.com/2012/03/15/template-more-tag/ + Thu, 15 Mar 2012 21:41:11 +0000 + themedemos + http://wptest.io/demo/?p=996 + + more tag. + +Right after this sentence should be a "continue reading" button of some sort on list pages of themes that show full content. It won't show on single pages or on themes showing excerpts. + + + +And this content is after the more tag. (which should be the anchor link for when the button is clicked)]]> + + 996 + 2012-03-15 14:41:11 + 2012-03-15 21:41:11 + closed + closed + template-more-tag + publish + 0 + 0 + post + + 0 + + + + + + + + + Edge Case: Nested And Mixed Lists + https://wpthemetestdata.wordpress.com/2009/05/15/edge-case-nested-and-mixed-lists/ + Fri, 15 May 2009 21:48:32 +0000 + themedemos + http://wptest.io/demo/?p=1000 + + +
  • Lists within lists do not break the ordered list numbering order
  • +
  • Your list styles go deep enough.
  • + +

    Ordered - Unordered - Ordered

    +
      +
    1. ordered item
    2. +
    3. ordered item +
        +
      • unordered
      • +
      • unordered +
          +
        1. ordered item
        2. +
        3. ordered item
        4. +
        +
      • +
      +
    4. +
    5. ordered item
    6. +
    7. ordered item
    8. +
    +

    Ordered - Unordered - Unordered

    +
      +
    1. ordered item
    2. +
    3. ordered item +
        +
      • unordered
      • +
      • unordered +
          +
        • unordered item
        • +
        • unordered item
        • +
        +
      • +
      +
    4. +
    5. ordered item
    6. +
    7. ordered item
    8. +
    +

    Unordered - Ordered - Unordered

    +
      +
    • unordered item
    • +
    • unordered item +
        +
      1. ordered
      2. +
      3. ordered +
          +
        • unordered item
        • +
        • unordered item
        • +
        +
      4. +
      +
    • +
    • unordered item
    • +
    • unordered item
    • +
    +

    Unordered - Unordered - Ordered

    +
      +
    • unordered item
    • +
    • unordered item +
        +
      • unordered
      • +
      • unordered +
          +
        1. ordered item
        2. +
        3. ordered item
        4. +
        +
      • +
      +
    • +
    • unordered item
    • +
    • unordered item
    • +
    ]]>
    + + 1000 + 2009-05-15 14:48:32 + 2009-05-15 21:48:32 + closed + closed + edge-case-nested-and-mixed-lists + publish + 0 + 0 + post + + 0 + + + + + + + +
    + + Template: Featured Image (Horizontal) + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-horizontal/ + Thu, 15 Mar 2012 22:15:12 +0000 + themedemos + http://wptest.io/demo/?p=1011 + + featured image, if the theme supports it. + +Non-square images can provide some unique styling issues. + +This post tests a horizontal featured image.]]> + + 1011 + 2012-03-15 15:15:12 + 2012-03-15 22:15:12 + closed + closed + template-featured-image-horizontal + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + + + + Template: Featured Image (Vertical) + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-vertical/ + Thu, 15 Mar 2012 22:36:32 +0000 + themedemos + http://wptest.io/demo/?p=1016 + + featured image, if the theme supports it. + +Non-square images can provide some unique styling issues. + +This post tests a vertical featured image.]]> + + 1016 + 2012-03-15 15:36:32 + 2012-03-15 22:36:32 + closed + closed + template-featured-image-vertical + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + + + + Post Format: Gallery (Tiled) + https://wpthemetestdata.wordpress.com/2010/09/09/post-format-gallery-tiled/ + Fri, 10 Sep 2010 00:23:27 +0000 + themedemos + http://wptest.io/demo/?p=1031 + + Jetpack to test. + +[gallery type="rectangular" columns="4" ids="755,757,758,760,766,763" orderby="rand"] + +This is some text after the Tiled Gallery just to make sure that everything spaces nicely.]]> + + 1031 + 2010-09-09 17:23:27 + 2010-09-10 00:23:27 + closed + closed + post-format-gallery-tiled + publish + 0 + 0 + post + + 0 + + + + + + + + + + + Page Image Alignment + https://wpthemetestdata.wordpress.com/about/page-image-alignment/ + Fri, 15 Mar 2013 23:19:23 +0000 + themedemos + http://wptest.io/demo/?page_id=1080 + + None, Left, Right, and Center. In addition, they also get the options of Thumbnail, Medium, Large & Fullsize. Be sure to try this page in RTL mode and it should look the same as LTR. +

    Image Alignment 580x300

    +The image above happens to be centered. + +Image Alignment 150x150 The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see there should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +Image Alignment 1200x400 + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 1200x400 + +And we try the large image again, with the center alignment since that sometimes is a problem. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 300x200 + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And just when you thought we were done, we're going to do them all over again with captions! + +[caption id="attachment_906" align="aligncenter" width="580"]Image Alignment 580x300 Look at 580x300 getting some caption love.[/caption] + +The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky. + +[caption id="attachment_904" align="alignleft" width="150"]Image Alignment 150x150 Bigger caption than the image usually is.[/caption] + +The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +[caption id="attachment_907" align="alignnone" width="1200"]Image Alignment 1200x400 Comment for massive image for your eyeballs.[/caption] + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. +[caption id="attachment_907" align="aligncenter" width="1200"]Image Alignment 1200x400 This massive image is centered.[/caption] + +And again with the big image centered. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +[caption id="attachment_905" align="alignright" width="300"]Image Alignment 300x200 Feels good to be right all the time.[/caption] + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! Last thing is a small image aligned right. Whatever follows should be unaffected. Image Alignment 150x150]]>
    + + 1133 + 2013-03-15 18:19:23 + 2013-03-15 23:19:23 + open + open + page-image-alignment + publish + 2 + 0 + page + + 0 +
    + + Page Markup And Formatting + https://wpthemetestdata.wordpress.com/about/page-markup-and-formatting/ + Fri, 15 Mar 2013 23:20:05 +0000 + themedemos + http://wptest.io/demo/?page_id=1083 + + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    Jane$1Because that's all Steve Jobs needed for a salary.
    John$100KFor all the blogging he does.
    Jane$100MPictures are worth a thousand words, right? So Tom x 1,000.
    Jane$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    + Robert Frost
    +
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +This tag shows strike-through text. + +Small Tag + +This tag shows smaller text. + +Strong Tag + +This tag shows bold text. + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +This rarely used tag emulates teletype text, which is usually styled like the <code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +This tag shows underlined text. + +Variable Tag + +This allows you to denote variables.]]>
    + + 1134 + 2013-03-15 18:20:05 + 2013-03-15 23:20:05 + open + open + page-markup-and-formatting + publish + 2 + 0 + page + + 0 +
    + + Template: Comments + https://wpthemetestdata.wordpress.com/2012/01/03/template-comments/ + Tue, 03 Jan 2012 17:11:37 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/comment-test/ + + +
  • Threaded comments up to 10 levels deep
  • +
  • Paginated comments (set Settings > Discussion > Break comments into pages to 5 top level comments per page)
  • +
  • Comment markup / formatting
  • +
  • Comment images
  • +
  • Comment videos
  • +
  • Author comments
  • +
  • Gravatars and default fallbacks
  • +]]>
    + + 1148 + 2012-01-03 10:11:37 + 2012-01-03 17:11:37 + open + closed + template-comments + publish + 0 + 0 + post + + 0 + + + + + + + 881 + + example@example.org + http://example.org/ + + 2012-09-03 10:18:04 + 2012-09-03 17:18:04 + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    John Saddington$1Because that's all Steve Job' needed for a salary.
    Tom McFarlin$100KFor all the blogging he does.
    Jared Erickson$100MPictures are worth a thousand words, right? So Tom x 1,000.
    Chris Ames$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    + +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    +Robert Frost
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    + +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up.]]>
    + 1 + + 0 + 0 +
    + + 899 + + fake@example.com + + + 2013-03-11 23:45:54 + 2013-03-12 04:45:54 + Gravatar associated with it. + They did not speify a website, so there should be no link to it in the comment. +]]> + 1 + + 0 + 0 + + + 900 + + example@example.org + http://example.org/ + + 2013-03-12 13:17:35 + 2013-03-12 20:17:35 + + 1 + + 0 + 0 + + + 901 + + example@example.org + http://example.org + + 2013-03-14 07:53:26 + 2013-03-14 14:53:26 + + 1 + + 0 + 0 + + + 903 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 07:56:46 + 2013-03-14 14:56:46 + + 1 + + 0 + 24783058 + + + 904 + + example@example.org + http://example.org/ + + 2013-03-14 07:57:01 + 2013-03-14 14:57:01 + + 1 + + 0 + 0 + + + 905 + + example@example.org + http://example.org/ + + 2013-03-14 08:01:21 + 2013-03-14 15:01:21 + + 1 + + 904 + 0 + + + 906 + + example@example.org + http://example.org/ + + 2013-03-14 08:02:06 + 2013-03-14 15:02:06 + + 1 + + 905 + 0 + + + 907 + + example@example.org + http://example.org/ + + 2013-03-14 08:03:22 + 2013-03-14 15:03:22 + + 1 + + 906 + 0 + + + 910 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 08:10:29 + 2013-03-14 15:10:29 + + 1 + + 907 + 24783058 + + + 911 + + example@example.org + http://example.org/ + + 2013-03-14 08:12:16 + 2013-03-14 15:12:16 + + 1 + + 910 + 0 + + + 912 + + example@example.org + http://example.org/ + + 2013-03-14 08:12:58 + 2013-03-14 15:12:58 + + 1 + + 911 + 0 + + + 913 + + example@example.org + http://example.org/ + + 2013-03-14 08:13:42 + 2013-03-14 15:13:42 + + 1 + + 912 + 0 + + + 914 + + example@example.org + http://example.org/ + + 2013-03-14 08:14:13 + 2013-03-14 15:14:13 + + 1 + + 913 + 0 + + + 915 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 08:14:47 + 2013-03-14 15:14:47 + + 1 + + 914 + 24783058 + + + 917 + + example@example.org + http://example.org/ + + 2013-03-14 09:56:43 + 2013-03-14 16:56:43 + + If the image imports... + ]]> + 1 + + 0 + 0 + + + 918 + + example@example.org + http://example.org/ + + 2013-03-14 11:23:24 + 2013-03-14 18:23:24 + + 1 + + 0 + 0 + + + 919 + + example@example.org + http://example.org/ + + 2013-03-14 11:27:54 + 2013-03-14 18:27:54 + + 1 + + 0 + 0 + + + 920 + + example@example.org + http://example.org/ + + 2013-03-14 11:30:33 + 2013-03-14 18:30:33 + + 1 + + 0 + 24783058 + + + 1015 + + auser@example.com + + + 2014-09-29 02:52:15 + 2014-09-29 09:52:15 + + 0 + + 0 + 0 + +
    + + Template: Pingbacks And Trackbacks + https://wpthemetestdata.wordpress.com/2012/01/01/template-pingbacks-an-trackbacks/ + Sun, 01 Jan 2012 17:17:18 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/many-trackbacks/ + + +
  • Above the comments
  • +
  • Below the comments
  • +
  • Included within the normal flow of comments
  • +]]>
    + + 1149 + 2012-01-01 10:17:18 + 2012-01-01 17:17:18 + closed + closed + template-pingbacks-an-trackbacks + publish + 0 + 0 + post + + 0 + + + + + + + + + 921 + + + http://tellyworth.wordpress.com/2007/11/21/ping-1/ + + 2007-11-21 11:31:12 + 2007-11-21 01:31:12 + + 1 + trackback + 0 + 0 + + + 922 + + + http://tellyworth.wordpress.com/2007/11/21/ping-2-with-a-much-longer-title-than-the-previous-ping-which-was-called-ping-1/ + + 2007-11-21 11:35:47 + 2007-11-21 01:35:47 + + 1 + trackback + 0 + 0 + + + 923 + + + http://tellyworth.wordpress.com/2007/11/21/ping-4/ + + 2007-11-21 11:39:25 + 2007-11-21 01:39:25 + + 1 + pingback + 0 + 0 + + + 924 + + + http://tellyworth.wordpress.com/2007/11/21/ping-3/ + + 2007-11-21 11:38:22 + 2007-11-21 01:38:22 + + 1 + pingback + 0 + 0 + + + 925 + + example@example.org + http://example.org/ + + 2010-06-11 15:27:04 + 2010-06-11 22:27:04 + + 1 + + 0 + 0 + +
    + + Template: Comments Disabled + https://wpthemetestdata.wordpress.com/2012/01/02/template-comments-disabled/ + Mon, 02 Jan 2012 17:21:15 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/no-comments/ + + should display pingbacks and trackbacks.]]> + + 1150 + 2012-01-02 10:21:15 + 2012-01-02 17:21:15 + closed + closed + template-comments-disabled + publish + 0 + 0 + post + + 0 + + + + + + + + Edge Case: Many Tags + https://wpthemetestdata.wordpress.com/2009/06/01/edge-case-many-tags/ + Mon, 01 Jun 2009 08:00:34 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/11/24/many-tags/ + + + + 1151 + 2009-06-01 01:00:34 + 2009-06-01 08:00:34 + closed + closed + edge-case-many-tags + publish + 0 + 0 + post + + 0' + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Edge Case: Many Categories + https://wpthemetestdata.wordpress.com/2009/07/02/edge-case-many-categories/ + Thu, 02 Jul 2009 09:00:03 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/11/24/many-categories/ + + + + 1152 + 2009-07-02 02:00:03 + 2009-07-02 09:00:03 + closed + closed + edge-case-many-categories + publish + 0 + 0 + post + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Scheduled + https://wpthemetestdata.wordpress.com/2020/01/01/scheduled/ + Wed, 01 Jan 2030 19:00:18 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=418 + + + + 1153 + 2030-01-01 12:00:18 + 2030-01-01 19:00:18 + closed + closed + scheduled + future + 0 + 0 + post + + 0 + + + + + + Post Format: Image + https://wpthemetestdata.wordpress.com/2010/08/08/post-format-image/ + Sun, 08 Aug 2010 12:00:39 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=568 + +
      + +]]>
    + + 1158 + 2010-08-08 05:00:39 + 2010-08-08 12:00:39 + closed + closed + post-format-image + publish + 0 + 0 + post + + 0 + + + + + +
    + + Post Format: Video (YouTube) + https://wpthemetestdata.wordpress.com/2010/06/02/post-format-video-youtube/ + Wed, 02 Jun 2010 09:00:58 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=582 + + WordPress Embeds.]]> + + 1161 + 2010-06-02 02:00:58 + 2010-06-02 09:00:58 + closed + closed + post-format-video-youtube + publish + 0 + 0 + post + + 0 + + + + + + + Post Format: Image (Caption) + https://wpthemetestdata.wordpress.com/2010/08/07/post-format-image-caption/ + Sat, 07 Aug 2010 13:00:19 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=674 + + Bell on Wharf Bell on wharf in San Francisco[/caption]]]> + + 1163 + 2010-08-07 06:00:19 + 2010-08-07 13:00:19 + closed + closed + post-format-image-caption + publish + 0 + 0 + post + + 0 + + + + + + + + _thumbnail_id + + + + + Draft + https://wpthemetestdata.wordpress.com/?p=1164 + Tue, 09 Apr 2013 18:20:39 +0000 + themedemos + http://wptest.io/demo/?p=922 + + + + 1164 + 2013-04-09 11:20:39 + 2013-04-09 18:20:39 + closed + closed + + draft + 0 + 0 + post + + 0 + + + + + + Template: Password Protected (the password is "enter") + https://wpthemetestdata.wordpress.com/2012/01/04/template-password-protected/ + Wed, 04 Jan 2012 16:38:05 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/test-with-secret-password/ + + + + 1168 + 2012-01-04 09:38:05 + 2012-01-04 16:38:05 + closed + closed + template-password-protected + publish + 0 + 0 + post + enter + 0 + + + + + + + 926 + + example@example.org + http://example.org/ + + 2013-03-14 11:56:08 + 2013-03-14 18:56:08 + + 1 + + 0 + 0 + + + + + <link>https://wpthemetestdata.wordpress.com/2009/09/05/edge-case-no-title/</link> + <pubDate>Sat, 05 Sep 2009 16:00:23 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2007/09/04/14/</guid> + <description/> + <content:encoded><![CDATA[This post has no title, but it still must link to the single post view somehow. + +This is typically done by placing the permalink on the post date.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1169</wp:post_id> + <wp:post_date>2009-09-05 09:00:23</wp:post_date> + <wp:post_date_gmt>2009-09-05 16:00:23</wp:post_date_gmt> + <wp:comment_status>closed</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>edge-case-no-title</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>0</wp:menu_order> + <wp:post_type>post</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="category" nicename="classic"><![CDATA[Classic]]></category> + <category domain="post_tag" nicename="edge-case"><![CDATA[edge case]]></category> + <category domain="category" nicename="edge-case-2"><![CDATA[Edge Case]]></category> + <category domain="post_tag" nicename="layout"><![CDATA[layout]]></category> + <category domain="post_tag" nicename="title"><![CDATA[title]]></category> +</item> +<item> + <title>Edge Case: No Content + https://wpthemetestdata.wordpress.com/2009/08/06/edge-case-no-content/ + Thu, 06 Aug 2009 16:39:56 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/this-post-has-no-body/ + + + + 1170 + 2009-08-06 09:39:56 + 2009-08-06 16:39:56 + closed + closed + edge-case-no-content + publish + 0 + 0 + post + + 0 + + + + + + + 927 + + example@example.org + http://example.org/ + + 2013-03-14 12:35:07 + 2013-03-14 19:35:07 + + 1 + + 0 + 0 + + + + Template: Paginated + https://wpthemetestdata.wordpress.com/2012/01/08/template-paginated/ + Sun, 08 Jan 2012 17:00:20 +0000 + themedemos + https://noeltest.wordpress.com/?p=188 + + + +Post Page 2 + + + +Post Page 3]]> + + 1171 + 2012-01-08 10:00:20 + 2012-01-08 17:00:20 + closed + closed + template-paginated + publish + 0 + 0 + post + + 0 + + + + + + + + + <![CDATA[Markup: Title <em>With</em> <b>Mark<sup>up</sup></b>]]> + https://wpthemetestdata.wordpress.com/2013/01/05/markup-title-with-markup/ + Sat, 05 Jan 2013 17:00:49 +0000 + themedemos + http://wptest.io/demo/?p=861 + + +
  • The post title renders the word "with" in italics and the word "markup" in bold (and "up" is superscript).
  • +
  • The post title markup should be removed from the browser window / tab.
  • +]]>
    + + 1173 + 2013-01-05 10:00:49 + 2013-01-05 17:00:49 + closed + closed + markup-title-with-markup + publish + 0 + 0 + post + + 0 + + + + + +
    + + Markup: Title With Special Characters ~`!@#$%^&*()-_=+{}[]/\;:'"?,.> + https://wpthemetestdata.wordpress.com/2013/01/05/title-with-special-characters/ + Sat, 05 Jan 2013 18:00:20 +0000 + themedemos + http://wptest.io/demo/?p=867 + + Latin Character Tests +This is a test to see if the fonts used in this theme support basic Latin characters. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    !"#$%&'()*
    +,-./01234
    56789:;>=<
    ?@ABCDEFGH
    IJKLMNOPQR
    STUVWXYZ[\
    ]^_`abcdef
    ghijklmnop
    qrstuvwxyz
    {|}~
    ]]>
    + + 1174 + 2013-01-05 11:00:20 + 2013-01-05 18:00:20 + closed + closed + title-with-special-characters + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Taumatawhakatangihangakoauauotamateaturipukakapikimaungahoronukupokaiwhenuakitanatahu + https://wpthemetestdata.wordpress.com/2009/10/05/title-should-not-overflow-the-content-area/ + Mon, 05 Oct 2009 19:00:59 +0000 + themedemos + http://wptest.io/demo/?p=877 + + Title should not overflow the content area + +A few things to check for: +
      +
    • Non-breaking text in the title, content, and comments should have no adverse effects on layout or functionality.
    • +
    • Check the browser window / tab title.
    • +
    • If you are a plugin or widget developer, check that this text does not break anything.
    • +
    + +The following CSS properties will help you support non-breaking text. + +
    -ms-word-wrap: break-word;
    +word-wrap: break-word;
    + ]]>
    + + 1175 + 2009-10-05 12:00:59 + 2009-10-05 19:00:59 + closed + closed + title-should-not-overflow-the-content-area + publish + 0 + 0 + post + + 0 + + + + + + + + +
    + + Markup: Text Alignment + https://wpthemetestdata.wordpress.com/2013/01/09/markup-text-alignment/ + Wed, 09 Jan 2013 16:00:39 +0000 + themedemos + http://wptest.io/demo/?p=895 + + Default +This is a paragraph. It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love. Completely neutral and not picking a side or sitting on the fence. It just is. It just freaking is. It likes where it is. It does not feel compelled to pick a side. Leave him be. It will just be better that way. Trust me. +

    Left Align

    +

    This is a paragraph. It is left aligned. Because of this, it is a bit more liberal in it's views. It's favorite color is green. Left align tends to be more eco-friendly, but it provides no concrete evidence that it really is. Even though it likes share the wealth evenly, it leaves the equal distribution up to justified alignment.

    + +

    Center Align

    +

    This is a paragraph. It is center aligned. Center is, but nature, a fence sitter. A flip flopper. It has a difficult time making up its mind. It wants to pick a side. Really, it does. It has the best intentions, but it tends to complicate matters more than help. The best you can do is try to win it over and hope for the best. I hear center align does take bribes.

    + +

    Right Align

    +

    This is a paragraph. It is right aligned. It is a bit more conservative in it's views. It's prefers to not be told what to do or how to do it. Right align totally owns a slew of guns and loves to head to the range for some practice. Which is cool and all. I mean, it's a pretty good shot from at least four or five football fields away. Dead on. So boss.

    + +

    Justify Align

    +

    This is a paragraph. It is justify aligned. It gets really mad when people associate it with Justin Timberlake. Typically, justified is pretty straight laced. It likes everything to be in it's place and not all cattywampus like the rest of the aligns. I am not saying that makes it better than the rest of the aligns, but it does tend to put off more of an elitist attitude.

    ]]>
    + + 1176 + 2013-01-09 09:00:39 + 2013-01-09 16:00:39 + closed + closed + markup-text-alignment + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Markup: Image Alignment + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/ + Fri, 11 Jan 2013 03:15:40 +0000 + themedemos + http://wptest.io/demo/?p=903 + + None, Left, Right, and Center. In addition, they also get the options of Thumbnail, Medium, Large & Fullsize. Be sure to try this page in RTL mode and it should look the same as LTR. +

    Image Alignment 580x300

    +The image above happens to be centered. + +Image Alignment 150x150 The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +Image Alignment 1200x400 + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 1200x400 + +And we try the large image again, with the center alignment since that sometimes is a problem. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 300x200 + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And just when you thought we were done, we're going to do them all over again with captions! + +[caption id="attachment_906" align="aligncenter" width="580"]Image Alignment 580x300 Look at 580x300 getting some caption love.[/caption] + +The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky. + +[caption id="attachment_904" align="alignleft" width="150"]Image Alignment 150x150 Bigger caption than the image usually is.[/caption] + +The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +[caption id="attachment_907" align="alignnone" width="1200"]Image Alignment 1200x400 Comment for massive image for your eyeballs.[/caption] + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. +[caption id="attachment_907" align="aligncenter" width="1200"]Image Alignment 1200x400 This massive image is centered.[/caption] + +And again with the big image centered. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +[caption id="attachment_905" align="alignright" width="300"]Image Alignment 300x200 Feels good to be right all the time.[/caption] + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! One last thing: The last item in this post's content is a thumbnail floated right. Make sure any elements after the content are clearing properly. + +]]>
    + + 1177 + 2013-01-10 20:15:40 + 2013-01-11 03:15:40 + closed + closed + markup-image-alignment + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + +
    + + Markup: HTML Tags and Formatting + https://wpthemetestdata.wordpress.com/2013/01/11/markup-html-tags-and-formatting/ + Sat, 12 Jan 2013 03:22:19 +0000 + themedemos + http://wptest.io/demo/?p=919 + + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    John Doe$1Because that's all Steve Jobs needed for a salary.
    Jane Doe$100KFor all the blogging she does.
    Fred Bloggs$100MPictures are worth a thousand words, right? So Jane x 1,000.
    Jane Bloggs$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    +Robert Frost
    +
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +This tag shows strike-through text. + +Small Tag + +This tag shows smaller text. + +Strong Tag + +This tag shows bold text. + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +This rarely used tag emulates teletype text, which is usually styled like the <code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +This tag shows underlined text. + +Variable Tag + +This allows you to denote variables.]]>
    + + 1178 + 2013-01-11 20:22:19 + 2013-01-12 03:22:19 + closed + closed + markup-html-tags-and-formatting + publish + 0 + 0 + post + + 0 + + + + + + + +
    + + Media: Twitter Embeds + https://wpthemetestdata.wordpress.com/2011/03/15/media-twitter-embeds/ + Tue, 15 Mar 2011 22:47:16 +0000 + themedemos + http://wptest.io/demo/?p=1027 + + Twitter Embeds feature.]]> + + 1179 + 2011-03-15 15:47:16 + 2011-03-15 22:47:16 + closed + closed + media-twitter-embeds + publish + 0 + 0 + post + + 0 + + + + + + + + _oembed_time_d01e104b758ab65a49dfdede5913069c + + + + _oembed_ac49b172e1844531a885a53eff2efd91 + ]]> + + + _oembed_time_ac49b172e1844531a885a53eff2efd91 + + + + _oembed_d01e104b758ab65a49dfdede5913069c + ]]> + + + + Template: Sticky + https://wpthemetestdata.wordpress.com/2012/01/07/template-sticky/ + Sat, 07 Jan 2012 14:07:21 +0000 + themedemos + http://wptest.io/demo/?p=1241 + + +
  • The sticky post should be distinctly recognizable in some way in comparison to normal posts. You can style the .sticky class if you are using the post_class() function to generate your post classes, which is a best practice.
  • +
  • They should show at the very top of the blog index page, even though they could be several posts back chronologically.
  • +
  • They should still show up again in their chronologically correct postion in time, but without the sticky indicator.
  • +
  • If you have a plugin or widget that lists popular posts or comments, make sure that this sticky post is not always at the top of those lists unless it really is popular.
  • +]]>
    + + 1241 + 2012-01-07 07:07:21 + 2012-01-07 14:07:21 + closed + closed + template-sticky + publish + 0 + 0 + post + + 1 + + + + +
    + + Template: Excerpt (Generated) + https://wpthemetestdata.wordpress.com/2012/03/14/template-excerpt-generated/ + Wed, 14 Mar 2012 16:49:22 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=1446 + + excerpt_length and excerpt_more, display properly.]]> + + 1446 + 2012-03-14 09:49:22 + 2012-03-14 16:49:22 + closed + closed + template-excerpt-generated + publish + 0 + 0 + post + + 0 + + + + + + + + + Block category: Common + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-common/ + Fri, 02 Nov 2018 16:20:28 +0000 + >themereviewteam + https://wpthemetestdata.wordpress.com/?p=1730 + + +

    The Common category includes the following blocks: Paragraph, image, headings, list, gallery, quote, audio, cover, video.

    + + + +

    The paragraph block is the default block type.  It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love.

    + + + +

    This paragraph is left aligned.

    + + + +

    This italic paragraph is right aligned.

    + + + +

    Neither of these paragraphs care about politics, but this one is bold, medium sized and has a drop cap.

    + + + +

    This paragraph is centered.

    + + + +

    This paragraph prefers Jazz over Justin Timberlake. It also uses the small font size.

    + + + +

    This paragraph has something important to say:  It has a large font size, which defaults to 36px.

    + + + +

    The huge text size defaults to 46px, but the size can be customized.

    + + + +

    This paragraph is colorful, with a red background and white text (maybe). Colored blocks should have a high enough contrast, so that the text is readable.

    + + + +

    Below this block, you will see a single image with a circle mask applied.

    + + + +
    Image Alignment 150x150
    + + + +

    H1 Heading

    + + + +

    H2 Heading

    + + + +

    H3 Heading

    + + + +

    H4 Heading

    + + + +
    H5 Heading
    + + + +
    H6 Heading
    + + + +

    Ordered list

    + + + +
    1. The software should be licensed under the GNU Public License.
    2. The software should be freely available to anyone to use for any purpose, and without permission.
    3. The software should be open to modifications.
      1. Any modifications should be freely distributable at no cost and without permission from its creators.
    4. The software should provide a framework for translation to make it globally accessible to speakers of all languages.
    5. The software should provide a framework for extensions so modifications and enhancements can be made without modifying core code
    + + + +

    Unordered list

    + + + +
    • One
    • Two
    • Three
      • Four
    • Five
    + + + + + + + +

    Quote

    Cite
    + + + +
    + + + +
    +

    Cover block with background image

    +
    + + + +

    The file block has a setting that lets us show or hide a download button with editable text:

    + + + + + + + + + + + +

    Video blocks have settings for showing and hiding the playback controls. Use autoplay and playback controls responsibly.

    + + + +
    This is a video block caption.
    + + + +

    The video block below is muted and has a poster image that displays before the video starts:

    + + + +
    + +]]>
    + + 1730 + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + +
    + + Block category: Formatting + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-formatting/ + Fri, 02 Nov 2018 16:41:42 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1732 + + +

    The formatting category includes the following blocks:

    + + + +
    The code block starts with
    +<!-- wp:code -->
    +<?php echo 'Hello World'; ?>
    +
    + + +

    The classic block can have almost anything in it.

    +
    +
    a heading
    + + +
    The custom HTML block lets you put HTML that isn't configured like blocks in it. (this div has a width of 45%)
    + + + +
    The preformatted block.

    The Road Not Taken

    Robert Frost
    Two roads diverged in a yellow wood,
    And sorry I could not travel both (\_/)
    And be one traveler, long I stood (='.'=)
    And looked down one as far as I could (")_(")
    To where it bent in the undergrowth;

    Then took the other, as just as fair,
    And having perhaps the better claim, |\_/|
    Because it was grassy and wanted wear; / @ @ \
    Though as for that the passing there ( > º < )
    Had worn them really about the same, `>>x<<´
    / O \
    And both that morning equally lay
    In leaves no step had trodden black.
    Oh, I kept the first for another day!
    Yet knowing how way leads on to way,
    I doubted if I should ever come back.
    I shall be telling this with a sigh
    Somewhere ages and ages hence:
    Two roads diverged in a wood, and I—
    I took the one less traveled by,
    And that has made all the difference.



    and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    + + + +

    The pull quote can be aligned or wide or neither.

    Theme Reviewer
    + + + +
    The table blockThis is the default style.
    The cell next to this is empty.
    Cell #5
    Cell #6
    + + + +
    This is the striped style.This row should have a background color.
    The cell next to this is empty.

    This table has fixed width table cells.

    Make sure that the text wraps correctly.

    + + + +
    The Verse block

    A block for haiku?
    Why not?
    Blocks for all the things!
    +]]>
    + + 1732 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Block category: Layout Elements + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-layout-elements/ + Fri, 02 Nov 2018 16:44:37 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1734 + + +
    +

    The Layout Elements category includes the following blocks: Group, Button, Columns, Media & Text, separator, spacer, read more, and page break.

    + + + +

    This group block has a light green background color.

    + + + + + + + +

    The read more block should be right below this text, but only on list pages of themes that show the full content. It won't show on the single page or on themes showing excerpts.

    +
    + + + + + + + +
    +
    +

    The columns:

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    +
    + + + +
    Boardwalk
    +

    Media &Text

    + + + +

    For displaying media and text next to each other. By default, the media is to the left.

    +
    + + + +
    Golden Gate Bridge
    +

    This time our block is full width, and the image is to the right.

    + + + +

    The background color is a pale blue. 

    +
    + + + +

    Test to make sure that the editor and the front match. To test the Stack on mobile setting, reduce the browser window width.

    + + + +

    The control these settings, the block uses the css classes "has-media-on-the-right" and "is-stacked-on-mobile".

    + + + +

    The separator has three styles: default, wide line, and dots.

    + + + +
    + + + +
    + + + +
    + + + +

    The spacer block has a default height of 100 pixels:

    + + + + + + + +

    And finally, the page break:

    + + + + + + + +

    This paragraph block is on page two, after the page break.

    + + + + +]]>
    + + 1734 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block category: Embeds + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-embeds/ + Fri, 02 Nov 2018 16:51:55 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1738 + + + +

    This post tests various embed blocks:

    + + + +
    +https://twitter.com/WordPress/status/1057136472321613824 +
    Twitter,  wide width
    + + + +
    +https://youtu.be/ex8fMxXJDJw +
    YouTube
    + + + +
    +https://www.facebook.com/6427302910/posts/10156380423617911/ +
    + + + +
    +https://www.instagram.com/p/BpmueLLgEn_/?utm_source=ig_share_sheet&igshid=1hcxphic7p9e2 +
    + + + +
    +https://wordpress.tv/2018/10/14/kjell-reigstad-allan-cole-how-we-made-our-first-gutenberg-powered-theme/ +
    WordPress TV, full width
    + + + +

    +]]>
    + + 1738 + + + + + + + 0 + 0 + + + 0 + + + + + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + + + + + + + + + + ]]> + + + + + + + +

    Many of the WordPress contribution teams have been working hard on the new WordPress editor, and the tools, services,...

    Publicerat av WordPress Måndag 3 september 2018
    ]]>
    +
    + + + + + + + ]]> + + + + + + + + ]]> + + + + + + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + + + + + + ]]> + + + + + + + +

    Many of the WordPress contribution teams have been working hard on the new WordPress editor, and the tools, services,...

    Publicerat av WordPress Måndag 3 september 2018
    ]]>
    +
    + + + + + + + ]]> + + + + + + + + ]]> + + + + + +
    + + Block category: Widgets + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-widgets/ + Fri, 02 Nov 2018 16:45:35 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1736 + + +

    The shortcode widget:

    + + + +[gallery columns=2 ids="770,771"] + + + +

    The Archive Widget:

    + + + + + +

    The same Archive widget but as a dropdown:

    + + + + + + + +

    The Category widget block has an additional option for showing category hierarchies:

    + + + + + +

    The Latest Comments widget can display or hide the avatars, the date, and the comment excerpt:

    + + + + + +

    Here is an example of the Comments widget with all the options disabled. The number of comments has been reduced to two.

    + + + + + +

    And here is the Latest Posts widget in the list view, with dates:

    + + + + + +

    Grid view, now sorted from A -Z.

    + + + + + +

    You can also change the number of columns used to display the latest posts. The block below only displays posts from the Block category:

    + + + + + +

    Search widget:

    + + + + + +

    Tag Cloud widget:

    + + + + + +

    RSS Feed widget:

    + + + + ]]>
    + + 1736 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Columns + https://wpthemetestdata.wordpress.com/2018/11/02/block-columns/ + Fri, 02 Nov 2018 12:10:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1743 + + +
    +
    +

    This page tests how the theme displays the columns block. The first block tests a two column block with paragraphs.

    +
    + + + +
    +

    This is the second column. It should align next to the first column. Reduce the browser window width to test the responsiveness.

    +
    +
    + + + +
    +
    +

    This is the second column block. It has 3 columns.

    +
    + + + +
    +

    Paragraph 2 is in the middle.

    +
    + + + +
    +

    Paragraph 3 is in the last column.

    +
    +
    + + + +
    +
    +

    The third column block has 4 columns. Make sure that all the text is visible and that it is not cut off.

    +
    + + + +
    +

    Now the columns are getting narrower.

    +
    + + + +
    +

    The margins between the columns should be wide enough,

    +
    + + + +
    +

    so that the content of the columns does not run into or overlap each other.

    +
    +
    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    + + + +
    +

    Column five.

    +
    +
    + + + +

    To change the number of columns, select the column block to open the settings panel. You can show up to 6 columns. If the theme has support for wide align, you can also set the alignments to wide and full width.

    + + + +

    Below is a column block with six columns, and no alignment:

    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    + + + +
    +

    Column five.

    +
    + + + +
    +

    Column six.

    +
    +
    + + + +

    Next is a 3 column block, with a wide alignment:

    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    +
    + + + +

    And here is a two column block with full width, and a longer text. Make sure that the text wraps correctly.

    + + + +
    +
    +

    This is column one. Sometimes, you may want to use columns to display a larger text, so, lets add some more words. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna. Praesent sit amet ligula id orci venenatis auctor. Phasellus porttitor, metus non tincidunt dapibus, orci pede pretium neque, sit amet adipiscing ipsum lectus et libero. Aenean bibendum. Curabitur mattis quam id urna. Vivamus dui. Donec nonummy lacinia lorem. Cras risus arcu, sodales ac, ultrices ac, mollis quis, justo. Sed a libero. Quisque risus erat, posuere at, tristique non, lacinia quis, eros.

    +
    + + + +
    +

    Column two. Cras volutpat, lacus quis semper pharetra, nisi enim dignissim est, et sollicitudin quam ipsum vel mi. Sed commodo urna ac urna. Nullam eu tortor. Curabitur sodales scelerisque magna. Donec ultricies tristique pede. Nullam libero. Nam sollicitudin felis vel metus. Nullam posuere molestie metus. Nullam molestie, nunc id suscipit rhoncus, felis mi vulputate lacus, a ultrices tortor dolor eget augue. Aenean ultricies felis ut turpis. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Suspendisse placerat tellus ac nulla. Proin adipiscing sem ac risus. Maecenas nisi. Cras semper.

    +
    +
    + + + +

    We can also add blocks inside columns:

    + + + +
    +
    +
    1. This is a numbered list,
    2. inside a 3 column block
    3. with a wide alignment.
    +
    + + + +
    +

    The middle column has a paragraph with an image block below.

    + + + +
    canola
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna.
    +
    + + + +
    +

    -This third column has a quote

    Theme Reviewer
    +
    +
    + + + +

    But wait there is more!  We also have a block called Media & Text, which is a two column block that helps you display media and text content next to each other, without having to first setup a column block:

    + + + +
    dsc20050813_115856_52
    +

    Media & Text

    + + + +

    A paragraph block sits ready to be used, below your headline.

    + + + +

    +
    +]]>
    + + 1743 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Block: Cover + https://wpthemetestdata.wordpress.com/2018/11/02/block-cover/ + Sat, 03 Nov 2018 12:25:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1745 + + +

    This is a left aligned cover block with a background image.

    + + + +

    The cover block lets you add text on top of images or videos.

    + + + +

    This blocktype has several alignment options, and you can also align or center the text inside the block.

    + + + +

    The background image can be fixed and you can change its opacity and add an overlay color.

    + + + +

    Make sure that the text wraps correctly over the image, and that text markup and alignments are working.

    + + + +

    The next image should have a pink overlay color, the text should be bold and aligned to the left:

    + + + +

    A center aligned cover image block, with a left aligned text.

    + + + +

    This is a full width cover block with a fixed background image with a 20% opacity.

    + + + +

    Make sure that all the text is readable.

    + + + +

    Our last cover image block has a wide width.

    + + + +

    This is a wide cover block with a video background.

    + + + +

    Compare the video and image blocks.
    This block is centered.

    + + + +

    The block below has no alignment, and the text is a link. Overlay colors must also work with video backgrounds.

    + + + + +]]>
    + + 1745 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Button + https://wpthemetestdata.wordpress.com/2018/11/02/block-button/ + Sat, 03 Nov 2018 13:20:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1747 + + +

    Button blocks are not semantically buttons, but links inside a styled div. 

    + + + +

    If you do not add a link, a link tag without an anchor will be used.

    + + + + + + + +

    Check to make sure that the text wraps correctly when the button has more than one line of text, and when it is extra long.

    + + + + + + + +

    Buttons have three styles: 

    + + + + + + + + + + + + + + + +

    If the theme has a custom color palette, test that background color and text color settings work correctly. 

    + + + + + + + +

    Now lets test how buttons display together with large texts.

    + + + +

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio.

    + + + + + + + +

    Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna. Praesent sit amet ligula id orci venenatis auctor. Phasellus porttitor, metus non tincidunt dapibus, orci pede pretium neque, sit amet adipiscing ipsum lectus et libero. Aenean bibendum. Curabitur mattis quam id urna.

    + + + + + + + +

    Vivamus dui. Donec nonummy lacinia lorem. Cras risus arcu, sodales ac, ultrices ac, mollis quis, justo. Sed a libero. Quisque risus erat, posuere at, tristique non, lacinia quis, eros.

    +]]>
    + + 1747 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Quote + https://wpthemetestdata.wordpress.com/2018/11/02/block-quote/ + Sat, 03 Nov 2018 03:05:49 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1749 + + +

    The quote block has two styles, regular:

    + + + +

    Gutenberg is more than an editor.

    The Gutenberg Team
    + + + +

    and large:

    + + + +

    Yes, it is a press, certainly, but a press from which shall flow in inexhaustible streams, the most abundant and most marvelous liquor that has ever flowed to relieve the thirst of men!


    Johannes Gutenberg
    + + + +

    The quote blocks themselves have no alignments but the text can be aligned, bold, italic, and linked:

    + + + +

    Right

    Theme Review
    + + + +

    In addition to the quote block, we also have the pull quote, with a regular and a solid color style.

    + + + +

    You can change the color of the border and the text with the regular style:

    + + + +

    In addition to the quote block, we also have the pull quote.

    Theme Reviewer
    + + + +

    Or change the background color and text color with the solid color style:

    + + + +

    a solid color style

    Theme Reviewer
    +]]>
    + + 1749 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Gallery + https://wpthemetestdata.wordpress.com/2018/11/02/block-gallery/ + Sat, 03 Nov 2018 04:34:24 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1752 + + +

    Gallery blocks have two settings: the number of columns, and whether or not images should be cropped. The default number of columns is three, and the maximum number of columns is eight.

    + + + +

    Below is a three column gallery at full width, with cropped images.

    + + + + + + + + + + + +

    Some more text for taking up space.

    + + + +

    A two column gallery, aligned to the left, linked to media file.

    + + + +

    In the editor, the image captions can be edited directly by clicking on the text.

    + + + +

    If the number of images cannot be divided into the number of columns you have selected, the default is to have the last image(s) automatically stretch to the width of your gallery.

    + + + + + + + +

    A four column gallery with a wide width:

    + + + + + + + +

    A five column gallery with normal images:

    + + + + + + + +

    This is the same gallery, but with cropped images.

    + + + + + + + +

    Six columns: does it work at all window sizes?

    + + + + + + + +

    Seven columns: how does this look on a narrow window?

    + + + + + + + +

    Eight columns:

    + + + + +]]>
    + + 1752 + + + + + + + 0 + 0 + + + 0 + + + + + + + + + +
    + + Block: Image + https://wpthemetestdata.wordpress.com/2018/11/03/block-image/ + Sat, 03 Nov 2018 15:20:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1755 + + +

    Welcome to image alignment! If you recognize this post, it is because these are blocks that have been converted from the classic Markup: Image Alignment post. The best way to demonstrate the ebb and flow of the various image positioning options is to nestle them snuggly among an ocean of words. Grab a paddle and let's get started. Be sure to try it in RTL mode. Left should stay left and right should stay right for both reading directions.

    + + + +

    On the topic of alignment, it should be noted that users can choose from the options of None, Left, Right, and Center. If the theme has added support for align wide, images can also be wide and full width. Be sure to test this page in RTL mode.

    + + + +

    In addition, they also get the options of the image dimensions 25%, 50%, 75%, 100% or a set width and height.

    + + + +
    Image Alignment 580x300
    + + + +

    The image above happens to be centered.

    + + + +
    Image Alignment 150x150
    + + + +

    The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned.

    + + + +

    As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished!

    + + + +

    And now for a massively large image. It also has no alignment.

    + + + +
    Image Alignment 1200x400
    + + + +

    The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.

    + + + +
    Image Alignment 300x200
    + + + +

    And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there… Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently.

    + + + +

    In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah… Just like that. It never felt so good to be right.

    + + + +

    And just when you thought we were done, we're going to do them all over again with captions!

    + + + +
    Image Alignment 580x300
    Look at 580x300 getting some caption love.
    + + + +

    The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky.

    + + + +
    Image Alignment 150x150
    Itty-bitty caption.
    + + + +

    The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned.

    + + + +

    As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished!

    + + + +

    And now for a massively large image. It also has no alignment.

    + + + +
    Image Alignment 1200x400
    Massive image comment for your eyeballs.
    + + + +

    The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.

    + + + +
    Image Alignment 300x200
    Feels good to be right all the time.
    + + + +

    And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there… Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently.

    + + + +

    In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah… Just like that. It never felt so good to be right.

    + + + +

    Imagine that we would find a use for the extra wide image! This image has the wide width alignment:

    + + + +
    Image Alignment 1200x4002
    + + + +

    Can we go bigger? This image has the full width alignment:

    + + + +
    Image Alignment 1200x4002
    + + + +

    And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! One last thing: The last item in this post's content is a thumbnail floated right. Make sure any elements after the content are clearing properly.

    + + + +
    +]]>
    + + 1755 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Ελληνικά-Greek + https://wpthemetestdata.wordpress.com/greek/ + Fri, 14 Feb 2020 10:31:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1809 + + Headings Επικεφαλίδες +

    Επικεφαλίδα 1 Header one

    +

    Επικεφαλίδα 2 Header two

    +

    Επικεφαλίδα 3 Header three

    +

    Επικεφαλίδα 2 Header four

    +
    Επικεφαλίδα 5 Header five
    +
    Επικεφαλίδα 6Header six
    +

    Παράθεση άλλου Blockquotes

    +Single line blockquote: Μια γραμμή +
    Πάντα να είναι περίεργος.
    +Πολλές γραμμέ με αναφορά Multi line blockquote with a cite reference: +
    Το HTML <blockquote> ElementHTML Block Quotation Element) καταδεικνύει ότι το κείμενο έχει μια παράθεση. Συνήθως οπτικοποιείται με εσοχή (δείτε Σημειώσεις για το πως να το αλλάξετε. Ίσως να δίνεται και URL πηγής με την χρήση του cite attribute, μπλα, μπλα <cite> .
    +multiple contributors - MDN HTML element reference - blockquote +

    Πίνακες Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Υπάλληλος EmployeeΜισθός Salary
    Τάδε κάποιος$1Γιατί τόσα χρειάζεται για να ζήσει
    Jane Doe$100KFor all the blogging she does.
    Fred Bloggs$100MPictures are worth a thousand words, right? So Jane x 1,000.
    Jane Bloggs$100BWith hair like that?! Enough said...
    +

    Λίστες Definition Lists

    +
    +
    Τίτλος λίστας Definition List Title
    +
    Υποδιαίρεση λίστας Definition list division.
    +
    +

    Λίστα με κουκίδες Unordered Lists (Nested)

    +
      +
    • Πρώτο στοιχείο List item one +
        +
      • Στοιχείο πρώτο List item one +
          +
        • Στοιχείο λίστα ένα List item one
        • +
        • Στοιχείο λίστας δύο List item two
        • +
        +
      • +
      • Στοιχείο δεύτερο -item two
      • +
      +
    • +
    • Στοιχειο δύο List item two
    • +
    +

    Αριθμημένη λίστα(Nested)

    +
      +
    1. Στοιχειο ξεκινά με 8-start at 8 +
        +
      1. Στοιχείο λίστας ενα List item one +
          +
        1. Στοιχείο λίστας ενα -reversed attribute
        2. +
        3. Στοιχείο λίστας δύο
        4. +
        +
      2. +
      3. Δεύτερο στοιχείο
      4. +
      +
    2. +
    3. Στοιχείο δύο
    4. +
    +

    Ετικέττες HTML Tags

    +Διεύθυνση Address Tag + +
    1 Απέραντη διαδρομή Infinite Loop +Απλωπολή , ΤΚ 95014 +Ελλάδα
    Αγκυρωση Anchor Tag (aka. Link) + +Πάραδειγμα συνδέσμου. + +Συντομογραφία Abbreviation Tag + +Η συντομογραφία κτλ σημαίνει "Και τα λοιπά". + +Ακρωνύμιο Acronym Tag + +Το ακρωνύμιο κυρ σημαίνει "Κύριος". + +Big Tag + +Αυτό είναι μεγάλο θέμα + +Cite Tag + +"Φάε το φαϊ σου" --Όλες οι μαμάδες + +Code Tag + +This tag styles blocks of code. +.post-title { +margin: 0 0 5px; +font-weight: bold; +font-size: 38px; +line-height: 1.2; +και μία γραμμή με πολύ πάρα πολύ υπερβολικά πάρα πολύ μεγάλο κείμενο που πρέπει να δούμε πως το χειρίζεται η γραμματοσειρά και αν ξεχειλίζει από τις γραμμές και δημιουργεί πρόβλημα; +} + +Διαγραφή Delete Tag + +Μπορείτε να διαγράφεται κείμενο, αλλά δεν συνιστάται. + +Έμφαση Emphasize Tag + +Θα πρέπει να κάνει ιταλικ italicize το κείμενο. + +Εισαγωγή Insert Tag + +Αυτό το tag υποδηλώνει εισηγμένο inserted κείμενο. + +Keyboard Tag + +Αυτό το ελάχιστο γνωστό κείμενο πληκτρολογίου keyboard Tag, συνήθως μορφοποιείται όμοια με το <κώδικα code> tag. + +Προδιαμορφωμένο Preformatted Tag +

    Ο Δρόμος που δεν διάλεξα - The Road Not Taken

    +
    Robert Frost
    +	 Δυο δρόμοι διασταυρώθηκαν σ' ένα χρυσαφένιο δάσος ,
    +	 Και προς λύπη μου και τους δυο τα πόδια μου να ταξιδέψουν δεν μπορούσαν
    +	 Κι επί μακρόν εστάθηκα , καθώς ένας ήμουν ταξιδευτής μονάχος ,
    +	 κι έστρεψα το βλέμμα μου στον πρώτο όσο να χαθεί στο βάθος
    +	 μέχρι εκεί που χάνονταν στα άγρια χόρτα που βλαστούσαν.
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	και μία μακριά, πάρα πολύ μακριά, υπερβολικά μακροσκελής δίχως νόημα πρόταση για να δούμε πως το χειρίζεται το θέμα εμφάνισης και αν αναδιπλώνεται, κρύβεται ή ξεχειλίζει;
    +
    +Quote Tag for short, inline quotes + +Προγραμματιστές, προγραμματιστές, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +Αυτή η ετικέτα είναι με διαγράμμιση strike-through κείμενο text. + +Μικρά Small Tag + +Αυτή η ετικέτα είναι μικρότερο smaller κείμενο text. + +Strong Tag + +Αυτή η ετικέτα δείχνει έντονο bold κείμενο text. + +Subscript Tag + +Getting our science styling on with H2 δύοO, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2 δύο, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +Αυτή η ετικέτα δείχνει τυλετυπος teletype κείμενο, which is usually styled like the <κώδικα code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +Αυτή η ετικέτα δείχνει υπογράμμιση underlined text. + +Variable Tag + +Αυτή η ετικέτα δείχνει παράμετροι variables.]]>
    + + 1809 + + + + + + + 0 + 0 + + + 0 + + + + + + + + +
    + + Επίπεδο 2 -Second Greek level + https://wpthemetestdata.wordpress.com//greek/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-2/ + Fri, 14 Feb 2020 10:31:47 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1811 + + + + 1811 + + + + + + + 1809 + 0 + + + 0 + + + + + + + + + + + Επίπεδο 3 + https://wpthemetestdata.wordpress.com/greek/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-2/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-3/ + Fri, 14 Feb 2020 10:32:50 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1813 + + + + 1813 + + + + + + + 1811 + 0 + + + 0 + + + + + + + + + + + <![CDATA[WP 6.1 Font size scale]]> + https://wpthemetestdata.wordpress.com/wp-6-1-font-size-scale/ + Mon, 16 Jan 2023 07:08:31 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-font-size-scale/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Small H2 Heading

    + + + +

    Medium H2 Heading

    + + + +

    Large H2 Heading

    + + + +

    Extra Large H2 Heading

    + + + +

    Small paragraph

    + + + +

    Medium paragraph

    + + + +

    Large paragraph

    + + + +

    Extra Large paragraph

    +]]> +
    + + 163 + + + + + + + + + 0 + 0 + + + 0 + + + + + + +
    + + <![CDATA[WP 6.1 spacing presets]]> + https://wpthemetestdata.wordpress.com/wp-6-1-spacing-presets/ + Mon, 16 Jan 2023 06:56:53 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-spacing-presets/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    On this page, some group blocks have border or background color set to increase visibility.

    + + + +
    +

    This group has a no background color and no additional spacing set.

    +
    + + + +
    +

    This group has a background color but no additional spacing set.

    +
    + + + +
    +

    This group has a 1px border and padding preset 1

    +
    + + + +
    +

    This group has padding preset 1

    +
    + + + +
    +

    This group has a 1px border and padding preset 2

    +
    + + + +
    +

    This group has a background color and padding preset 3

    +
    + + + +
    +

    This group has a background color and padding preset 4

    +
    + + + +
    +

    This group has a background color and padding preset 5

    +
    + + + +
    +

    This group has a background color and padding preset 6

    +
    + + + +
    +

    This group has a background color and padding preset 7

    +
    + + + +
    +

    This group has padding preset 7

    +
    + + + +
    +

    This group has a background color and margin preset 1

    +
    + + + +
    +

    This group has a background color and margin preset 2

    +
    + + + +
    +

    This group has a background color and margin preset 3

    +
    + + + +
    +

    This group has a background color and margin preset 4

    +
    + + + +
    +

    This group has a background color and margin preset 5

    +
    + + + +
    +

    This group has a background color and margin preset 6

    +
    + + + +
    +

    This group has a background color and margin preset 7

    +
    + + + +
    +

    This group has a 1px border, padding preset 4 and margin preset 4

    +
    + + + +
    +

    This group has padding preset 4 and margin preset 4

    +
    +]]>
    + + 150 + + + + + + + + + 0 + 0 + + + 0 + + + + + + +
    + + <![CDATA[WP 6.1 Theme block category]]> + https://wpthemetestdata.wordpress.com/wp-6-1-theme-block-category/ + Fri, 13 Jan 2023 18:38:05 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-theme-block-category/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Navigation block with page list:

    + + + + + + + +

    Site logo:

    + + + + + +

    Site title:

    + + + + + +

    Tagline block:

    + + + + + +

    Query loop "Title & Date" variation:

    + + + +
    + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Title & Excerpt" variation:

    + + + +
    + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Title, Date & Excerpt" variation:

    + + + +
    + + + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Image, Date & Title" variation:

    + + + +
    + + + + + + + + + + + + + + + + + +

    + +
    + + + +

    Avatar block:

    + + + + + +

    Post title block:

    + + + + + +

    Post excerpt:

    + + + + + +

    Post featured image:

    + + + + + +

    Post author:

    + + + + + +

    Post date:

    + + + + + +

    Categories:

    + + + + + +

    Tags:

    + + + + + +

    Next post & previous post:

    + + + + + + + +

    Read More:

    + + + + + +

    Comments block:

    + + + +
    + + + +
    +
    + + + +
    + + +
    + +
    + + + + +
    +
    + + + + + + + + + + + + + + +

    Post comments form block:

    +
    + + + + + +

    Login/out:

    + + + + + + + + + + + +

    Author biography block:

    + + + + + + + + + +

    Term description, archive title, search results title can not be shown on single posts.

    +]]>
    + + 51 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + + + + 2 + + + https://wpthemetestdata.wordpress.com/ + + + + + + + 0 + 0 + +
    + + <![CDATA[WP 6.1 Widgets block category]]> + https://wpthemetestdata.wordpress.com/wp-6-1-widgets-block-category/ + Fri, 13 Jan 2023 18:22:21 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-widgets-block-category/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Archives block:

    + + + + + + + +

    Categories list:

    + + + + + +

    Custom HTML:

    + + + + test + + + +

    Latest comments:

    + + + + + +

    Latest posts:

    + + + + + +

    Page list block:

    + + + + + +

    RSS block:

    + + + + + + + + + + + + + + + +

    Shortcode block:

    + + + + + +

    Social links:

    + + + + + + + + + + + + + + + +

    Tag cloud:

    + + + + + +

    +]]>
    + + 34 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Design category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-design-category-blocks/ + Fri, 13 Jan 2023 18:03:23 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-design-category-blocks/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + + + + + +
    +
    +

    One single column inside a columns block.

    +
    +
    + + + +
    +
    +

    Column one. The background color is on the single column.

    +
    + + + +
    +

    Column two

    +
    +
    + + + +
    +
    +

    Column one. The background color is on the parent columns block.

    +
    + + + +
    +

    Column two

    +
    + + + +
    +

    Column three

    +
    +
    + + + +
    +

    Group with paragraph inside. Below are the group block variations:

    +
    + + + +
    +

    Row

    + + + +

    Row

    +
    + + + +
    +

    Stack

    + + + +

    Stack

    +
    + + + +

    More block:

    + + + + + + + +

    Page break:

    + + + + + + + +

    Separators:

    + + + +

    Default style, no alignment:

    + + + +
    + + + +

    Default style, wide alignment:

    + + + +
    + + + +

    Default style, full width:

    + + + +
    + + + +

    Default style, align center:

    + + + +
    + + + +

    Wide style, no alignment:

    + + + +
    + + + +

    Wide style, wide alignment:

    + + + +
    + + + +

    Wide style, full width:

    + + + +
    + + + +

    Wide style, align center:

    + + + +
    + + + +

    Dotted style, no alignment:

    + + + +
    + + + +

    Dotted style, wide alignment:

    + + + +
    + + + +

    Dotted style, full width:

    + + + +
    + + + +

    Dotted style, align center:

    + + + +
    + + + +

    Spacer:

    + + + + +]]>
    + + 24 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Media category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-media-category-blocks/ + Fri, 13 Jan 2023 18:02:28 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-media-category-blocks/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Image block:

    + + + +
    dsc20050727_091048_222
    + + + +

    Gallery:

    + + + + + + + +

    Audio:

    + + + +
    + + + +

    Cover:

    + + + +
    Wind Farm
    +

    Write title...

    +
    + + + +
    +

    Fixed background

    +
    + + + +
    +

    Repeated background

    +
    + + + +
    +

    Fixed and Repeated background

    +
    + + + +
    dsc20050727_091048_222
    +

    Duotone

    +
    + + + +
    Rain Ripples
    +

    Top left

    +
    + + + +
    Rain Ripples
    +

    Top center

    +
    + + + +
    Rain Ripples
    +

    Top right

    +
    + + + +
    Rain Ripples
    +

    Center left

    +
    + + + +
    Rain Ripples
    +

    Center right

    +
    + + + +
    Rain Ripples
    +

    Bottom left

    +
    + + + +
    Rain Ripples
    +

    Bottom center

    +
    + + + +
    Rain Ripples
    +

    Bottom right

    +
    + + + + + + + +
    Boardwalk
    +

    This is the Media & Text block with an image on the left.

    +
    + + + +
    Image Alignment 1200x4002
    +

    This is the Media & Text block with a cropped image on the left

    +
    + + + +
    +

    This is the Media & Text block with a video the right.

    +
    + + + +
    +]]>
    + + 21 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Text category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-text-category-blocks/ + Fri, 13 Jan 2023 17:46:19 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-text-category-blocks + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Paragraph

    + + + +

    H1 Heading

    + + + +

    H2 Heading

    + + + +

    H3 Heading

    + + + +

    H4 Heading

    + + + +
    H5 Heading
    + + + +
    H6 Heading
    + + + +
      +
    • List
    • + + + +
    • List
    • +
    + + + +
      +
    1. List
    2. + + + +
    3. List
    4. +
    + + + +
      +
    1. List +
        +
      • List
      • +
      +
    2. +
    + + + +
    +

    Quote block

    +citation
    + + +

    classic block

    + + +
    code block
    + + + +
    Preformatted block
    + + + +

    Pull quote

    Citation
    + + + +
    table celltable cell two
    table cell threetable cell four
    Table caption
    + + + +
    header label oneheader label two
    table celltable cell two
    table cell threetable cell four
    footer label onefooter label two
    Table caption
    + + + +
    Verse block
    +]]>
    + + 8 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + +
    + + Keyboard navigation + https://wpthemetestdata.wordpress.com/2018/10/20/keyboard-navigation/ + Sun, 21 Oct 2018 03:03:48 +0000 + + https://wpthemetestdata.wordpress.com/?p=1724 + + +

    There are many different ways to use the web besides a mouse and a pair of eyes. Users navigate for example with a keyboard only or with their voice.

    + + + +

    All the functionality, including menus, links and forms should work using a keyboard only. This is essential for all assistive technology to work properly. The only way to test this, at the moment, is manually. The best time to test this is during development.

    + + + +

    How to keyboard test:

    + + + +

    Tab through your pages, links and forms to do the following tests:

    + + + +
    • Confirm that all links can be reached and activated via keyboard, including any in dropdown submenus.
    • Confirm that all links get a visible focus indicator (e.g., a border highlight).
    • Confirm that all visually hidden links (e.g. skip links) become visible when in focus.
    • Confirm that all form input fields and buttons can be accessed and used via keyboard.
    • Confirm that all interactions, buttons, and other controls can be triggered via keyboard — any action you can complete with a mouse must also be performable via keyboard.
    • Confirm that focus doesn’t move in unexpected ways around the page.
    • Confirm that using shift+tab to move backwards works as well.
    + + + +

    Resources

    + + + + +]]>
    + + 1724 + + + + + + + 0 + 0 + + + + 0 +
    + + About The Tests + https://wpthemetestdata.wordpress.com/about/ + Mon, 26 Jul 2010 02:40:01 +0000 + themedemos + https://wpthemetestdata.wordpress.com/about/ + + WordPress Theme Development Resources + +
      +
    1. See the WordPress Theme Developer Handbook for examples of best practices.
    2. +
    3. See the WordPress Code Reference for more information about WordPress' functions, classes, methods, and hooks.
    4. +
    5. See Theme Unit Test for a robust test suite for your Theme and get the latest version of the test data you see here.
    6. +
    7. See Releasing Your Theme for a guide to submitting your Theme to the Theme Directory.
    8. +
    ]]>
    + + 2 + 2010-07-25 19:40:01 + 2010-07-26 02:40:01 + closed + closed + about + publish + 0 + 1 + page + + 0 +
    + + Lorem Ipsum + https://wpthemetestdata.wordpress.com/lorem-ipsum/ + Tue, 04 Sep 2007 16:52:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/lorem-ipsum/ + + + + 146 + 2007-09-04 09:52:50 + 2007-09-04 16:52:50 + closed + closed + lorem-ipsum + publish + 0 + 7 + page + + 0 + + + Page with comments + https://wpthemetestdata.wordpress.com/about/page-with-comments/ + Tue, 04 Sep 2007 17:47:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/page-with-comments/ + + + + 155 + 2007-09-04 10:47:47 + 2007-09-04 17:47:47 + open + closed + page-with-comments + publish + 2 + 3 + page + + 0 + + 167 + + anon@example.com + + + 2007-09-04 10:49:28 + 2007-09-04 00:49:28 + + 1 + + 0 + 0 + + + 168 + + tellyworth+test2@example.com + + + 2007-09-04 10:49:03 + 2007-09-04 00:49:03 + + 1 + + 0 + 0 + + + 169 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2007-09-04 10:48:51 + 2007-09-04 17:48:51 + + 1 + + 0 + 0 + + + 1017 + + themereviewteam@gmail.com + + + 2014-12-10 01:56:24 + 2014-12-10 08:56:24 + + 0 + + 168 + 0 + + + + Page with comments disabled + https://wpthemetestdata.wordpress.com/about/page-with-comments-disabled/ + Tue, 04 Sep 2007 17:48:10 +0000 + themedemos + https://wpthemetestdata.wordpress.com/page-with-comments-disabled/ + + + + 156 + 2007-09-04 10:48:10 + 2007-09-04 17:48:10 + closed + closed + page-with-comments-disabled + publish + 2 + 4 + page + + 0 + + + Level 3 + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3/ + Tue, 11 Dec 2007 06:23:16 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-3/ + + + + 172 + 2007-12-11 16:23:16 + 2007-12-11 06:23:16 + closed + closed + level-3 + publish + 173 + 0 + page + + 0 + + + Level 2 + https://wpthemetestdata.wordpress.com/level-1/level-2/ + Tue, 11 Dec 2007 06:23:33 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-2/ + + + + 173 + 2007-12-11 16:23:33 + 2007-12-11 06:23:33 + closed + closed + level-2 + publish + 174 + 0 + page + + 0 + + + Level 1 + https://wpthemetestdata.wordpress.com/level-1/ + Tue, 11 Dec 2007 23:25:40 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-1/ + + + + 174 + 2007-12-11 16:25:40 + 2007-12-11 23:25:40 + closed + closed + level-1 + publish + 0 + 5 + page + + 0 + + + Clearing Floats + https://wpthemetestdata.wordpress.com/about/clearing-floats/ + Sun, 01 Aug 2010 16:42:26 +0000 + themedemos + https://wpthemetestdata.wordpress.com/ + + This is the second page]]> + + 501 + 2010-08-01 09:42:26 + 2010-08-01 16:42:26 + closed + closed + clearing-floats + publish + 2 + 2 + page + + 0 + + + canola2 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/canola2/ + Mon, 16 Jun 2008 13:17:54 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/canola2.jpg + + + + 611 + 2008-06-16 06:17:54 + 2008-06-16 13:17:54 + open + closed + canola2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/canola2.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + dsc20050727_091048_222 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050727_091048_222/ + Mon, 16 Jun 2008 13:20:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050727_091048_222.jpg + + + + 616 + 2008-06-16 06:20:37 + 2008-06-16 13:20:37 + open + closed + dsc20050727_091048_222 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050727_091048_222.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + dsc20050813_115856_52 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050813_115856_52/ + Mon, 16 Jun 2008 13:20:57 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050813_115856_52.jpg + + + + 617 + 2008-06-16 06:20:57 + 2008-06-16 13:20:57 + open + closed + dsc20050813_115856_52 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050813_115856_52.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Front Page + https://wpthemetestdata.wordpress.com/front-page/ + Sat, 21 May 2011 01:49:43 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=701 + + + + 701 + 2011-05-20 18:49:43 + 2011-05-21 01:49:43 + open + closed + front-page + publish + 0 + 0 + page + + 0 + + + a Blog page + https://wpthemetestdata.wordpress.com/blog/ + Sat, 21 May 2011 01:51:43 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=703 + + + + 703 + 2011-05-20 18:51:43 + 2011-05-21 01:51:43 + open + closed + blog + publish + 0 + 0 + page + + 0 + + 1016 + + example@example.com + + + 2014-11-29 21:03:05 + 2014-11-30 04:03:05 + + 0 + + 0 + 0 + + + + Bell on Wharf + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/100_5478/ + Mon, 16 Jun 2008 21:34:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/100_5478.jpg + + + + 754 + 2008-06-16 14:34:50 + 2008-06-16 21:34:50 + open + closed + 100_5478 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/100_5478.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Golden Gate Bridge + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/100_5540/ + Mon, 16 Jun 2008 21:35:55 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/100_5540.jpg + + + + 755 + 2008-06-16 14:35:55 + 2008-06-16 21:35:55 + open + closed + 100_5540 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/100_5540.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sunburst Over River + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/cep00032/ + Mon, 16 Jun 2008 21:41:24 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/cep00032.jpg + + + + 756 + 2008-06-16 14:41:24 + 2008-06-16 21:41:24 + open + closed + cep00032 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/cep00032.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Boardwalk + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dcp_2082/ + Mon, 16 Jun 2008 21:41:27 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dcp_2082.jpg + + + + 757 + 2008-06-16 14:41:27 + 2008-06-16 21:41:27 + open + closed + dcp_2082 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dcp_2082.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Yachtsody in Blue + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc03149/ + Mon, 16 Jun 2008 21:41:33 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc03149.jpg + + + + 758 + 2008-06-16 14:41:33 + 2008-06-16 21:41:33 + open + closed + dsc03149 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc03149.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Rain Ripples + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc04563/ + Mon, 16 Jun 2008 21:41:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc04563.jpg + + + + 759 + 2008-06-16 14:41:37 + 2008-06-16 21:41:37 + open + closed + dsc04563 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc04563.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sydney Harbor Bridge + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc09114/ + Mon, 16 Jun 2008 21:41:41 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc09114.jpg + + + + 760 + 2008-06-16 14:41:41 + 2008-06-16 21:41:41 + open + closed + dsc09114 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc09114.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Wind Farm + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050102_192118_51/ + Mon, 16 Jun 2008 21:41:42 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050102_192118_51.jpg + + + + 761 + 2008-06-16 14:41:42 + 2008-06-16 21:41:42 + open + closed + dsc20050102_192118_51 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050102_192118_51.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Antique Farm Machinery + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20051220_160808_102/ + Mon, 16 Jun 2008 21:41:45 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_160808_102.jpg + + + + 762 + 2008-06-16 14:41:45 + 2008-06-16 21:41:45 + open + closed + dsc20051220_160808_102 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_160808_102.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Rusty Rail + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20051220_173257_119/ + Mon, 16 Jun 20081 21:47:17 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_173257_119.jpg + + + + 764 + 2008-06-16 14:47:17 + 2008-06-16 21:47:17 + open + closed + dsc20051220_173257_119 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_173257_119.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sea and Rocks + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dscn3316/ + Mon, 16 Jun 2008 21:47:20 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dscn3316.jpg + + + + 765 + 2008-06-16 14:47:20 + 2008-06-16 21:47:20 + open + closed + dscn3316 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dscn3316.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Big Sur + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/michelle_049/ + Mon, 16 Jun 2008 21:47:23 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/michelle_049.jpg + + + + 766 + 2008-06-16 14:47:23 + 2008-06-16 21:47:23 + open + closed + michelle_049 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/michelle_049.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Windmill + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dcf-1-0/ + Mon, 16 Jun 2008 21:47:26 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/windmill.jpg + + + + 767 + 2008-06-16 14:47:26 + 2008-06-16 21:47:26 + open + closed + dcf-1-0 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/windmill.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Huatulco Coastline + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/alas-i-have-found-my-shangri-la/ + Mon, 16 Jun 2008 21:49:48 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0513-1.jpg + + + + 768 + 2008-06-16 14:49:48 + 2008-06-16 21:49:48 + open + closed + alas-i-have-found-my-shangri-la + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0513-1.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Brazil Beach + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_0747/ + Mon, 16 Jun 2008 21:50:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0747.jpg + + + + 769 + 2008-06-16 14:50:37 + 2008-06-16 21:50:37 + open + closed + img_0747 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0747.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Huatulco Coastline + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_0767/ + Mon, 16 Jun 2008 21:51:19 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0767.jpg + + + + 770 + 2008-06-16 14:51:19 + 2008-06-16 21:51:19 + open + closed + img_0767 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0767.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Boat Barco Texture + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_8399/ + Mon, 16 Jun 2008 21:51:57 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_8399.jpg + + + + 771 + 2008-06-16 14:51:57 + 2008-06-16 21:51:57 + open + closed + img_8399 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_8399.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Resinous + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20040724_152504_532-2/ + Mon, 04 Jun 2012 18:36:56 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg + + + + 807 + 2012-06-04 11:36:56 + 2012-06-04 18:36:56 + open + closed + dsc20040724_152504_532-2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg + + _attachment_original_parent_id + + + + + St. Louis Blues + https://wpthemetestdata.wordpress.com/2010/07/02/post-format-audio/originaldixielandjazzbandwithalbernard-stlouisblues/ + Mon, 16 Jun 2008 16:49:29 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3 + + + + 821 + 2008-06-16 09:49:29 + 2008-06-16 16:49:29 + open + closed + originaldixielandjazzbandwithalbernard-stlouisblues + inherit + 587 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3 + + + OLYMPUS DIGITAL CAMERA + https://wpthemetestdata.wordpress.com/about/clearing-floats/olympus-digital-camera/ + Thu, 05 Aug 2010 18:07:34 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2010/08/manhattansummer.jpg + + + + 827 + 2010-08-05 11:07:34 + 2010-08-05 18:07:34 + open + closed + olympus-digital-camera + inherit + 501 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2010/08/manhattansummer.jpg + + + Image Alignment 580x300 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-580x300/ + Fri, 15 Mar 2013 00:44:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg + + + + 967 + 2013-03-14 19:44:50 + 2013-03-15 00:44:50 + open + open + image-alignment-580x300 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Image Alignment 150x150 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-150x150/ + Fri, 15 Mar 2013 00:44:49 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg + + + + 968 + 2013-03-14 19:44:49 + 2013-03-15 00:44:49 + open + open + image-alignment-150x150 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Horizontal Featured Image + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-horizontal/featured-image-horizontal-2/ + Fri, 15 Mar 2013 20:40:38 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-horizontal.jpg + + + + 1022 + 2013-03-15 15:40:38 + 2013-03-15 20:40:38 + open + open + featured-image-horizontal-2 + inherit + 1011 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-horizontal.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + I Am Worth Loving Wallpaper + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/soworthloving-wallpaper/ + Thu, 14 Mar 2013 14:58:24 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/soworthloving-wallpaper.jpg + + + + 1023 + 2013-03-14 09:58:24 + 2013-03-14 14:58:24 + open + open + soworthloving-wallpaper + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/soworthloving-wallpaper.jpg + + _wp_attachment_image_alt + + + + + Image Alignment 300x200 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-300x200/ + Fri, 15 Mar 2013 00:44:49 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg + + + + 1025 + 2013-03-14 19:44:49 + 2013-03-15 00:44:49 + open + open + image-alignment-300x200 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Vertical Featured Image + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-vertical/featured-image-vertical-2/ + Fri, 15 Mar 2013 20:41:09 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-vertical.jpg + + + + 1027 + 2013-03-15 15:41:09 + 2013-03-15 20:41:09 + open + open + featured-image-vertical-2 + inherit + 1016 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-vertical.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Image Alignment 1200x4002 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-1200x4002/ + Fri, 15 Mar 2013 00:44:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg + + + + 1029 + 2013-03-14 19:44:50 + 2013-03-15 00:44:50 + open + open + image-alignment-1200x4002 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Unicorn Wallpaper + https://wpthemetestdata.wordpress.com/2010/08/08/post-format-image/unicorn-wallpaper/ + Fri, 14 Dec 2012 03:10:39 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2012/12/unicorn-wallpaper.jpg + + + + 1045 + 2012-12-13 22:10:39 + 2012-12-14 03:10:39 + open + open + unicorn-wallpaper + inherit + 1158 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2012/12/unicorn-wallpaper.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Pages + https://wpthemetestdata.wordpress.com/2013/04/09/pages/ + Tue, 09 Apr 2013 13:37:45 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/pages + + + + 1100 + 2013-04-09 06:37:45 + 2013-04-09 13:37:45 + open + closed + pages + publish + 0 + 2 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Categories + https://wpthemetestdata.wordpress.com/2013/04/09/categories/ + Tue, 09 Apr 2013 13:37:45 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/categories + + + + 1101 + 2013-04-09 06:37:45 + 2013-04-09 13:37:45 + open + closed + categories + publish + 0 + 10 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1112/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1112</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test markup tags and styles.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1112</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1112</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>21</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[4675]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1115/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1115</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test post formats.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1115</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1115</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>24</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[44090582]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1118/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1118</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test unpublished posts.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1118</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1118</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>28</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[54090]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>Depth + https://wpthemetestdata.wordpress.com/2013/04/09/depth/ + Tue, 09 Apr 2013 13:37:46 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/depth + + + + 1119 + 2013-04-09 06:37:46 + 2013-04-09 13:37:46 + open + closed + depth + publish + 0 + 29 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 01 + https://wpthemetestdata.wordpress.com/2013/04/09/level-01/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-01 + + + + 1120 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-01 + publish + 0 + 30 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 02 + https://wpthemetestdata.wordpress.com/2013/04/09/level-02/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-02 + + + + 1121 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-02 + publish + 0 + 31 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 03 + https://wpthemetestdata.wordpress.com/2013/04/09/level-03/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-03 + + + + 1122 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-03 + publish + 0 + 32 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 04 + https://wpthemetestdata.wordpress.com/2013/04/09/level-04/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-04 + + + + 1123 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-04 + publish + 0 + 33 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 05 + https://wpthemetestdata.wordpress.com/2013/04/09/level-05/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-05 + + + + 1124 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-05 + publish + 0 + 34 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 06 + https://wpthemetestdata.wordpress.com/2013/04/09/level-06/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-06 + + + + 1125 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-06 + publish + 0 + 35 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 07 + https://wpthemetestdata.wordpress.com/2013/04/09/level-07/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-07 + + + + 1126 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-07 + publish + 0 + 36 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 08 + https://wpthemetestdata.wordpress.com/2013/04/09/level-08/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-08 + + + + 1127 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-08 + publish + 0 + 37 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 09 + https://wpthemetestdata.wordpress.com/2013/04/09/level-09/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-09 + + + + 1128 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-09 + publish + 0 + 38 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 10 + https://wpthemetestdata.wordpress.com/2013/04/09/level-10/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-10 + + + + 1129 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-10 + publish + 0 + 39 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Advanced + https://wpthemetestdata.wordpress.com/2013/04/09/advanced/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/advanced + + + + 1130 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + advanced + publish + 0 + 40 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu Description + https://wpthemetestdata.wordpress.com/2013/04/09/menu-description/ + Tue, 09 Apr 2013 13:37:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-description + + + + 1142 + 2013-04-09 06:37:50 + 2013-04-09 13:37:50 + open + closed + menu-description + publish + 0 + 44 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu Title Attribute + https://wpthemetestdata.wordpress.com/2013/04/09/menu-title-attribute/ + Tue, 09 Apr 2013 13:37:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-title-attribute + + + + 1143 + 2013-04-09 06:37:50 + 2013-04-09 13:37:50 + open + closed + menu-title-attribute + publish + 0 + 41 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu CSS Class + https://wpthemetestdata.wordpress.com/2013/04/09/menu-css-class/ + Tue, 09 Apr 2013 13:37:51 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-css-class + + + + 1144 + 2013-04-09 06:37:51 + 2013-04-09 13:37:51 + open + closed + menu-css-class + publish + 0 + 42 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + New Window / Tab + https://wpthemetestdata.wordpress.com/2013/04/09/new-window-tab/ + Tue, 09 Apr 2013 13:37:51 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/new-window-tab + + + + 1145 + 2013-04-09 06:37:51 + 2013-04-09 13:37:51 + open + closed + new-window-tab + publish + 0 + 43 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1263/</link> + <pubDate>Tue, 09 Apr 2013 13:38:00 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1263</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1263</wp:post_id> + <wp:post_date>2013-04-09 06:38:00</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:38:00</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1263</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1100]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1264/</link> + <pubDate>Tue, 09 Apr 2013 13:38:01 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1264</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1264</wp:post_id> + <wp:post_date>2013-04-09 06:38:01</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:38:01</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1264</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1100]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>twitter.com + https://wpthemetestdata.wordpress.com/2018/10/20/twitter-com/ + Sun, 21 Oct 2018 02:57:33 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/twitter-com/ + + + + 1719 + + + + + + + 0 + 1 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + facebook.com + https://wpthemetestdata.wordpress.com/2018/10/20/facebook-com/ + Sun, 21 Oct 2018 02:57:35 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/facebook-com/ + + + + 1720 + + + + + + + 0 + 2 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + github.com + https://wpthemetestdata.wordpress.com/2018/10/20/github-com/ + Sun, 21 Oct 2018 02:57:37 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/github-com + + + + 1721 + + + + + + + 0 + 3 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + instagram.com + https://wpthemetestdata.wordpress.com/2018/10/20/instagram-com + Sun, 21 Oct 2018 02:57:41 +000 + themereviewteam> + https://wpthemetestdata.wordpress.com/2018/10/20/instagram-com + + + + 1723 + + + + + + + 0 + 5 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + linkedin.com + https://wpthemetestdata.wordpress.com/2018/10/20/linkedin-com/ + Sun, 21 Oct 2018 02:57:39 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/linkedin-com/ + + + + 1722 + + + + + + + 0 + 4 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + triforce-wallpaper + https://wpthemetestdata.wordpress.com/2010/08/07/post-format-image-caption/triforce-wallpaper/ + Tue, 17 Aug 2010 20:17:31 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2010/08/triforce-wallpaper.jpg + + + + 1628 + 2010-08-17 13:17:31 + 2010-08-17 20:17:31 + open + closed + triforce-wallpaper + inherit + 1163 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2010/08/triforce-wallpaper.jpg + + + + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1636/</link> + <pubDate>Tue, 07 May 2013 19:54:30 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1636</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1636</wp:post_id> + <wp:post_date>2013-05-07 12:54:30</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:30</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1636</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1637/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1637</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1637</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1637</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1638/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1638</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1638</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1638</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1639/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1639</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1639</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1639</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1640/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1640</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1640</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1640</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1641/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1641</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1641</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1641</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1643/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1643</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1643</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1643</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1644/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1644</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1644</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1644</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[701]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1645/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1645</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1645</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1645</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1646/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1646</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1646</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1646</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1647/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1647</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1647</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1647</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1648/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1648</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1648</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1648</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1649/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1649</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1649</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1649</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1650/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1650</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1650</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1650</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1651/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1651</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1651</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1651</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>10</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[174]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1652/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1652</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1652</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1652</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>11</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[173]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1653/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1653</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1653</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1653</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>12</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[172]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1654/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1654</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1654</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1654</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>13</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[746]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1655/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1655</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1655</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1655</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>14</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[748]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1656/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1656</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1656</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1656</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>15</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[742]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1657/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1657</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1657</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1657</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>16</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[744]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1658/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1658</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1658</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1658</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>17</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1659/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1659</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1659</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1659</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>18</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[733]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1660/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1660</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1660</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1660</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>19</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[735]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1643/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1643</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1643</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1643</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1644/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1644</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1644</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1644</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[701]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1645/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1645</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1645</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1645</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1646/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1646</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1646</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1646</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1647/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1647</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1647</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1647</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1648/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1648</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1648</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1648</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1649/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1649</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1649</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1649</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1650/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1650</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1650</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1650</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1651/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1651</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1651</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1651</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>10</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[174]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1652/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1652</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1652</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1652</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>11</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[173]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1653/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1653</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1653</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1653</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>12</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[172]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1654/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1654</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1654</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1654</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>13</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[746]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1655/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1655</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1655</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1655</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>14</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[748]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1656/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1656</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1656</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1656</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>15</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[742]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1657/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1657</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1657</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1657</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>16</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[744]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1658/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1658</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1658</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1658</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>17</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1659/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1659</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1659</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1659</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>18</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[733]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1660/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1660</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1660</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1660</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>19</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[735]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>dsc20040724_152504_532 + https://wpthemetestdata.wordpress.com/?attachment_id=1686 + Wed, 18 Sep 2013 21:37:05 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20040724_152504_532.jpg + + + + 1686 + 2013-09-18 14:37:05 + 2013-09-18 21:37:05 + open + closed + dsc20040724_152504_532 + inherit + 0 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20040724_152504_532.jpg + + + dsc20050604_133440_34211 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050604_133440_34211/ + Wed, 18 Sep 2013 21:37:07 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20050604_133440_34211.jpg + + + + 1687 + 2013-09-18 14:37:07 + 2013-09-18 21:37:07 + open + closed + dsc20050604_133440_34211 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20050604_133440_34211.jpg + + + 2014-slider-mobile-behavior + https://wpthemetestdata.wordpress.com/?attachment_id=1690 + Wed, 04 Dec 2013 18:08:29 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/12/2014-slider-mobile-behavior.mov + + + + 1690 + 2013-12-04 11:08:29 + 2013-12-04 18:08:29 + open + closed + 2014-slider-mobile-behavior + inherit + 0 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/12/2014-slider-mobile-behavior.mov + + + dsc20050315_145007_132 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050315_145007_132-2/ + Sun, 05 Jan 2014 18:45:21 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2014/01/dsc20050315_145007_132.jpg + + + + 1691 + 2014-01-05 11:45:21 + 2014-01-05 18:45:21 + open + closed + dsc20050315_145007_132-2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2014/01/dsc20050315_145007_132.jpg + + + spectacles + https://wpthemetestdata.wordpress.com/about/clearing-floats/spectacles-2/ + Sun, 05 Jan 2014 18:45:36 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2014/01/spectacles.gif + + + + 1692 + 2014-01-05 11:45:36 + 2014-01-05 18:45:36 + open + closed + spectacles-2 + inherit + 501 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2014/01/spectacles.gif + + + Post Format: Standard + https://wpthemetestdata.wordpress.com/2010/10/05/post-format-standard/ + Tue, 05 Oct 2010 07:27:25 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=358 + + + +Mrs. Darling first heard of Peter when she was tidying up her children's minds. It is the nightly custom of every good mother after her children are asleep to rummage in their minds and put things straight for next morning, repacking into their proper places the many articles that have wandered during the day. + +If you could keep awake (but of course you can't) you would see your own mother doing this, and you would find it very interesting to watch her. It is quite like tidying up drawers. You would see her on her knees, I expect, lingering humorously over some of your contents, wondering where on earth you had picked this thing up, making discoveries sweet and not so sweet, pressing this to her cheek as if it were as nice as a kitten, and hurriedly stowing that out of sight. When you wake in the morning, the naughtiness and evil passions with which you went to bed have been folded up small and placed at the bottom of your mind and on the top, beautifully aired, are spread out your prettier thoughts, ready for you to put on. + +I don't know whether you have ever seen a map of a person's mind. Doctors sometimes draw maps of other parts of you, and your own map can become intensely interesting, but catch them trying to draw a map of a child's mind, which is not only confused, but keeps going round all the time. There are zigzag lines on it, just like your temperature on a card, and these are probably roads in the island, for the Neverland is always more or less an island, with astonishing splashes of colour here and there, and coral reefs and rakish-looking craft in the offing, and savages and lonely lairs, and gnomes who are mostly tailors, and caves through which a river runs, and princes with six elder brothers, and a hut fast going to decay, and one very small old lady with a hooked nose. It would be an easy map if that were all, but there is also first day at school, religion, fathers, the round pond, needle-work, murders, hangings, verbs that take the dative, chocolate pudding day, getting into braces, say ninety-nine, three-pence for pulling out your tooth yourself, and so on, and either these are part of the island or they are another map showing through, and it is all rather confusing, especially as nothing will stand still. + +Of course the Neverlands vary a good deal. John's, for instance, had a lagoon with flamingoes flying over it at which John was shooting, while Michael, who was very small, had a flamingo with lagoons flying over it. John lived in a boat turned upside down on the sands, Michael in a wigwam, Wendy in a house of leaves deftly sewn together. John had no friends, Michael had friends at night, Wendy had a pet wolf forsaken by its parents, but on the whole the Neverlands have a family resemblance, and if they stood still in a row you could say of them that they have each other's nose, and so forth. On these magic shores children at play are for ever beaching their coracles [simple boat]. We too have been there; we can still hear the sound of the surf, though we shall land no more. + +Of all delectable islands the Neverland is the snuggest and most compact, not large and sprawly, you know, with tedious distances between one adventure and another, but nicely crammed. When you play at it by day with the chairs and table-cloth, it is not in the least alarming, but in the two minutes before you go to sleep it becomes very real. That is why there are night-lights. + +Occasionally in her travels through her children's minds Mrs. Darling found things she could not understand, and of these quite the most perplexing was the word Peter. She knew of no Peter, and yet he was here and there in John and Michael's minds, while Wendy's began to be scrawled all over with him. The name stood out in bolder letters than any of the other words, and as Mrs. Darling gazed she felt that it had an oddly cocky appearance.]]> + + 358 + 2010-10-05 00:27:25 + 2010-10-05 07:27:25 + closed + closed + post-format-standard + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Gallery + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/ + Fri, 10 Sep 2010 14:24:14 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=555 + + + +You can use this page to test the Theme's handling of the gallery shortcode, including the columns parameter, from 1 to 9 columns. Themes are only required to support the default setting (3 columns), so this page is entirely optional. +

    One Column

    +[gallery columns="1"] +

    Two Columns

    +[gallery columns="2"] +

    Three Columns

    +[gallery columns="3"] +

    Four Columns

    +[gallery columns="4"] +

    Five Columns

    +[gallery columns="5"] +

    Six Columns

    +[gallery columns="6"] +

    Seven Columns

    +[gallery columns="7"] +

    Eight Columns

    +[gallery columns="8"] +

    Nine Columns

    +[gallery columns="9"]]]>
    + + 555 + 2010-09-10 07:24:14 + 2010-09-10 14:24:14 + closed + closed + post-format-gallery + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Post Format: Aside + https://wpthemetestdata.wordpress.com/2010/05/09/post-format-aside/ + Sun, 09 May 2010 14:51:54 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=559 + + + + 559 + 2010-05-09 07:51:54 + 2010-05-09 14:51:54 + closed + closed + post-format-aside + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Chat + https://wpthemetestdata.wordpress.com/2010/01/08/post-format-chat/ + Fri, 08 Jan 2010 14:59:31 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=562 + + + + 562 + 2010-01-08 07:59:31 + 2010-01-08 14:59:31 + closed + closed + post-format-chat + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Link + https://wpthemetestdata.wordpress.com/2010/03/07/post-format-link/ + Sun, 07 Mar 2010 15:06:53 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=565 + + The WordPress Theme Review Team Website]]> + + 565 + 2010-03-07 08:06:53 + 2010-03-07 15:06:53 + closed + closed + post-format-link + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Image (Linked) + https://wpthemetestdata.wordpress.com/2010/08/06/post-format-image-linked/ + Fri, 06 Aug 2010 15:09:39 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=568 + + chunk of resinous blackboy husk[/caption] +]]> + + 568 + 2010-08-06 08:09:39 + 2010-08-06 15:09:39 + closed + closed + post-format-image-linked + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Quote + https://wpthemetestdata.wordpress.com/2010/02/05/post-format-quote/ + Fri, 05 Feb 2010 15:13:15 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=575 + + Only one thing is impossible for God: To find any sense in any copyright law on the planet. +Mark Twain]]> + + 575 + 2010-02-05 08:13:15 + 2010-02-05 15:13:15 + closed + closed + post-format-quote + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Status + https://wpthemetestdata.wordpress.com/2010/04/04/post-format-status/ + Sun, 04 Apr 2010 15:21:24 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=579 + + + + 579 + 2010-04-04 08:21:24 + 2010-04-04 15:21:24 + closed + closed + post-format-status + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Video (WordPress.tv) + https://wpthemetestdata.wordpress.com/2010/06/03/post-format-video-wordpresstv/ + Thu, 03 Jun 2010 15:25:58 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=582 + + instructions in the Codex.]]> + + 582 + 2010-06-03 08:25:58 + 2010-06-03 15:25:58 + closed + closed + post-format-video-wordpresstv + publish + 0 + 0 + post + + 0 + + + + + + + + + _oembed_4321638fc1a6fee26443f7fe8a70a871 + ]]> + + + _oembed_29351fff85c1be1d1e9a965a0332a861 + ]]> + + + _oembed_9fcc86d7d9398ff736577f922307f64d + ]]> + + + _oembed_366237792d32461d0052efb2edec37f5 + ]]> + + + _oembed_37fdfe862c13c46a93be2921279bf675 + ]]> + + + + Post Format: Audio + https://wpthemetestdata.wordpress.com/2010/07/02/post-format-audio/ + Fri, 02 Jul 2010 15:36:44 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=587 + + St. Louis Blues + +Audio shortcode: + +[audio https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3]]]> + + 587 + 2010-07-02 08:36:44 + 2010-07-02 15:36:44 + closed + closed + post-format-audio + publish + 0 + 0 + post + + 0 + + + + + + + + enclosure + + + + + Page A + https://wpthemetestdata.wordpress.com/page-a/ + Fri, 24 Jun 2011 01:38:52 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=733 + + + + 733 + 2011-06-23 18:38:52 + 2011-06-24 01:38:52 + open + closed + page-a + publish + 0 + 10 + page + + 0 + + + Page B + https://wpthemetestdata.wordpress.com/page-b/ + Fri, 24 Jun 2011 01:39:14 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=735 + + + + 735 + 2011-06-23 18:39:14 + 2011-06-24 01:39:14 + open + closed + page-b + publish + 0 + 11 + page + + 0 + + + Level 2a + https://wpthemetestdata.wordpress.com/level-1/level-2a/ + Fri, 24 Jun 2011 02:03:33 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=742 + + + + 742 + 2011-06-23 19:03:33 + 2011-06-24 02:03:33 + open + closed + level-2a + publish + 174 + 0 + page + + 0 + + + Level 2b + https://wpthemetestdata.wordpress.com/level-1/level-2b/ + Fri, 24 Jun 2011 02:04:03 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=744 + + + + 744 + 2011-06-23 19:04:03 + 2011-06-24 02:04:03 + open + closed + level-2b + publish + 174 + 0 + page + + 0 + + + Level 3a + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3a/ + Fri, 24 Jun 2011 02:04:24 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=746 + + + + 746 + 2011-06-23 19:04:24 + 2011-06-24 02:04:24 + open + closed + level-3a + publish + 173 + 0 + page + + 0 + + + Level 3b + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3b/ + Fri, 24 Jun 2011 02:04:46 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=748 + + + + 748 + 2011-06-23 19:04:46 + 2011-06-24 02:04:46 + open + closed + level-3b + publish + 173 + 0 + page + + 0 + + + Template: Excerpt (Defined) + https://wpthemetestdata.wordpress.com/2012/03/15/template-excerpt-defined/ + Thu, 15 Mar 2012 21:38:08 +0000 + themedemos + http://wptest.io/demo/?p=993 + + should be displayed in place of the user-defined excerpt in single-page views.]]> + should be displayed in place of the post content in archive-index pages. It can be longer than the automatically generated excerpts, and can have HTML tags.]]> + 993 + 2012-03-15 14:38:08 + 2012-03-15 21:38:08 + closed + closed + template-excerpt-defined + publish + 0 + 0 + post + + 0 + + + + + + + + + Template: More Tag + https://wpthemetestdata.wordpress.com/2012/03/15/template-more-tag/ + Thu, 15 Mar 2012 21:41:11 +0000 + themedemos + http://wptest.io/demo/?p=996 + + more tag. + +Right after this sentence should be a "continue reading" button of some sort on list pages of themes that show full content. It won't show on single pages or on themes showing excerpts. + + + +And this content is after the more tag. (which should be the anchor link for when the button is clicked)]]> + + 996 + 2012-03-15 14:41:11 + 2012-03-15 21:41:11 + closed + closed + template-more-tag + publish + 0 + 0 + post + + 0 + + + + + + + + + Edge Case: Nested And Mixed Lists + https://wpthemetestdata.wordpress.com/2009/05/15/edge-case-nested-and-mixed-lists/ + Fri, 15 May 2009 21:48:32 +0000 + themedemos + http://wptest.io/demo/?p=1000 + + +
  • Lists within lists do not break the ordered list numbering order
  • +
  • Your list styles go deep enough.
  • + +

    Ordered - Unordered - Ordered

    +
      +
    1. ordered item
    2. +
    3. ordered item +
        +
      • unordered
      • +
      • unordered +
          +
        1. ordered item
        2. +
        3. ordered item
        4. +
        +
      • +
      +
    4. +
    5. ordered item
    6. +
    7. ordered item
    8. +
    +

    Ordered - Unordered - Unordered

    +
      +
    1. ordered item
    2. +
    3. ordered item +
        +
      • unordered
      • +
      • unordered +
          +
        • unordered item
        • +
        • unordered item
        • +
        +
      • +
      +
    4. +
    5. ordered item
    6. +
    7. ordered item
    8. +
    +

    Unordered - Ordered - Unordered

    +
      +
    • unordered item
    • +
    • unordered item +
        +
      1. ordered
      2. +
      3. ordered +
          +
        • unordered item
        • +
        • unordered item
        • +
        +
      4. +
      +
    • +
    • unordered item
    • +
    • unordered item
    • +
    +

    Unordered - Unordered - Ordered

    +
      +
    • unordered item
    • +
    • unordered item +
        +
      • unordered
      • +
      • unordered +
          +
        1. ordered item
        2. +
        3. ordered item
        4. +
        +
      • +
      +
    • +
    • unordered item
    • +
    • unordered item
    • +
    ]]>
    + + 1000 + 2009-05-15 14:48:32 + 2009-05-15 21:48:32 + closed + closed + edge-case-nested-and-mixed-lists + publish + 0 + 0 + post + + 0 + + + + + + + +
    + + Template: Featured Image (Horizontal) + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-horizontal/ + Thu, 15 Mar 2012 22:15:12 +0000 + themedemos + http://wptest.io/demo/?p=1011 + + featured image, if the theme supports it. + +Non-square images can provide some unique styling issues. + +This post tests a horizontal featured image.]]> + + 1011 + 2012-03-15 15:15:12 + 2012-03-15 22:15:12 + closed + closed + template-featured-image-horizontal + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + + + + Template: Featured Image (Vertical) + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-vertical/ + Thu, 15 Mar 2012 22:36:32 +0000 + themedemos + http://wptest.io/demo/?p=1016 + + featured image, if the theme supports it. + +Non-square images can provide some unique styling issues. + +This post tests a vertical featured image.]]> + + 1016 + 2012-03-15 15:36:32 + 2012-03-15 22:36:32 + closed + closed + template-featured-image-vertical + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + + + + Post Format: Gallery (Tiled) + https://wpthemetestdata.wordpress.com/2010/09/09/post-format-gallery-tiled/ + Fri, 10 Sep 2010 00:23:27 +0000 + themedemos + http://wptest.io/demo/?p=1031 + + Jetpack to test. + +[gallery type="rectangular" columns="4" ids="755,757,758,760,766,763" orderby="rand"] + +This is some text after the Tiled Gallery just to make sure that everything spaces nicely.]]> + + 1031 + 2010-09-09 17:23:27 + 2010-09-10 00:23:27 + closed + closed + post-format-gallery-tiled + publish + 0 + 0 + post + + 0 + + + + + + + + + + + Page Image Alignment + https://wpthemetestdata.wordpress.com/about/page-image-alignment/ + Fri, 15 Mar 2013 23:19:23 +0000 + themedemos + http://wptest.io/demo/?page_id=1080 + + None, Left, Right, and Center. In addition, they also get the options of Thumbnail, Medium, Large & Fullsize. Be sure to try this page in RTL mode and it should look the same as LTR. +

    Image Alignment 580x300

    +The image above happens to be centered. + +Image Alignment 150x150 The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see there should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +Image Alignment 1200x400 + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 1200x400 + +And we try the large image again, with the center alignment since that sometimes is a problem. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 300x200 + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And just when you thought we were done, we're going to do them all over again with captions! + +[caption id="attachment_906" align="aligncenter" width="580"]Image Alignment 580x300 Look at 580x300 getting some caption love.[/caption] + +The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky. + +[caption id="attachment_904" align="alignleft" width="150"]Image Alignment 150x150 Bigger caption than the image usually is.[/caption] + +The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +[caption id="attachment_907" align="alignnone" width="1200"]Image Alignment 1200x400 Comment for massive image for your eyeballs.[/caption] + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. +[caption id="attachment_907" align="aligncenter" width="1200"]Image Alignment 1200x400 This massive image is centered.[/caption] + +And again with the big image centered. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +[caption id="attachment_905" align="alignright" width="300"]Image Alignment 300x200 Feels good to be right all the time.[/caption] + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! Last thing is a small image aligned right. Whatever follows should be unaffected. Image Alignment 150x150]]>
    + + 1133 + 2013-03-15 18:19:23 + 2013-03-15 23:19:23 + open + open + page-image-alignment + publish + 2 + 0 + page + + 0 +
    + + Page Markup And Formatting + https://wpthemetestdata.wordpress.com/about/page-markup-and-formatting/ + Fri, 15 Mar 2013 23:20:05 +0000 + themedemos + http://wptest.io/demo/?page_id=1083 + + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    Jane$1Because that's all Steve Jobs needed for a salary.
    John$100KFor all the blogging he does.
    Jane$100MPictures are worth a thousand words, right? So Tom x 1,000.
    Jane$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    + Robert Frost
    +
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +This tag shows strike-through text. + +Small Tag + +This tag shows smaller text. + +Strong Tag + +This tag shows bold text. + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +This rarely used tag emulates teletype text, which is usually styled like the <code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +This tag shows underlined text. + +Variable Tag + +This allows you to denote variables.]]>
    + + 1134 + 2013-03-15 18:20:05 + 2013-03-15 23:20:05 + open + open + page-markup-and-formatting + publish + 2 + 0 + page + + 0 +
    + + Template: Comments + https://wpthemetestdata.wordpress.com/2012/01/03/template-comments/ + Tue, 03 Jan 2012 17:11:37 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/comment-test/ + + +
  • Threaded comments up to 10 levels deep
  • +
  • Paginated comments (set Settings > Discussion > Break comments into pages to 5 top level comments per page)
  • +
  • Comment markup / formatting
  • +
  • Comment images
  • +
  • Comment videos
  • +
  • Author comments
  • +
  • Gravatars and default fallbacks
  • +]]>
    + + 1148 + 2012-01-03 10:11:37 + 2012-01-03 17:11:37 + open + closed + template-comments + publish + 0 + 0 + post + + 0 + + + + + + + 881 + + example@example.org + http://example.org/ + + 2012-09-03 10:18:04 + 2012-09-03 17:18:04 + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    John Saddington$1Because that's all Steve Job' needed for a salary.
    Tom McFarlin$100KFor all the blogging he does.
    Jared Erickson$100MPictures are worth a thousand words, right? So Tom x 1,000.
    Chris Ames$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    + +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    +Robert Frost
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    + +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up.]]>
    + 1 + + 0 + 0 +
    + + 899 + + fake@example.com + + + 2013-03-11 23:45:54 + 2013-03-12 04:45:54 + Gravatar associated with it. + They did not speify a website, so there should be no link to it in the comment. +]]> + 1 + + 0 + 0 + + + 900 + + example@example.org + http://example.org/ + + 2013-03-12 13:17:35 + 2013-03-12 20:17:35 + + 1 + + 0 + 0 + + + 901 + + example@example.org + http://example.org + + 2013-03-14 07:53:26 + 2013-03-14 14:53:26 + + 1 + + 0 + 0 + + + 903 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 07:56:46 + 2013-03-14 14:56:46 + + 1 + + 0 + 24783058 + + + 904 + + example@example.org + http://example.org/ + + 2013-03-14 07:57:01 + 2013-03-14 14:57:01 + + 1 + + 0 + 0 + + + 905 + + example@example.org + http://example.org/ + + 2013-03-14 08:01:21 + 2013-03-14 15:01:21 + + 1 + + 904 + 0 + + + 906 + + example@example.org + http://example.org/ + + 2013-03-14 08:02:06 + 2013-03-14 15:02:06 + + 1 + + 905 + 0 + + + 907 + + example@example.org + http://example.org/ + + 2013-03-14 08:03:22 + 2013-03-14 15:03:22 + + 1 + + 906 + 0 + + + 910 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 08:10:29 + 2013-03-14 15:10:29 + + 1 + + 907 + 24783058 + + + 911 + + example@example.org + http://example.org/ + + 2013-03-14 08:12:16 + 2013-03-14 15:12:16 + + 1 + + 910 + 0 + + + 912 + + example@example.org + http://example.org/ + + 2013-03-14 08:12:58 + 2013-03-14 15:12:58 + + 1 + + 911 + 0 + + + 913 + + example@example.org + http://example.org/ + + 2013-03-14 08:13:42 + 2013-03-14 15:13:42 + + 1 + + 912 + 0 + + + 914 + + example@example.org + http://example.org/ + + 2013-03-14 08:14:13 + 2013-03-14 15:14:13 + + 1 + + 913 + 0 + + + 915 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 08:14:47 + 2013-03-14 15:14:47 + + 1 + + 914 + 24783058 + + + 917 + + example@example.org + http://example.org/ + + 2013-03-14 09:56:43 + 2013-03-14 16:56:43 + + If the image imports... + ]]> + 1 + + 0 + 0 + + + 918 + + example@example.org + http://example.org/ + + 2013-03-14 11:23:24 + 2013-03-14 18:23:24 + + 1 + + 0 + 0 + + + 919 + + example@example.org + http://example.org/ + + 2013-03-14 11:27:54 + 2013-03-14 18:27:54 + + 1 + + 0 + 0 + + + 920 + + example@example.org + http://example.org/ + + 2013-03-14 11:30:33 + 2013-03-14 18:30:33 + + 1 + + 0 + 24783058 + + + 1015 + + auser@example.com + + + 2014-09-29 02:52:15 + 2014-09-29 09:52:15 + + 0 + + 0 + 0 + +
    + + Template: Pingbacks And Trackbacks + https://wpthemetestdata.wordpress.com/2012/01/01/template-pingbacks-an-trackbacks/ + Sun, 01 Jan 2012 17:17:18 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/many-trackbacks/ + + +
  • Above the comments
  • +
  • Below the comments
  • +
  • Included within the normal flow of comments
  • +]]>
    + + 1149 + 2012-01-01 10:17:18 + 2012-01-01 17:17:18 + closed + closed + template-pingbacks-an-trackbacks + publish + 0 + 0 + post + + 0 + + + + + + + + + 921 + + + http://tellyworth.wordpress.com/2007/11/21/ping-1/ + + 2007-11-21 11:31:12 + 2007-11-21 01:31:12 + + 1 + trackback + 0 + 0 + + + 922 + + + http://tellyworth.wordpress.com/2007/11/21/ping-2-with-a-much-longer-title-than-the-previous-ping-which-was-called-ping-1/ + + 2007-11-21 11:35:47 + 2007-11-21 01:35:47 + + 1 + trackback + 0 + 0 + + + 923 + + + http://tellyworth.wordpress.com/2007/11/21/ping-4/ + + 2007-11-21 11:39:25 + 2007-11-21 01:39:25 + + 1 + pingback + 0 + 0 + + + 924 + + + http://tellyworth.wordpress.com/2007/11/21/ping-3/ + + 2007-11-21 11:38:22 + 2007-11-21 01:38:22 + + 1 + pingback + 0 + 0 + + + 925 + + example@example.org + http://example.org/ + + 2010-06-11 15:27:04 + 2010-06-11 22:27:04 + + 1 + + 0 + 0 + +
    + + Template: Comments Disabled + https://wpthemetestdata.wordpress.com/2012/01/02/template-comments-disabled/ + Mon, 02 Jan 2012 17:21:15 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/no-comments/ + + should display pingbacks and trackbacks.]]> + + 1150 + 2012-01-02 10:21:15 + 2012-01-02 17:21:15 + closed + closed + template-comments-disabled + publish + 0 + 0 + post + + 0 + + + + + + + + Edge Case: Many Tags + https://wpthemetestdata.wordpress.com/2009/06/01/edge-case-many-tags/ + Mon, 01 Jun 2009 08:00:34 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/11/24/many-tags/ + + + + 1151 + 2009-06-01 01:00:34 + 2009-06-01 08:00:34 + closed + closed + edge-case-many-tags + publish + 0 + 0 + post + + 0' + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Edge Case: Many Categories + https://wpthemetestdata.wordpress.com/2009/07/02/edge-case-many-categories/ + Thu, 02 Jul 2009 09:00:03 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/11/24/many-categories/ + + + + 1152 + 2009-07-02 02:00:03 + 2009-07-02 09:00:03 + closed + closed + edge-case-many-categories + publish + 0 + 0 + post + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Scheduled + https://wpthemetestdata.wordpress.com/2020/01/01/scheduled/ + Wed, 01 Jan 2030 19:00:18 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=418 + + + + 1153 + 2030-01-01 12:00:18 + 2030-01-01 19:00:18 + closed + closed + scheduled + future + 0 + 0 + post + + 0 + + + + + + Post Format: Image + https://wpthemetestdata.wordpress.com/2010/08/08/post-format-image/ + Sun, 08 Aug 2010 12:00:39 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=568 + +
      + +]]>
    + + 1158 + 2010-08-08 05:00:39 + 2010-08-08 12:00:39 + closed + closed + post-format-image + publish + 0 + 0 + post + + 0 + + + + + +
    + + Post Format: Video (YouTube) + https://wpthemetestdata.wordpress.com/2010/06/02/post-format-video-youtube/ + Wed, 02 Jun 2010 09:00:58 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=582 + + WordPress Embeds.]]> + + 1161 + 2010-06-02 02:00:58 + 2010-06-02 09:00:58 + closed + closed + post-format-video-youtube + publish + 0 + 0 + post + + 0 + + + + + + + Post Format: Image (Caption) + https://wpthemetestdata.wordpress.com/2010/08/07/post-format-image-caption/ + Sat, 07 Aug 2010 13:00:19 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=674 + + Bell on Wharf Bell on wharf in San Francisco[/caption]]]> + + 1163 + 2010-08-07 06:00:19 + 2010-08-07 13:00:19 + closed + closed + post-format-image-caption + publish + 0 + 0 + post + + 0 + + + + + + + + _thumbnail_id + + + + + Draft + https://wpthemetestdata.wordpress.com/?p=1164 + Tue, 09 Apr 2013 18:20:39 +0000 + themedemos + http://wptest.io/demo/?p=922 + + + + 1164 + 2013-04-09 11:20:39 + 2013-04-09 18:20:39 + closed + closed + + draft + 0 + 0 + post + + 0 + + + + + + Template: Password Protected (the password is "enter") + https://wpthemetestdata.wordpress.com/2012/01/04/template-password-protected/ + Wed, 04 Jan 2012 16:38:05 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/test-with-secret-password/ + + + + 1168 + 2012-01-04 09:38:05 + 2012-01-04 16:38:05 + closed + closed + template-password-protected + publish + 0 + 0 + post + enter + 0 + + + + + + + 926 + + example@example.org + http://example.org/ + + 2013-03-14 11:56:08 + 2013-03-14 18:56:08 + + 1 + + 0 + 0 + + + + + <link>https://wpthemetestdata.wordpress.com/2009/09/05/edge-case-no-title/</link> + <pubDate>Sat, 05 Sep 2009 16:00:23 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2007/09/04/14/</guid> + <description/> + <content:encoded><![CDATA[This post has no title, but it still must link to the single post view somehow. + +This is typically done by placing the permalink on the post date.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1169</wp:post_id> + <wp:post_date>2009-09-05 09:00:23</wp:post_date> + <wp:post_date_gmt>2009-09-05 16:00:23</wp:post_date_gmt> + <wp:comment_status>closed</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>edge-case-no-title</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>0</wp:menu_order> + <wp:post_type>post</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="category" nicename="classic"><![CDATA[Classic]]></category> + <category domain="post_tag" nicename="edge-case"><![CDATA[edge case]]></category> + <category domain="category" nicename="edge-case-2"><![CDATA[Edge Case]]></category> + <category domain="post_tag" nicename="layout"><![CDATA[layout]]></category> + <category domain="post_tag" nicename="title"><![CDATA[title]]></category> +</item> +<item> + <title>Edge Case: No Content + https://wpthemetestdata.wordpress.com/2009/08/06/edge-case-no-content/ + Thu, 06 Aug 2009 16:39:56 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/this-post-has-no-body/ + + + + 1170 + 2009-08-06 09:39:56 + 2009-08-06 16:39:56 + closed + closed + edge-case-no-content + publish + 0 + 0 + post + + 0 + + + + + + + 927 + + example@example.org + http://example.org/ + + 2013-03-14 12:35:07 + 2013-03-14 19:35:07 + + 1 + + 0 + 0 + + + + Template: Paginated + https://wpthemetestdata.wordpress.com/2012/01/08/template-paginated/ + Sun, 08 Jan 2012 17:00:20 +0000 + themedemos + https://noeltest.wordpress.com/?p=188 + + + +Post Page 2 + + + +Post Page 3]]> + + 1171 + 2012-01-08 10:00:20 + 2012-01-08 17:00:20 + closed + closed + template-paginated + publish + 0 + 0 + post + + 0 + + + + + + + + + <![CDATA[Markup: Title <em>With</em> <b>Mark<sup>up</sup></b>]]> + https://wpthemetestdata.wordpress.com/2013/01/05/markup-title-with-markup/ + Sat, 05 Jan 2013 17:00:49 +0000 + themedemos + http://wptest.io/demo/?p=861 + + +
  • The post title renders the word "with" in italics and the word "markup" in bold (and "up" is superscript).
  • +
  • The post title markup should be removed from the browser window / tab.
  • +]]>
    + + 1173 + 2013-01-05 10:00:49 + 2013-01-05 17:00:49 + closed + closed + markup-title-with-markup + publish + 0 + 0 + post + + 0 + + + + + +
    + + Markup: Title With Special Characters ~`!@#$%^&*()-_=+{}[]/\;:'"?,.> + https://wpthemetestdata.wordpress.com/2013/01/05/title-with-special-characters/ + Sat, 05 Jan 2013 18:00:20 +0000 + themedemos + http://wptest.io/demo/?p=867 + + Latin Character Tests +This is a test to see if the fonts used in this theme support basic Latin characters. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    !"#$%&'()*
    +,-./01234
    56789:;>=<
    ?@ABCDEFGH
    IJKLMNOPQR
    STUVWXYZ[\
    ]^_`abcdef
    ghijklmnop
    qrstuvwxyz
    {|}~
    ]]>
    + + 1174 + 2013-01-05 11:00:20 + 2013-01-05 18:00:20 + closed + closed + title-with-special-characters + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Taumatawhakatangihangakoauauotamateaturipukakapikimaungahoronukupokaiwhenuakitanatahu + https://wpthemetestdata.wordpress.com/2009/10/05/title-should-not-overflow-the-content-area/ + Mon, 05 Oct 2009 19:00:59 +0000 + themedemos + http://wptest.io/demo/?p=877 + + Title should not overflow the content area + +A few things to check for: +
      +
    • Non-breaking text in the title, content, and comments should have no adverse effects on layout or functionality.
    • +
    • Check the browser window / tab title.
    • +
    • If you are a plugin or widget developer, check that this text does not break anything.
    • +
    + +The following CSS properties will help you support non-breaking text. + +
    -ms-word-wrap: break-word;
    +word-wrap: break-word;
    + ]]>
    + + 1175 + 2009-10-05 12:00:59 + 2009-10-05 19:00:59 + closed + closed + title-should-not-overflow-the-content-area + publish + 0 + 0 + post + + 0 + + + + + + + + +
    + + Markup: Text Alignment + https://wpthemetestdata.wordpress.com/2013/01/09/markup-text-alignment/ + Wed, 09 Jan 2013 16:00:39 +0000 + themedemos + http://wptest.io/demo/?p=895 + + Default +This is a paragraph. It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love. Completely neutral and not picking a side or sitting on the fence. It just is. It just freaking is. It likes where it is. It does not feel compelled to pick a side. Leave him be. It will just be better that way. Trust me. +

    Left Align

    +

    This is a paragraph. It is left aligned. Because of this, it is a bit more liberal in it's views. It's favorite color is green. Left align tends to be more eco-friendly, but it provides no concrete evidence that it really is. Even though it likes share the wealth evenly, it leaves the equal distribution up to justified alignment.

    + +

    Center Align

    +

    This is a paragraph. It is center aligned. Center is, but nature, a fence sitter. A flip flopper. It has a difficult time making up its mind. It wants to pick a side. Really, it does. It has the best intentions, but it tends to complicate matters more than help. The best you can do is try to win it over and hope for the best. I hear center align does take bribes.

    + +

    Right Align

    +

    This is a paragraph. It is right aligned. It is a bit more conservative in it's views. It's prefers to not be told what to do or how to do it. Right align totally owns a slew of guns and loves to head to the range for some practice. Which is cool and all. I mean, it's a pretty good shot from at least four or five football fields away. Dead on. So boss.

    + +

    Justify Align

    +

    This is a paragraph. It is justify aligned. It gets really mad when people associate it with Justin Timberlake. Typically, justified is pretty straight laced. It likes everything to be in it's place and not all cattywampus like the rest of the aligns. I am not saying that makes it better than the rest of the aligns, but it does tend to put off more of an elitist attitude.

    ]]>
    + + 1176 + 2013-01-09 09:00:39 + 2013-01-09 16:00:39 + closed + closed + markup-text-alignment + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Markup: Image Alignment + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/ + Fri, 11 Jan 2013 03:15:40 +0000 + themedemos + http://wptest.io/demo/?p=903 + + None, Left, Right, and Center. In addition, they also get the options of Thumbnail, Medium, Large & Fullsize. Be sure to try this page in RTL mode and it should look the same as LTR. +

    Image Alignment 580x300

    +The image above happens to be centered. + +Image Alignment 150x150 The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +Image Alignment 1200x400 + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 1200x400 + +And we try the large image again, with the center alignment since that sometimes is a problem. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 300x200 + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And just when you thought we were done, we're going to do them all over again with captions! + +[caption id="attachment_906" align="aligncenter" width="580"]Image Alignment 580x300 Look at 580x300 getting some caption love.[/caption] + +The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky. + +[caption id="attachment_904" align="alignleft" width="150"]Image Alignment 150x150 Bigger caption than the image usually is.[/caption] + +The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +[caption id="attachment_907" align="alignnone" width="1200"]Image Alignment 1200x400 Comment for massive image for your eyeballs.[/caption] + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. +[caption id="attachment_907" align="aligncenter" width="1200"]Image Alignment 1200x400 This massive image is centered.[/caption] + +And again with the big image centered. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +[caption id="attachment_905" align="alignright" width="300"]Image Alignment 300x200 Feels good to be right all the time.[/caption] + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! One last thing: The last item in this post's content is a thumbnail floated right. Make sure any elements after the content are clearing properly. + +]]>
    + + 1177 + 2013-01-10 20:15:40 + 2013-01-11 03:15:40 + closed + closed + markup-image-alignment + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + +
    + + Markup: HTML Tags and Formatting + https://wpthemetestdata.wordpress.com/2013/01/11/markup-html-tags-and-formatting/ + Sat, 12 Jan 2013 03:22:19 +0000 + themedemos + http://wptest.io/demo/?p=919 + + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    John Doe$1Because that's all Steve Jobs needed for a salary.
    Jane Doe$100KFor all the blogging she does.
    Fred Bloggs$100MPictures are worth a thousand words, right? So Jane x 1,000.
    Jane Bloggs$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    +Robert Frost
    +
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +This tag shows strike-through text. + +Small Tag + +This tag shows smaller text. + +Strong Tag + +This tag shows bold text. + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +This rarely used tag emulates teletype text, which is usually styled like the <code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +This tag shows underlined text. + +Variable Tag + +This allows you to denote variables.]]>
    + + 1178 + 2013-01-11 20:22:19 + 2013-01-12 03:22:19 + closed + closed + markup-html-tags-and-formatting + publish + 0 + 0 + post + + 0 + + + + + + + +
    + + Media: Twitter Embeds + https://wpthemetestdata.wordpress.com/2011/03/15/media-twitter-embeds/ + Tue, 15 Mar 2011 22:47:16 +0000 + themedemos + http://wptest.io/demo/?p=1027 + + Twitter Embeds feature.]]> + + 1179 + 2011-03-15 15:47:16 + 2011-03-15 22:47:16 + closed + closed + media-twitter-embeds + publish + 0 + 0 + post + + 0 + + + + + + + + _oembed_time_d01e104b758ab65a49dfdede5913069c + + + + _oembed_ac49b172e1844531a885a53eff2efd91 + ]]> + + + _oembed_time_ac49b172e1844531a885a53eff2efd91 + + + + _oembed_d01e104b758ab65a49dfdede5913069c + ]]> + + + + Template: Sticky + https://wpthemetestdata.wordpress.com/2012/01/07/template-sticky/ + Sat, 07 Jan 2012 14:07:21 +0000 + themedemos + http://wptest.io/demo/?p=1241 + + +
  • The sticky post should be distinctly recognizable in some way in comparison to normal posts. You can style the .sticky class if you are using the post_class() function to generate your post classes, which is a best practice.
  • +
  • They should show at the very top of the blog index page, even though they could be several posts back chronologically.
  • +
  • They should still show up again in their chronologically correct postion in time, but without the sticky indicator.
  • +
  • If you have a plugin or widget that lists popular posts or comments, make sure that this sticky post is not always at the top of those lists unless it really is popular.
  • +]]>
    + + 1241 + 2012-01-07 07:07:21 + 2012-01-07 14:07:21 + closed + closed + template-sticky + publish + 0 + 0 + post + + 1 + + + + +
    + + Template: Excerpt (Generated) + https://wpthemetestdata.wordpress.com/2012/03/14/template-excerpt-generated/ + Wed, 14 Mar 2012 16:49:22 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=1446 + + excerpt_length and excerpt_more, display properly.]]> + + 1446 + 2012-03-14 09:49:22 + 2012-03-14 16:49:22 + closed + closed + template-excerpt-generated + publish + 0 + 0 + post + + 0 + + + + + + + + + Block category: Common + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-common/ + Fri, 02 Nov 2018 16:20:28 +0000 + >themereviewteam + https://wpthemetestdata.wordpress.com/?p=1730 + + +

    The Common category includes the following blocks: Paragraph, image, headings, list, gallery, quote, audio, cover, video.

    + + + +

    The paragraph block is the default block type.  It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love.

    + + + +

    This paragraph is left aligned.

    + + + +

    This italic paragraph is right aligned.

    + + + +

    Neither of these paragraphs care about politics, but this one is bold, medium sized and has a drop cap.

    + + + +

    This paragraph is centered.

    + + + +

    This paragraph prefers Jazz over Justin Timberlake. It also uses the small font size.

    + + + +

    This paragraph has something important to say:  It has a large font size, which defaults to 36px.

    + + + +

    The huge text size defaults to 46px, but the size can be customized.

    + + + +

    This paragraph is colorful, with a red background and white text (maybe). Colored blocks should have a high enough contrast, so that the text is readable.

    + + + +

    Below this block, you will see a single image with a circle mask applied.

    + + + +
    Image Alignment 150x150
    + + + +

    H1 Heading

    + + + +

    H2 Heading

    + + + +

    H3 Heading

    + + + +

    H4 Heading

    + + + +
    H5 Heading
    + + + +
    H6 Heading
    + + + +

    Ordered list

    + + + +
    1. The software should be licensed under the GNU Public License.
    2. The software should be freely available to anyone to use for any purpose, and without permission.
    3. The software should be open to modifications.
      1. Any modifications should be freely distributable at no cost and without permission from its creators.
    4. The software should provide a framework for translation to make it globally accessible to speakers of all languages.
    5. The software should provide a framework for extensions so modifications and enhancements can be made without modifying core code
    + + + +

    Unordered list

    + + + +
    • One
    • Two
    • Three
      • Four
    • Five
    + + + + + + + +

    Quote

    Cite
    + + + +
    + + + +
    +

    Cover block with background image

    +
    + + + +

    The file block has a setting that lets us show or hide a download button with editable text:

    + + + + + + + + + + + +

    Video blocks have settings for showing and hiding the playback controls. Use autoplay and playback controls responsibly.

    + + + +
    This is a video block caption.
    + + + +

    The video block below is muted and has a poster image that displays before the video starts:

    + + + +
    + +]]>
    + + 1730 + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + +
    + + Block category: Formatting + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-formatting/ + Fri, 02 Nov 2018 16:41:42 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1732 + + +

    The formatting category includes the following blocks:

    + + + +
    The code block starts with
    +<!-- wp:code -->
    +<?php echo 'Hello World'; ?>
    +
    + + +

    The classic block can have almost anything in it.

    +
    +
    a heading
    + + +
    The custom HTML block lets you put HTML that isn't configured like blocks in it. (this div has a width of 45%)
    + + + +
    The preformatted block.

    The Road Not Taken

    Robert Frost
    Two roads diverged in a yellow wood,
    And sorry I could not travel both (\_/)
    And be one traveler, long I stood (='.'=)
    And looked down one as far as I could (")_(")
    To where it bent in the undergrowth;

    Then took the other, as just as fair,
    And having perhaps the better claim, |\_/|
    Because it was grassy and wanted wear; / @ @ \
    Though as for that the passing there ( > º < )
    Had worn them really about the same, `>>x<<´
    / O \
    And both that morning equally lay
    In leaves no step had trodden black.
    Oh, I kept the first for another day!
    Yet knowing how way leads on to way,
    I doubted if I should ever come back.
    I shall be telling this with a sigh
    Somewhere ages and ages hence:
    Two roads diverged in a wood, and I—
    I took the one less traveled by,
    And that has made all the difference.



    and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    + + + +

    The pull quote can be aligned or wide or neither.

    Theme Reviewer
    + + + +
    The table blockThis is the default style.
    The cell next to this is empty.
    Cell #5
    Cell #6
    + + + +
    This is the striped style.This row should have a background color.
    The cell next to this is empty.

    This table has fixed width table cells.

    Make sure that the text wraps correctly.

    + + + +
    The Verse block

    A block for haiku?
    Why not?
    Blocks for all the things!
    +]]>
    + + 1732 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Block category: Layout Elements + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-layout-elements/ + Fri, 02 Nov 2018 16:44:37 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1734 + + +
    +

    The Layout Elements category includes the following blocks: Group, Button, Columns, Media & Text, separator, spacer, read more, and page break.

    + + + +

    This group block has a light green background color.

    + + + + + + + +

    The read more block should be right below this text, but only on list pages of themes that show the full content. It won't show on the single page or on themes showing excerpts.

    +
    + + + + + + + +
    +
    +

    The columns:

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    +
    + + + +
    Boardwalk
    +

    Media &Text

    + + + +

    For displaying media and text next to each other. By default, the media is to the left.

    +
    + + + +
    Golden Gate Bridge
    +

    This time our block is full width, and the image is to the right.

    + + + +

    The background color is a pale blue. 

    +
    + + + +

    Test to make sure that the editor and the front match. To test the Stack on mobile setting, reduce the browser window width.

    + + + +

    The control these settings, the block uses the css classes "has-media-on-the-right" and "is-stacked-on-mobile".

    + + + +

    The separator has three styles: default, wide line, and dots.

    + + + +
    + + + +
    + + + +
    + + + +

    The spacer block has a default height of 100 pixels:

    + + + + + + + +

    And finally, the page break:

    + + + + + + + +

    This paragraph block is on page two, after the page break.

    + + + + +]]>
    + + 1734 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block category: Embeds + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-embeds/ + Fri, 02 Nov 2018 16:51:55 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1738 + + + +

    This post tests various embed blocks:

    + + + +
    +https://twitter.com/WordPress/status/1057136472321613824 +
    Twitter,  wide width
    + + + +
    +https://youtu.be/ex8fMxXJDJw +
    YouTube
    + + + +
    +https://www.facebook.com/6427302910/posts/10156380423617911/ +
    + + + +
    +https://www.instagram.com/p/BpmueLLgEn_/?utm_source=ig_share_sheet&igshid=1hcxphic7p9e2 +
    + + + +
    +https://wordpress.tv/2018/10/14/kjell-reigstad-allan-cole-how-we-made-our-first-gutenberg-powered-theme/ +
    WordPress TV, full width
    + + + +

    +]]>
    + + 1738 + + + + + + + 0 + 0 + + + 0 + + + + + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + + + + + + + + + + ]]> + + + + + + + +

    Many of the WordPress contribution teams have been working hard on the new WordPress editor, and the tools, services,...

    Publicerat av WordPress Måndag 3 september 2018
    ]]>
    +
    + + + + + + + ]]> + + + + + + + + ]]> + + + + + + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + + + + + + ]]> + + + + + + + +

    Many of the WordPress contribution teams have been working hard on the new WordPress editor, and the tools, services,...

    Publicerat av WordPress Måndag 3 september 2018
    ]]>
    +
    + + + + + + + ]]> + + + + + + + + ]]> + + + + + +
    + + Block category: Widgets + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-widgets/ + Fri, 02 Nov 2018 16:45:35 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1736 + + +

    The shortcode widget:

    + + + +[gallery columns=2 ids="770,771"] + + + +

    The Archive Widget:

    + + + + + +

    The same Archive widget but as a dropdown:

    + + + + + + + +

    The Category widget block has an additional option for showing category hierarchies:

    + + + + + +

    The Latest Comments widget can display or hide the avatars, the date, and the comment excerpt:

    + + + + + +

    Here is an example of the Comments widget with all the options disabled. The number of comments has been reduced to two.

    + + + + + +

    And here is the Latest Posts widget in the list view, with dates:

    + + + + + +

    Grid view, now sorted from A -Z.

    + + + + + +

    You can also change the number of columns used to display the latest posts. The block below only displays posts from the Block category:

    + + + + + +

    Search widget:

    + + + + + +

    Tag Cloud widget:

    + + + + + +

    RSS Feed widget:

    + + + + ]]>
    + + 1736 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Columns + https://wpthemetestdata.wordpress.com/2018/11/02/block-columns/ + Fri, 02 Nov 2018 12:10:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1743 + + +
    +
    +

    This page tests how the theme displays the columns block. The first block tests a two column block with paragraphs.

    +
    + + + +
    +

    This is the second column. It should align next to the first column. Reduce the browser window width to test the responsiveness.

    +
    +
    + + + +
    +
    +

    This is the second column block. It has 3 columns.

    +
    + + + +
    +

    Paragraph 2 is in the middle.

    +
    + + + +
    +

    Paragraph 3 is in the last column.

    +
    +
    + + + +
    +
    +

    The third column block has 4 columns. Make sure that all the text is visible and that it is not cut off.

    +
    + + + +
    +

    Now the columns are getting narrower.

    +
    + + + +
    +

    The margins between the columns should be wide enough,

    +
    + + + +
    +

    so that the content of the columns does not run into or overlap each other.

    +
    +
    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    + + + +
    +

    Column five.

    +
    +
    + + + +

    To change the number of columns, select the column block to open the settings panel. You can show up to 6 columns. If the theme has support for wide align, you can also set the alignments to wide and full width.

    + + + +

    Below is a column block with six columns, and no alignment:

    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    + + + +
    +

    Column five.

    +
    + + + +
    +

    Column six.

    +
    +
    + + + +

    Next is a 3 column block, with a wide alignment:

    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    +
    + + + +

    And here is a two column block with full width, and a longer text. Make sure that the text wraps correctly.

    + + + +
    +
    +

    This is column one. Sometimes, you may want to use columns to display a larger text, so, lets add some more words. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna. Praesent sit amet ligula id orci venenatis auctor. Phasellus porttitor, metus non tincidunt dapibus, orci pede pretium neque, sit amet adipiscing ipsum lectus et libero. Aenean bibendum. Curabitur mattis quam id urna. Vivamus dui. Donec nonummy lacinia lorem. Cras risus arcu, sodales ac, ultrices ac, mollis quis, justo. Sed a libero. Quisque risus erat, posuere at, tristique non, lacinia quis, eros.

    +
    + + + +
    +

    Column two. Cras volutpat, lacus quis semper pharetra, nisi enim dignissim est, et sollicitudin quam ipsum vel mi. Sed commodo urna ac urna. Nullam eu tortor. Curabitur sodales scelerisque magna. Donec ultricies tristique pede. Nullam libero. Nam sollicitudin felis vel metus. Nullam posuere molestie metus. Nullam molestie, nunc id suscipit rhoncus, felis mi vulputate lacus, a ultrices tortor dolor eget augue. Aenean ultricies felis ut turpis. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Suspendisse placerat tellus ac nulla. Proin adipiscing sem ac risus. Maecenas nisi. Cras semper.

    +
    +
    + + + +

    We can also add blocks inside columns:

    + + + +
    +
    +
    1. This is a numbered list,
    2. inside a 3 column block
    3. with a wide alignment.
    +
    + + + +
    +

    The middle column has a paragraph with an image block below.

    + + + +
    canola
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna.
    +
    + + + +
    +

    -This third column has a quote

    Theme Reviewer
    +
    +
    + + + +

    But wait there is more!  We also have a block called Media & Text, which is a two column block that helps you display media and text content next to each other, without having to first setup a column block:

    + + + +
    dsc20050813_115856_52
    +

    Media & Text

    + + + +

    A paragraph block sits ready to be used, below your headline.

    + + + +

    +
    +]]>
    + + 1743 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Block: Cover + https://wpthemetestdata.wordpress.com/2018/11/02/block-cover/ + Sat, 03 Nov 2018 12:25:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1745 + + +

    This is a left aligned cover block with a background image.

    + + + +

    The cover block lets you add text on top of images or videos.

    + + + +

    This blocktype has several alignment options, and you can also align or center the text inside the block.

    + + + +

    The background image can be fixed and you can change its opacity and add an overlay color.

    + + + +

    Make sure that the text wraps correctly over the image, and that text markup and alignments are working.

    + + + +

    The next image should have a pink overlay color, the text should be bold and aligned to the left:

    + + + +

    A center aligned cover image block, with a left aligned text.

    + + + +

    This is a full width cover block with a fixed background image with a 20% opacity.

    + + + +

    Make sure that all the text is readable.

    + + + +

    Our last cover image block has a wide width.

    + + + +

    This is a wide cover block with a video background.

    + + + +

    Compare the video and image blocks.
    This block is centered.

    + + + +

    The block below has no alignment, and the text is a link. Overlay colors must also work with video backgrounds.

    + + + + +]]>
    + + 1745 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Button + https://wpthemetestdata.wordpress.com/2018/11/02/block-button/ + Sat, 03 Nov 2018 13:20:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1747 + + +

    Button blocks are not semantically buttons, but links inside a styled div. 

    + + + +

    If you do not add a link, a link tag without an anchor will be used.

    + + + + + + + +

    Check to make sure that the text wraps correctly when the button has more than one line of text, and when it is extra long.

    + + + + + + + +

    Buttons have three styles: 

    + + + + + + + + + + + + + + + +

    If the theme has a custom color palette, test that background color and text color settings work correctly. 

    + + + + + + + +

    Now lets test how buttons display together with large texts.

    + + + +

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio.

    + + + + + + + +

    Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna. Praesent sit amet ligula id orci venenatis auctor. Phasellus porttitor, metus non tincidunt dapibus, orci pede pretium neque, sit amet adipiscing ipsum lectus et libero. Aenean bibendum. Curabitur mattis quam id urna.

    + + + + + + + +

    Vivamus dui. Donec nonummy lacinia lorem. Cras risus arcu, sodales ac, ultrices ac, mollis quis, justo. Sed a libero. Quisque risus erat, posuere at, tristique non, lacinia quis, eros.

    +]]>
    + + 1747 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Quote + https://wpthemetestdata.wordpress.com/2018/11/02/block-quote/ + Sat, 03 Nov 2018 03:05:49 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1749 + + +

    The quote block has two styles, regular:

    + + + +

    Gutenberg is more than an editor.

    The Gutenberg Team
    + + + +

    and large:

    + + + +

    Yes, it is a press, certainly, but a press from which shall flow in inexhaustible streams, the most abundant and most marvelous liquor that has ever flowed to relieve the thirst of men!


    Johannes Gutenberg
    + + + +

    The quote blocks themselves have no alignments but the text can be aligned, bold, italic, and linked:

    + + + +

    Right

    Theme Review
    + + + +

    In addition to the quote block, we also have the pull quote, with a regular and a solid color style.

    + + + +

    You can change the color of the border and the text with the regular style:

    + + + +

    In addition to the quote block, we also have the pull quote.

    Theme Reviewer
    + + + +

    Or change the background color and text color with the solid color style:

    + + + +

    a solid color style

    Theme Reviewer
    +]]>
    + + 1749 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Gallery + https://wpthemetestdata.wordpress.com/2018/11/02/block-gallery/ + Sat, 03 Nov 2018 04:34:24 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1752 + + +

    Gallery blocks have two settings: the number of columns, and whether or not images should be cropped. The default number of columns is three, and the maximum number of columns is eight.

    + + + +

    Below is a three column gallery at full width, with cropped images.

    + + + + + + + + + + + +

    Some more text for taking up space.

    + + + +

    A two column gallery, aligned to the left, linked to media file.

    + + + +

    In the editor, the image captions can be edited directly by clicking on the text.

    + + + +

    If the number of images cannot be divided into the number of columns you have selected, the default is to have the last image(s) automatically stretch to the width of your gallery.

    + + + + + + + +

    A four column gallery with a wide width:

    + + + + + + + +

    A five column gallery with normal images:

    + + + + + + + +

    This is the same gallery, but with cropped images.

    + + + + + + + +

    Six columns: does it work at all window sizes?

    + + + + + + + +

    Seven columns: how does this look on a narrow window?

    + + + + + + + +

    Eight columns:

    + + + + +]]>
    + + 1752 + + + + + + + 0 + 0 + + + 0 + + + + + + + + + +
    + + Block: Image + https://wpthemetestdata.wordpress.com/2018/11/03/block-image/ + Sat, 03 Nov 2018 15:20:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1755 + + +

    Welcome to image alignment! If you recognize this post, it is because these are blocks that have been converted from the classic Markup: Image Alignment post. The best way to demonstrate the ebb and flow of the various image positioning options is to nestle them snuggly among an ocean of words. Grab a paddle and let's get started. Be sure to try it in RTL mode. Left should stay left and right should stay right for both reading directions.

    + + + +

    On the topic of alignment, it should be noted that users can choose from the options of None, Left, Right, and Center. If the theme has added support for align wide, images can also be wide and full width. Be sure to test this page in RTL mode.

    + + + +

    In addition, they also get the options of the image dimensions 25%, 50%, 75%, 100% or a set width and height.

    + + + +
    Image Alignment 580x300
    + + + +

    The image above happens to be centered.

    + + + +
    Image Alignment 150x150
    + + + +

    The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned.

    + + + +

    As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished!

    + + + +

    And now for a massively large image. It also has no alignment.

    + + + +
    Image Alignment 1200x400
    + + + +

    The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.

    + + + +
    Image Alignment 300x200
    + + + +

    And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there… Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently.

    + + + +

    In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah… Just like that. It never felt so good to be right.

    + + + +

    And just when you thought we were done, we're going to do them all over again with captions!

    + + + +
    Image Alignment 580x300
    Look at 580x300 getting some caption love.
    + + + +

    The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky.

    + + + +
    Image Alignment 150x150
    Itty-bitty caption.
    + + + +

    The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned.

    + + + +

    As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished!

    + + + +

    And now for a massively large image. It also has no alignment.

    + + + +
    Image Alignment 1200x400
    Massive image comment for your eyeballs.
    + + + +

    The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.

    + + + +
    Image Alignment 300x200
    Feels good to be right all the time.
    + + + +

    And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there… Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently.

    + + + +

    In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah… Just like that. It never felt so good to be right.

    + + + +

    Imagine that we would find a use for the extra wide image! This image has the wide width alignment:

    + + + +
    Image Alignment 1200x4002
    + + + +

    Can we go bigger? This image has the full width alignment:

    + + + +
    Image Alignment 1200x4002
    + + + +

    And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! One last thing: The last item in this post's content is a thumbnail floated right. Make sure any elements after the content are clearing properly.

    + + + +
    +]]>
    + + 1755 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Ελληνικά-Greek + https://wpthemetestdata.wordpress.com/greek/ + Fri, 14 Feb 2020 10:31:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1809 + + Headings Επικεφαλίδες +

    Επικεφαλίδα 1 Header one

    +

    Επικεφαλίδα 2 Header two

    +

    Επικεφαλίδα 3 Header three

    +

    Επικεφαλίδα 2 Header four

    +
    Επικεφαλίδα 5 Header five
    +
    Επικεφαλίδα 6Header six
    +

    Παράθεση άλλου Blockquotes

    +Single line blockquote: Μια γραμμή +
    Πάντα να είναι περίεργος.
    +Πολλές γραμμέ με αναφορά Multi line blockquote with a cite reference: +
    Το HTML <blockquote> ElementHTML Block Quotation Element) καταδεικνύει ότι το κείμενο έχει μια παράθεση. Συνήθως οπτικοποιείται με εσοχή (δείτε Σημειώσεις για το πως να το αλλάξετε. Ίσως να δίνεται και URL πηγής με την χρήση του cite attribute, μπλα, μπλα <cite> .
    +multiple contributors - MDN HTML element reference - blockquote +

    Πίνακες Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Υπάλληλος EmployeeΜισθός Salary
    Τάδε κάποιος$1Γιατί τόσα χρειάζεται για να ζήσει
    Jane Doe$100KFor all the blogging she does.
    Fred Bloggs$100MPictures are worth a thousand words, right? So Jane x 1,000.
    Jane Bloggs$100BWith hair like that?! Enough said...
    +

    Λίστες Definition Lists

    +
    +
    Τίτλος λίστας Definition List Title
    +
    Υποδιαίρεση λίστας Definition list division.
    +
    +

    Λίστα με κουκίδες Unordered Lists (Nested)

    +
      +
    • Πρώτο στοιχείο List item one +
        +
      • Στοιχείο πρώτο List item one +
          +
        • Στοιχείο λίστα ένα List item one
        • +
        • Στοιχείο λίστας δύο List item two
        • +
        +
      • +
      • Στοιχείο δεύτερο -item two
      • +
      +
    • +
    • Στοιχειο δύο List item two
    • +
    +

    Αριθμημένη λίστα(Nested)

    +
      +
    1. Στοιχειο ξεκινά με 8-start at 8 +
        +
      1. Στοιχείο λίστας ενα List item one +
          +
        1. Στοιχείο λίστας ενα -reversed attribute
        2. +
        3. Στοιχείο λίστας δύο
        4. +
        +
      2. +
      3. Δεύτερο στοιχείο
      4. +
      +
    2. +
    3. Στοιχείο δύο
    4. +
    +

    Ετικέττες HTML Tags

    +Διεύθυνση Address Tag + +
    1 Απέραντη διαδρομή Infinite Loop +Απλωπολή , ΤΚ 95014 +Ελλάδα
    Αγκυρωση Anchor Tag (aka. Link) + +Πάραδειγμα συνδέσμου. + +Συντομογραφία Abbreviation Tag + +Η συντομογραφία κτλ σημαίνει "Και τα λοιπά". + +Ακρωνύμιο Acronym Tag + +Το ακρωνύμιο κυρ σημαίνει "Κύριος". + +Big Tag + +Αυτό είναι μεγάλο θέμα + +Cite Tag + +"Φάε το φαϊ σου" --Όλες οι μαμάδες + +Code Tag + +This tag styles blocks of code. +.post-title { +margin: 0 0 5px; +font-weight: bold; +font-size: 38px; +line-height: 1.2; +και μία γραμμή με πολύ πάρα πολύ υπερβολικά πάρα πολύ μεγάλο κείμενο που πρέπει να δούμε πως το χειρίζεται η γραμματοσειρά και αν ξεχειλίζει από τις γραμμές και δημιουργεί πρόβλημα; +} + +Διαγραφή Delete Tag + +Μπορείτε να διαγράφεται κείμενο, αλλά δεν συνιστάται. + +Έμφαση Emphasize Tag + +Θα πρέπει να κάνει ιταλικ italicize το κείμενο. + +Εισαγωγή Insert Tag + +Αυτό το tag υποδηλώνει εισηγμένο inserted κείμενο. + +Keyboard Tag + +Αυτό το ελάχιστο γνωστό κείμενο πληκτρολογίου keyboard Tag, συνήθως μορφοποιείται όμοια με το <κώδικα code> tag. + +Προδιαμορφωμένο Preformatted Tag +

    Ο Δρόμος που δεν διάλεξα - The Road Not Taken

    +
    Robert Frost
    +	 Δυο δρόμοι διασταυρώθηκαν σ' ένα χρυσαφένιο δάσος ,
    +	 Και προς λύπη μου και τους δυο τα πόδια μου να ταξιδέψουν δεν μπορούσαν
    +	 Κι επί μακρόν εστάθηκα , καθώς ένας ήμουν ταξιδευτής μονάχος ,
    +	 κι έστρεψα το βλέμμα μου στον πρώτο όσο να χαθεί στο βάθος
    +	 μέχρι εκεί που χάνονταν στα άγρια χόρτα που βλαστούσαν.
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	και μία μακριά, πάρα πολύ μακριά, υπερβολικά μακροσκελής δίχως νόημα πρόταση για να δούμε πως το χειρίζεται το θέμα εμφάνισης και αν αναδιπλώνεται, κρύβεται ή ξεχειλίζει;
    +
    +Quote Tag for short, inline quotes + +Προγραμματιστές, προγραμματιστές, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +Αυτή η ετικέτα είναι με διαγράμμιση strike-through κείμενο text. + +Μικρά Small Tag + +Αυτή η ετικέτα είναι μικρότερο smaller κείμενο text. + +Strong Tag + +Αυτή η ετικέτα δείχνει έντονο bold κείμενο text. + +Subscript Tag + +Getting our science styling on with H2 δύοO, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2 δύο, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +Αυτή η ετικέτα δείχνει τυλετυπος teletype κείμενο, which is usually styled like the <κώδικα code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +Αυτή η ετικέτα δείχνει υπογράμμιση underlined text. + +Variable Tag + +Αυτή η ετικέτα δείχνει παράμετροι variables.]]>
    + + 1809 + + + + + + + 0 + 0 + + + 0 + + + + + + + + +
    + + Επίπεδο 2 -Second Greek level + https://wpthemetestdata.wordpress.com//greek/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-2/ + Fri, 14 Feb 2020 10:31:47 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1811 + + + + 1811 + + + + + + + 1809 + 0 + + + 0 + + + + + + + + + + + Επίπεδο 3 + https://wpthemetestdata.wordpress.com/greek/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-2/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-3/ + Fri, 14 Feb 2020 10:32:50 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1813 + + + + 1813 + + + + + + + 1811 + 0 + + + 0 + + + + + + + + + + + <![CDATA[WP 6.1 Font size scale]]> + https://wpthemetestdata.wordpress.com/wp-6-1-font-size-scale/ + Mon, 16 Jan 2023 07:08:31 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-font-size-scale/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Small H2 Heading

    + + + +

    Medium H2 Heading

    + + + +

    Large H2 Heading

    + + + +

    Extra Large H2 Heading

    + + + +

    Small paragraph

    + + + +

    Medium paragraph

    + + + +

    Large paragraph

    + + + +

    Extra Large paragraph

    +]]> +
    + + 163 + + + + + + + + + 0 + 0 + + + 0 + + + + + + +
    + + <![CDATA[WP 6.1 spacing presets]]> + https://wpthemetestdata.wordpress.com/wp-6-1-spacing-presets/ + Mon, 16 Jan 2023 06:56:53 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-spacing-presets/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    On this page, some group blocks have border or background color set to increase visibility.

    + + + +
    +

    This group has a no background color and no additional spacing set.

    +
    + + + +
    +

    This group has a background color but no additional spacing set.

    +
    + + + +
    +

    This group has a 1px border and padding preset 1

    +
    + + + +
    +

    This group has padding preset 1

    +
    + + + +
    +

    This group has a 1px border and padding preset 2

    +
    + + + +
    +

    This group has a background color and padding preset 3

    +
    + + + +
    +

    This group has a background color and padding preset 4

    +
    + + + +
    +

    This group has a background color and padding preset 5

    +
    + + + +
    +

    This group has a background color and padding preset 6

    +
    + + + +
    +

    This group has a background color and padding preset 7

    +
    + + + +
    +

    This group has padding preset 7

    +
    + + + +
    +

    This group has a background color and margin preset 1

    +
    + + + +
    +

    This group has a background color and margin preset 2

    +
    + + + +
    +

    This group has a background color and margin preset 3

    +
    + + + +
    +

    This group has a background color and margin preset 4

    +
    + + + +
    +

    This group has a background color and margin preset 5

    +
    + + + +
    +

    This group has a background color and margin preset 6

    +
    + + + +
    +

    This group has a background color and margin preset 7

    +
    + + + +
    +

    This group has a 1px border, padding preset 4 and margin preset 4

    +
    + + + +
    +

    This group has padding preset 4 and margin preset 4

    +
    +]]>
    + + 150 + + + + + + + + + 0 + 0 + + + 0 + + + + + + +
    + + <![CDATA[WP 6.1 Theme block category]]> + https://wpthemetestdata.wordpress.com/wp-6-1-theme-block-category/ + Fri, 13 Jan 2023 18:38:05 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-theme-block-category/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Navigation block with page list:

    + + + + + + + +

    Site logo:

    + + + + + +

    Site title:

    + + + + + +

    Tagline block:

    + + + + + +

    Query loop "Title & Date" variation:

    + + + +
    + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Title & Excerpt" variation:

    + + + +
    + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Title, Date & Excerpt" variation:

    + + + +
    + + + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Image, Date & Title" variation:

    + + + +
    + + + + + + + + + + + + + + + + + +

    + +
    + + + +

    Avatar block:

    + + + + + +

    Post title block:

    + + + + + +

    Post excerpt:

    + + + + + +

    Post featured image:

    + + + + + +

    Post author:

    + + + + + +

    Post date:

    + + + + + +

    Categories:

    + + + + + +

    Tags:

    + + + + + +

    Next post & previous post:

    + + + + + + + +

    Read More:

    + + + + + +

    Comments block:

    + + + +
    + + + +
    +
    + + + +
    + + +
    + +
    + + + + +
    +
    + + + + + + + + + + + + + + +

    Post comments form block:

    +
    + + + + + +

    Login/out:

    + + + + + + + + + + + +

    Author biography block:

    + + + + + + + + + +

    Term description, archive title, search results title can not be shown on single posts.

    +]]>
    + + 51 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + + + + 2 + + + https://wpthemetestdata.wordpress.com/ + + + + + + + 0 + 0 + +
    + + <![CDATA[WP 6.1 Widgets block category]]> + https://wpthemetestdata.wordpress.com/wp-6-1-widgets-block-category/ + Fri, 13 Jan 2023 18:22:21 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-widgets-block-category/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Archives block:

    + + + + + + + +

    Categories list:

    + + + + + +

    Custom HTML:

    + + + + test + + + +

    Latest comments:

    + + + + + +

    Latest posts:

    + + + + + +

    Page list block:

    + + + + + +

    RSS block:

    + + + + + + + + + + + + + + + +

    Shortcode block:

    + + + + + +

    Social links:

    + + + + + + + + + + + + + + + +

    Tag cloud:

    + + + + + +

    +]]>
    + + 34 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Design category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-design-category-blocks/ + Fri, 13 Jan 2023 18:03:23 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-design-category-blocks/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + + + + + +
    +
    +

    One single column inside a columns block.

    +
    +
    + + + +
    +
    +

    Column one. The background color is on the single column.

    +
    + + + +
    +

    Column two

    +
    +
    + + + +
    +
    +

    Column one. The background color is on the parent columns block.

    +
    + + + +
    +

    Column two

    +
    + + + +
    +

    Column three

    +
    +
    + + + +
    +

    Group with paragraph inside. Below are the group block variations:

    +
    + + + +
    +

    Row

    + + + +

    Row

    +
    + + + +
    +

    Stack

    + + + +

    Stack

    +
    + + + +

    More block:

    + + + + + + + +

    Page break:

    + + + + + + + +

    Separators:

    + + + +

    Default style, no alignment:

    + + + +
    + + + +

    Default style, wide alignment:

    + + + +
    + + + +

    Default style, full width:

    + + + +
    + + + +

    Default style, align center:

    + + + +
    + + + +

    Wide style, no alignment:

    + + + +
    + + + +

    Wide style, wide alignment:

    + + + +
    + + + +

    Wide style, full width:

    + + + +
    + + + +

    Wide style, align center:

    + + + +
    + + + +

    Dotted style, no alignment:

    + + + +
    + + + +

    Dotted style, wide alignment:

    + + + +
    + + + +

    Dotted style, full width:

    + + + +
    + + + +

    Dotted style, align center:

    + + + +
    + + + +

    Spacer:

    + + + + +]]>
    + + 24 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Media category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-media-category-blocks/ + Fri, 13 Jan 2023 18:02:28 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-media-category-blocks/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Image block:

    + + + +
    dsc20050727_091048_222
    + + + +

    Gallery:

    + + + + + + + +

    Audio:

    + + + +
    + + + +

    Cover:

    + + + +
    Wind Farm
    +

    Write title...

    +
    + + + +
    +

    Fixed background

    +
    + + + +
    +

    Repeated background

    +
    + + + +
    +

    Fixed and Repeated background

    +
    + + + +
    dsc20050727_091048_222
    +

    Duotone

    +
    + + + +
    Rain Ripples
    +

    Top left

    +
    + + + +
    Rain Ripples
    +

    Top center

    +
    + + + +
    Rain Ripples
    +

    Top right

    +
    + + + +
    Rain Ripples
    +

    Center left

    +
    + + + +
    Rain Ripples
    +

    Center right

    +
    + + + +
    Rain Ripples
    +

    Bottom left

    +
    + + + +
    Rain Ripples
    +

    Bottom center

    +
    + + + +
    Rain Ripples
    +

    Bottom right

    +
    + + + + + + + +
    Boardwalk
    +

    This is the Media & Text block with an image on the left.

    +
    + + + +
    Image Alignment 1200x4002
    +

    This is the Media & Text block with a cropped image on the left

    +
    + + + +
    +

    This is the Media & Text block with a video the right.

    +
    + + + +
    +]]>
    + + 21 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Text category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-text-category-blocks/ + Fri, 13 Jan 2023 17:46:19 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-text-category-blocks + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Paragraph

    + + + +

    H1 Heading

    + + + +

    H2 Heading

    + + + +

    H3 Heading

    + + + +

    H4 Heading

    + + + +
    H5 Heading
    + + + +
    H6 Heading
    + + + +
      +
    • List
    • + + + +
    • List
    • +
    + + + +
      +
    1. List
    2. + + + +
    3. List
    4. +
    + + + +
      +
    1. List +
        +
      • List
      • +
      +
    2. +
    + + + +
    +

    Quote block

    +citation
    + + +

    classic block

    + + +
    code block
    + + + +
    Preformatted block
    + + + +

    Pull quote

    Citation
    + + + +
    table celltable cell two
    table cell threetable cell four
    Table caption
    + + + +
    header label oneheader label two
    table celltable cell two
    table cell threetable cell four
    footer label onefooter label two
    Table caption
    + + + +
    Verse block
    +]]>
    + + 8 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + +
    + + Keyboard navigation + https://wpthemetestdata.wordpress.com/2018/10/20/keyboard-navigation/ + Sun, 21 Oct 2018 03:03:48 +0000 + + https://wpthemetestdata.wordpress.com/?p=1724 + + +

    There are many different ways to use the web besides a mouse and a pair of eyes. Users navigate for example with a keyboard only or with their voice.

    + + + +

    All the functionality, including menus, links and forms should work using a keyboard only. This is essential for all assistive technology to work properly. The only way to test this, at the moment, is manually. The best time to test this is during development.

    + + + +

    How to keyboard test:

    + + + +

    Tab through your pages, links and forms to do the following tests:

    + + + +
    • Confirm that all links can be reached and activated via keyboard, including any in dropdown submenus.
    • Confirm that all links get a visible focus indicator (e.g., a border highlight).
    • Confirm that all visually hidden links (e.g. skip links) become visible when in focus.
    • Confirm that all form input fields and buttons can be accessed and used via keyboard.
    • Confirm that all interactions, buttons, and other controls can be triggered via keyboard — any action you can complete with a mouse must also be performable via keyboard.
    • Confirm that focus doesn’t move in unexpected ways around the page.
    • Confirm that using shift+tab to move backwards works as well.
    + + + +

    Resources

    + + + + +]]>
    + + 1724 + + + + + + + 0 + 0 + + + + 0 +
    + + About The Tests + https://wpthemetestdata.wordpress.com/about/ + Mon, 26 Jul 2010 02:40:01 +0000 + themedemos + https://wpthemetestdata.wordpress.com/about/ + + WordPress Theme Development Resources + +
      +
    1. See the WordPress Theme Developer Handbook for examples of best practices.
    2. +
    3. See the WordPress Code Reference for more information about WordPress' functions, classes, methods, and hooks.
    4. +
    5. See Theme Unit Test for a robust test suite for your Theme and get the latest version of the test data you see here.
    6. +
    7. See Releasing Your Theme for a guide to submitting your Theme to the Theme Directory.
    8. +
    ]]>
    + + 2 + 2010-07-25 19:40:01 + 2010-07-26 02:40:01 + closed + closed + about + publish + 0 + 1 + page + + 0 +
    + + Lorem Ipsum + https://wpthemetestdata.wordpress.com/lorem-ipsum/ + Tue, 04 Sep 2007 16:52:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/lorem-ipsum/ + + + + 146 + 2007-09-04 09:52:50 + 2007-09-04 16:52:50 + closed + closed + lorem-ipsum + publish + 0 + 7 + page + + 0 + + + Page with comments + https://wpthemetestdata.wordpress.com/about/page-with-comments/ + Tue, 04 Sep 2007 17:47:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/page-with-comments/ + + + + 155 + 2007-09-04 10:47:47 + 2007-09-04 17:47:47 + open + closed + page-with-comments + publish + 2 + 3 + page + + 0 + + 167 + + anon@example.com + + + 2007-09-04 10:49:28 + 2007-09-04 00:49:28 + + 1 + + 0 + 0 + + + 168 + + tellyworth+test2@example.com + + + 2007-09-04 10:49:03 + 2007-09-04 00:49:03 + + 1 + + 0 + 0 + + + 169 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2007-09-04 10:48:51 + 2007-09-04 17:48:51 + + 1 + + 0 + 0 + + + 1017 + + themereviewteam@gmail.com + + + 2014-12-10 01:56:24 + 2014-12-10 08:56:24 + + 0 + + 168 + 0 + + + + Page with comments disabled + https://wpthemetestdata.wordpress.com/about/page-with-comments-disabled/ + Tue, 04 Sep 2007 17:48:10 +0000 + themedemos + https://wpthemetestdata.wordpress.com/page-with-comments-disabled/ + + + + 156 + 2007-09-04 10:48:10 + 2007-09-04 17:48:10 + closed + closed + page-with-comments-disabled + publish + 2 + 4 + page + + 0 + + + Level 3 + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3/ + Tue, 11 Dec 2007 06:23:16 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-3/ + + + + 172 + 2007-12-11 16:23:16 + 2007-12-11 06:23:16 + closed + closed + level-3 + publish + 173 + 0 + page + + 0 + + + Level 2 + https://wpthemetestdata.wordpress.com/level-1/level-2/ + Tue, 11 Dec 2007 06:23:33 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-2/ + + + + 173 + 2007-12-11 16:23:33 + 2007-12-11 06:23:33 + closed + closed + level-2 + publish + 174 + 0 + page + + 0 + + + Level 1 + https://wpthemetestdata.wordpress.com/level-1/ + Tue, 11 Dec 2007 23:25:40 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-1/ + + + + 174 + 2007-12-11 16:25:40 + 2007-12-11 23:25:40 + closed + closed + level-1 + publish + 0 + 5 + page + + 0 + + + Clearing Floats + https://wpthemetestdata.wordpress.com/about/clearing-floats/ + Sun, 01 Aug 2010 16:42:26 +0000 + themedemos + https://wpthemetestdata.wordpress.com/ + + This is the second page]]> + + 501 + 2010-08-01 09:42:26 + 2010-08-01 16:42:26 + closed + closed + clearing-floats + publish + 2 + 2 + page + + 0 + + + canola2 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/canola2/ + Mon, 16 Jun 2008 13:17:54 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/canola2.jpg + + + + 611 + 2008-06-16 06:17:54 + 2008-06-16 13:17:54 + open + closed + canola2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/canola2.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + dsc20050727_091048_222 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050727_091048_222/ + Mon, 16 Jun 2008 13:20:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050727_091048_222.jpg + + + + 616 + 2008-06-16 06:20:37 + 2008-06-16 13:20:37 + open + closed + dsc20050727_091048_222 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050727_091048_222.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + dsc20050813_115856_52 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050813_115856_52/ + Mon, 16 Jun 2008 13:20:57 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050813_115856_52.jpg + + + + 617 + 2008-06-16 06:20:57 + 2008-06-16 13:20:57 + open + closed + dsc20050813_115856_52 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050813_115856_52.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Front Page + https://wpthemetestdata.wordpress.com/front-page/ + Sat, 21 May 2011 01:49:43 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=701 + + + + 701 + 2011-05-20 18:49:43 + 2011-05-21 01:49:43 + open + closed + front-page + publish + 0 + 0 + page + + 0 + + + a Blog page + https://wpthemetestdata.wordpress.com/blog/ + Sat, 21 May 2011 01:51:43 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=703 + + + + 703 + 2011-05-20 18:51:43 + 2011-05-21 01:51:43 + open + closed + blog + publish + 0 + 0 + page + + 0 + + 1016 + + example@example.com + + + 2014-11-29 21:03:05 + 2014-11-30 04:03:05 + + 0 + + 0 + 0 + + + + Bell on Wharf + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/100_5478/ + Mon, 16 Jun 2008 21:34:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/100_5478.jpg + + + + 754 + 2008-06-16 14:34:50 + 2008-06-16 21:34:50 + open + closed + 100_5478 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/100_5478.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Golden Gate Bridge + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/100_5540/ + Mon, 16 Jun 2008 21:35:55 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/100_5540.jpg + + + + 755 + 2008-06-16 14:35:55 + 2008-06-16 21:35:55 + open + closed + 100_5540 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/100_5540.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sunburst Over River + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/cep00032/ + Mon, 16 Jun 2008 21:41:24 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/cep00032.jpg + + + + 756 + 2008-06-16 14:41:24 + 2008-06-16 21:41:24 + open + closed + cep00032 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/cep00032.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Boardwalk + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dcp_2082/ + Mon, 16 Jun 2008 21:41:27 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dcp_2082.jpg + + + + 757 + 2008-06-16 14:41:27 + 2008-06-16 21:41:27 + open + closed + dcp_2082 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dcp_2082.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Yachtsody in Blue + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc03149/ + Mon, 16 Jun 2008 21:41:33 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc03149.jpg + + + + 758 + 2008-06-16 14:41:33 + 2008-06-16 21:41:33 + open + closed + dsc03149 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc03149.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Rain Ripples + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc04563/ + Mon, 16 Jun 2008 21:41:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc04563.jpg + + + + 759 + 2008-06-16 14:41:37 + 2008-06-16 21:41:37 + open + closed + dsc04563 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc04563.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sydney Harbor Bridge + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc09114/ + Mon, 16 Jun 2008 21:41:41 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc09114.jpg + + + + 760 + 2008-06-16 14:41:41 + 2008-06-16 21:41:41 + open + closed + dsc09114 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc09114.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Wind Farm + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050102_192118_51/ + Mon, 16 Jun 2008 21:41:42 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050102_192118_51.jpg + + + + 761 + 2008-06-16 14:41:42 + 2008-06-16 21:41:42 + open + closed + dsc20050102_192118_51 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050102_192118_51.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Antique Farm Machinery + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20051220_160808_102/ + Mon, 16 Jun 2008 21:41:45 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_160808_102.jpg + + + + 762 + 2008-06-16 14:41:45 + 2008-06-16 21:41:45 + open + closed + dsc20051220_160808_102 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_160808_102.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Rusty Rail + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20051220_173257_119/ + Mon, 16 Jun 20081 21:47:17 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_173257_119.jpg + + + + 764 + 2008-06-16 14:47:17 + 2008-06-16 21:47:17 + open + closed + dsc20051220_173257_119 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_173257_119.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sea and Rocks + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dscn3316/ + Mon, 16 Jun 2008 21:47:20 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dscn3316.jpg + + + + 765 + 2008-06-16 14:47:20 + 2008-06-16 21:47:20 + open + closed + dscn3316 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dscn3316.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Big Sur + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/michelle_049/ + Mon, 16 Jun 2008 21:47:23 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/michelle_049.jpg + + + + 766 + 2008-06-16 14:47:23 + 2008-06-16 21:47:23 + open + closed + michelle_049 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/michelle_049.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Windmill + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dcf-1-0/ + Mon, 16 Jun 2008 21:47:26 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/windmill.jpg + + + + 767 + 2008-06-16 14:47:26 + 2008-06-16 21:47:26 + open + closed + dcf-1-0 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/windmill.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Huatulco Coastline + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/alas-i-have-found-my-shangri-la/ + Mon, 16 Jun 2008 21:49:48 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0513-1.jpg + + + + 768 + 2008-06-16 14:49:48 + 2008-06-16 21:49:48 + open + closed + alas-i-have-found-my-shangri-la + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0513-1.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Brazil Beach + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_0747/ + Mon, 16 Jun 2008 21:50:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0747.jpg + + + + 769 + 2008-06-16 14:50:37 + 2008-06-16 21:50:37 + open + closed + img_0747 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0747.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Huatulco Coastline + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_0767/ + Mon, 16 Jun 2008 21:51:19 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0767.jpg + + + + 770 + 2008-06-16 14:51:19 + 2008-06-16 21:51:19 + open + closed + img_0767 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0767.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Boat Barco Texture + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_8399/ + Mon, 16 Jun 2008 21:51:57 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_8399.jpg + + + + 771 + 2008-06-16 14:51:57 + 2008-06-16 21:51:57 + open + closed + img_8399 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_8399.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Resinous + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20040724_152504_532-2/ + Mon, 04 Jun 2012 18:36:56 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg + + + + 807 + 2012-06-04 11:36:56 + 2012-06-04 18:36:56 + open + closed + dsc20040724_152504_532-2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg + + _attachment_original_parent_id + + + + + St. Louis Blues + https://wpthemetestdata.wordpress.com/2010/07/02/post-format-audio/originaldixielandjazzbandwithalbernard-stlouisblues/ + Mon, 16 Jun 2008 16:49:29 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3 + + + + 821 + 2008-06-16 09:49:29 + 2008-06-16 16:49:29 + open + closed + originaldixielandjazzbandwithalbernard-stlouisblues + inherit + 587 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3 + + + OLYMPUS DIGITAL CAMERA + https://wpthemetestdata.wordpress.com/about/clearing-floats/olympus-digital-camera/ + Thu, 05 Aug 2010 18:07:34 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2010/08/manhattansummer.jpg + + + + 827 + 2010-08-05 11:07:34 + 2010-08-05 18:07:34 + open + closed + olympus-digital-camera + inherit + 501 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2010/08/manhattansummer.jpg + + + Image Alignment 580x300 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-580x300/ + Fri, 15 Mar 2013 00:44:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg + + + + 967 + 2013-03-14 19:44:50 + 2013-03-15 00:44:50 + open + open + image-alignment-580x300 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Image Alignment 150x150 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-150x150/ + Fri, 15 Mar 2013 00:44:49 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg + + + + 968 + 2013-03-14 19:44:49 + 2013-03-15 00:44:49 + open + open + image-alignment-150x150 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Horizontal Featured Image + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-horizontal/featured-image-horizontal-2/ + Fri, 15 Mar 2013 20:40:38 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-horizontal.jpg + + + + 1022 + 2013-03-15 15:40:38 + 2013-03-15 20:40:38 + open + open + featured-image-horizontal-2 + inherit + 1011 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-horizontal.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + I Am Worth Loving Wallpaper + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/soworthloving-wallpaper/ + Thu, 14 Mar 2013 14:58:24 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/soworthloving-wallpaper.jpg + + + + 1023 + 2013-03-14 09:58:24 + 2013-03-14 14:58:24 + open + open + soworthloving-wallpaper + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/soworthloving-wallpaper.jpg + + _wp_attachment_image_alt + + + + + Image Alignment 300x200 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-300x200/ + Fri, 15 Mar 2013 00:44:49 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg + + + + 1025 + 2013-03-14 19:44:49 + 2013-03-15 00:44:49 + open + open + image-alignment-300x200 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Vertical Featured Image + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-vertical/featured-image-vertical-2/ + Fri, 15 Mar 2013 20:41:09 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-vertical.jpg + + + + 1027 + 2013-03-15 15:41:09 + 2013-03-15 20:41:09 + open + open + featured-image-vertical-2 + inherit + 1016 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-vertical.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Image Alignment 1200x4002 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-1200x4002/ + Fri, 15 Mar 2013 00:44:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg + + + + 1029 + 2013-03-14 19:44:50 + 2013-03-15 00:44:50 + open + open + image-alignment-1200x4002 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Unicorn Wallpaper + https://wpthemetestdata.wordpress.com/2010/08/08/post-format-image/unicorn-wallpaper/ + Fri, 14 Dec 2012 03:10:39 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2012/12/unicorn-wallpaper.jpg + + + + 1045 + 2012-12-13 22:10:39 + 2012-12-14 03:10:39 + open + open + unicorn-wallpaper + inherit + 1158 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2012/12/unicorn-wallpaper.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Pages + https://wpthemetestdata.wordpress.com/2013/04/09/pages/ + Tue, 09 Apr 2013 13:37:45 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/pages + + + + 1100 + 2013-04-09 06:37:45 + 2013-04-09 13:37:45 + open + closed + pages + publish + 0 + 2 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Categories + https://wpthemetestdata.wordpress.com/2013/04/09/categories/ + Tue, 09 Apr 2013 13:37:45 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/categories + + + + 1101 + 2013-04-09 06:37:45 + 2013-04-09 13:37:45 + open + closed + categories + publish + 0 + 10 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1112/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1112</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test markup tags and styles.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1112</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1112</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>21</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[4675]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1115/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1115</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test post formats.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1115</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1115</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>24</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[44090582]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1118/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1118</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test unpublished posts.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1118</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1118</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>28</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[54090]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>Depth + https://wpthemetestdata.wordpress.com/2013/04/09/depth/ + Tue, 09 Apr 2013 13:37:46 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/depth + + + + 1119 + 2013-04-09 06:37:46 + 2013-04-09 13:37:46 + open + closed + depth + publish + 0 + 29 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 01 + https://wpthemetestdata.wordpress.com/2013/04/09/level-01/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-01 + + + + 1120 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-01 + publish + 0 + 30 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 02 + https://wpthemetestdata.wordpress.com/2013/04/09/level-02/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-02 + + + + 1121 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-02 + publish + 0 + 31 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 03 + https://wpthemetestdata.wordpress.com/2013/04/09/level-03/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-03 + + + + 1122 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-03 + publish + 0 + 32 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 04 + https://wpthemetestdata.wordpress.com/2013/04/09/level-04/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-04 + + + + 1123 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-04 + publish + 0 + 33 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 05 + https://wpthemetestdata.wordpress.com/2013/04/09/level-05/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-05 + + + + 1124 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-05 + publish + 0 + 34 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 06 + https://wpthemetestdata.wordpress.com/2013/04/09/level-06/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-06 + + + + 1125 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-06 + publish + 0 + 35 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 07 + https://wpthemetestdata.wordpress.com/2013/04/09/level-07/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-07 + + + + 1126 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-07 + publish + 0 + 36 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 08 + https://wpthemetestdata.wordpress.com/2013/04/09/level-08/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-08 + + + + 1127 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-08 + publish + 0 + 37 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 09 + https://wpthemetestdata.wordpress.com/2013/04/09/level-09/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-09 + + + + 1128 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-09 + publish + 0 + 38 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 10 + https://wpthemetestdata.wordpress.com/2013/04/09/level-10/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-10 + + + + 1129 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-10 + publish + 0 + 39 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Advanced + https://wpthemetestdata.wordpress.com/2013/04/09/advanced/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/advanced + + + + 1130 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + advanced + publish + 0 + 40 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu Description + https://wpthemetestdata.wordpress.com/2013/04/09/menu-description/ + Tue, 09 Apr 2013 13:37:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-description + + + + 1142 + 2013-04-09 06:37:50 + 2013-04-09 13:37:50 + open + closed + menu-description + publish + 0 + 44 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu Title Attribute + https://wpthemetestdata.wordpress.com/2013/04/09/menu-title-attribute/ + Tue, 09 Apr 2013 13:37:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-title-attribute + + + + 1143 + 2013-04-09 06:37:50 + 2013-04-09 13:37:50 + open + closed + menu-title-attribute + publish + 0 + 41 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu CSS Class + https://wpthemetestdata.wordpress.com/2013/04/09/menu-css-class/ + Tue, 09 Apr 2013 13:37:51 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-css-class + + + + 1144 + 2013-04-09 06:37:51 + 2013-04-09 13:37:51 + open + closed + menu-css-class + publish + 0 + 42 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + New Window / Tab + https://wpthemetestdata.wordpress.com/2013/04/09/new-window-tab/ + Tue, 09 Apr 2013 13:37:51 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/new-window-tab + + + + 1145 + 2013-04-09 06:37:51 + 2013-04-09 13:37:51 + open + closed + new-window-tab + publish + 0 + 43 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1263/</link> + <pubDate>Tue, 09 Apr 2013 13:38:00 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1263</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1263</wp:post_id> + <wp:post_date>2013-04-09 06:38:00</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:38:00</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1263</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1100]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1264/</link> + <pubDate>Tue, 09 Apr 2013 13:38:01 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1264</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1264</wp:post_id> + <wp:post_date>2013-04-09 06:38:01</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:38:01</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1264</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1100]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>twitter.com + https://wpthemetestdata.wordpress.com/2018/10/20/twitter-com/ + Sun, 21 Oct 2018 02:57:33 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/twitter-com/ + + + + 1719 + + + + + + + 0 + 1 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + facebook.com + https://wpthemetestdata.wordpress.com/2018/10/20/facebook-com/ + Sun, 21 Oct 2018 02:57:35 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/facebook-com/ + + + + 1720 + + + + + + + 0 + 2 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + github.com + https://wpthemetestdata.wordpress.com/2018/10/20/github-com/ + Sun, 21 Oct 2018 02:57:37 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/github-com + + + + 1721 + + + + + + + 0 + 3 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + instagram.com + https://wpthemetestdata.wordpress.com/2018/10/20/instagram-com + Sun, 21 Oct 2018 02:57:41 +000 + themereviewteam> + https://wpthemetestdata.wordpress.com/2018/10/20/instagram-com + + + + 1723 + + + + + + + 0 + 5 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + linkedin.com + https://wpthemetestdata.wordpress.com/2018/10/20/linkedin-com/ + Sun, 21 Oct 2018 02:57:39 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/linkedin-com/ + + + + 1722 + + + + + + + 0 + 4 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + triforce-wallpaper + https://wpthemetestdata.wordpress.com/2010/08/07/post-format-image-caption/triforce-wallpaper/ + Tue, 17 Aug 2010 20:17:31 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2010/08/triforce-wallpaper.jpg + + + + 1628 + 2010-08-17 13:17:31 + 2010-08-17 20:17:31 + open + closed + triforce-wallpaper + inherit + 1163 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2010/08/triforce-wallpaper.jpg + + + + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1636/</link> + <pubDate>Tue, 07 May 2013 19:54:30 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1636</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1636</wp:post_id> + <wp:post_date>2013-05-07 12:54:30</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:30</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1636</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1637/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1637</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1637</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1637</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1638/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1638</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1638</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1638</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1639/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1639</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1639</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1639</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1640/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1640</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1640</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1640</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1641/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1641</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1641</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1641</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1643/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1643</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1643</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1643</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1644/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1644</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1644</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1644</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[701]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1645/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1645</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1645</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1645</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1646/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1646</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1646</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1646</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1647/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1647</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1647</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1647</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1648/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1648</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1648</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1648</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1649/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1649</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1649</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1649</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1650/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1650</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1650</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1650</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1651/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1651</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1651</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1651</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>10</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[174]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1652/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1652</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1652</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1652</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>11</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[173]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1653/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1653</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1653</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1653</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>12</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[172]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1654/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1654</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1654</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1654</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>13</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[746]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1655/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1655</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1655</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1655</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>14</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[748]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1656/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1656</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1656</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1656</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>15</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[742]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1657/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1657</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1657</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1657</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>16</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[744]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1658/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1658</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1658</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1658</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>17</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1659/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1659</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1659</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1659</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>18</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[733]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1660/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1660</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1660</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1660</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>19</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[735]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1643/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1643</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1643</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1643</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1644/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1644</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1644</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1644</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[701]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1645/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1645</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1645</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1645</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1646/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1646</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1646</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1646</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1647/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1647</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1647</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1647</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1648/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1648</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1648</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1648</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1649/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1649</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1649</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1649</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1650/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1650</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1650</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1650</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1651/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1651</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1651</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1651</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>10</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[174]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1652/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1652</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1652</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1652</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>11</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[173]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1653/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1653</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1653</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1653</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>12</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[172]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1654/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1654</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1654</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1654</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>13</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[746]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1655/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1655</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1655</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1655</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>14</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[748]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1656/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1656</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1656</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1656</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>15</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[742]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1657/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1657</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1657</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1657</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>16</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[744]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1658/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1658</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1658</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1658</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>17</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1659/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1659</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1659</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1659</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>18</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[733]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1660/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1660</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1660</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1660</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>19</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[735]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>dsc20040724_152504_532 + https://wpthemetestdata.wordpress.com/?attachment_id=1686 + Wed, 18 Sep 2013 21:37:05 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20040724_152504_532.jpg + + + + 1686 + 2013-09-18 14:37:05 + 2013-09-18 21:37:05 + open + closed + dsc20040724_152504_532 + inherit + 0 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20040724_152504_532.jpg + + + dsc20050604_133440_34211 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050604_133440_34211/ + Wed, 18 Sep 2013 21:37:07 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20050604_133440_34211.jpg + + + + 1687 + 2013-09-18 14:37:07 + 2013-09-18 21:37:07 + open + closed + dsc20050604_133440_34211 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20050604_133440_34211.jpg + + + 2014-slider-mobile-behavior + https://wpthemetestdata.wordpress.com/?attachment_id=1690 + Wed, 04 Dec 2013 18:08:29 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/12/2014-slider-mobile-behavior.mov + + + + 1690 + 2013-12-04 11:08:29 + 2013-12-04 18:08:29 + open + closed + 2014-slider-mobile-behavior + inherit + 0 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/12/2014-slider-mobile-behavior.mov + + + dsc20050315_145007_132 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050315_145007_132-2/ + Sun, 05 Jan 2014 18:45:21 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2014/01/dsc20050315_145007_132.jpg + + + + 1691 + 2014-01-05 11:45:21 + 2014-01-05 18:45:21 + open + closed + dsc20050315_145007_132-2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2014/01/dsc20050315_145007_132.jpg + + + spectacles + https://wpthemetestdata.wordpress.com/about/clearing-floats/spectacles-2/ + Sun, 05 Jan 2014 18:45:36 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2014/01/spectacles.gif + + + + 1692 + 2014-01-05 11:45:36 + 2014-01-05 18:45:36 + open + closed + spectacles-2 + inherit + 501 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2014/01/spectacles.gif + + + Post Format: Standard + https://wpthemetestdata.wordpress.com/2010/10/05/post-format-standard/ + Tue, 05 Oct 2010 07:27:25 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=358 + + + +Mrs. Darling first heard of Peter when she was tidying up her children's minds. It is the nightly custom of every good mother after her children are asleep to rummage in their minds and put things straight for next morning, repacking into their proper places the many articles that have wandered during the day. + +If you could keep awake (but of course you can't) you would see your own mother doing this, and you would find it very interesting to watch her. It is quite like tidying up drawers. You would see her on her knees, I expect, lingering humorously over some of your contents, wondering where on earth you had picked this thing up, making discoveries sweet and not so sweet, pressing this to her cheek as if it were as nice as a kitten, and hurriedly stowing that out of sight. When you wake in the morning, the naughtiness and evil passions with which you went to bed have been folded up small and placed at the bottom of your mind and on the top, beautifully aired, are spread out your prettier thoughts, ready for you to put on. + +I don't know whether you have ever seen a map of a person's mind. Doctors sometimes draw maps of other parts of you, and your own map can become intensely interesting, but catch them trying to draw a map of a child's mind, which is not only confused, but keeps going round all the time. There are zigzag lines on it, just like your temperature on a card, and these are probably roads in the island, for the Neverland is always more or less an island, with astonishing splashes of colour here and there, and coral reefs and rakish-looking craft in the offing, and savages and lonely lairs, and gnomes who are mostly tailors, and caves through which a river runs, and princes with six elder brothers, and a hut fast going to decay, and one very small old lady with a hooked nose. It would be an easy map if that were all, but there is also first day at school, religion, fathers, the round pond, needle-work, murders, hangings, verbs that take the dative, chocolate pudding day, getting into braces, say ninety-nine, three-pence for pulling out your tooth yourself, and so on, and either these are part of the island or they are another map showing through, and it is all rather confusing, especially as nothing will stand still. + +Of course the Neverlands vary a good deal. John's, for instance, had a lagoon with flamingoes flying over it at which John was shooting, while Michael, who was very small, had a flamingo with lagoons flying over it. John lived in a boat turned upside down on the sands, Michael in a wigwam, Wendy in a house of leaves deftly sewn together. John had no friends, Michael had friends at night, Wendy had a pet wolf forsaken by its parents, but on the whole the Neverlands have a family resemblance, and if they stood still in a row you could say of them that they have each other's nose, and so forth. On these magic shores children at play are for ever beaching their coracles [simple boat]. We too have been there; we can still hear the sound of the surf, though we shall land no more. + +Of all delectable islands the Neverland is the snuggest and most compact, not large and sprawly, you know, with tedious distances between one adventure and another, but nicely crammed. When you play at it by day with the chairs and table-cloth, it is not in the least alarming, but in the two minutes before you go to sleep it becomes very real. That is why there are night-lights. + +Occasionally in her travels through her children's minds Mrs. Darling found things she could not understand, and of these quite the most perplexing was the word Peter. She knew of no Peter, and yet he was here and there in John and Michael's minds, while Wendy's began to be scrawled all over with him. The name stood out in bolder letters than any of the other words, and as Mrs. Darling gazed she felt that it had an oddly cocky appearance.]]> + + 358 + 2010-10-05 00:27:25 + 2010-10-05 07:27:25 + closed + closed + post-format-standard + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Gallery + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/ + Fri, 10 Sep 2010 14:24:14 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=555 + + + +You can use this page to test the Theme's handling of the gallery shortcode, including the columns parameter, from 1 to 9 columns. Themes are only required to support the default setting (3 columns), so this page is entirely optional. +

    One Column

    +[gallery columns="1"] +

    Two Columns

    +[gallery columns="2"] +

    Three Columns

    +[gallery columns="3"] +

    Four Columns

    +[gallery columns="4"] +

    Five Columns

    +[gallery columns="5"] +

    Six Columns

    +[gallery columns="6"] +

    Seven Columns

    +[gallery columns="7"] +

    Eight Columns

    +[gallery columns="8"] +

    Nine Columns

    +[gallery columns="9"]]]>
    + + 555 + 2010-09-10 07:24:14 + 2010-09-10 14:24:14 + closed + closed + post-format-gallery + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Post Format: Aside + https://wpthemetestdata.wordpress.com/2010/05/09/post-format-aside/ + Sun, 09 May 2010 14:51:54 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=559 + + + + 559 + 2010-05-09 07:51:54 + 2010-05-09 14:51:54 + closed + closed + post-format-aside + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Chat + https://wpthemetestdata.wordpress.com/2010/01/08/post-format-chat/ + Fri, 08 Jan 2010 14:59:31 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=562 + + + + 562 + 2010-01-08 07:59:31 + 2010-01-08 14:59:31 + closed + closed + post-format-chat + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Link + https://wpthemetestdata.wordpress.com/2010/03/07/post-format-link/ + Sun, 07 Mar 2010 15:06:53 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=565 + + The WordPress Theme Review Team Website]]> + + 565 + 2010-03-07 08:06:53 + 2010-03-07 15:06:53 + closed + closed + post-format-link + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Image (Linked) + https://wpthemetestdata.wordpress.com/2010/08/06/post-format-image-linked/ + Fri, 06 Aug 2010 15:09:39 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=568 + + chunk of resinous blackboy husk[/caption] +]]> + + 568 + 2010-08-06 08:09:39 + 2010-08-06 15:09:39 + closed + closed + post-format-image-linked + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Quote + https://wpthemetestdata.wordpress.com/2010/02/05/post-format-quote/ + Fri, 05 Feb 2010 15:13:15 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=575 + + Only one thing is impossible for God: To find any sense in any copyright law on the planet. +Mark Twain]]> + + 575 + 2010-02-05 08:13:15 + 2010-02-05 15:13:15 + closed + closed + post-format-quote + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Status + https://wpthemetestdata.wordpress.com/2010/04/04/post-format-status/ + Sun, 04 Apr 2010 15:21:24 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=579 + + + + 579 + 2010-04-04 08:21:24 + 2010-04-04 15:21:24 + closed + closed + post-format-status + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Video (WordPress.tv) + https://wpthemetestdata.wordpress.com/2010/06/03/post-format-video-wordpresstv/ + Thu, 03 Jun 2010 15:25:58 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=582 + + instructions in the Codex.]]> + + 582 + 2010-06-03 08:25:58 + 2010-06-03 15:25:58 + closed + closed + post-format-video-wordpresstv + publish + 0 + 0 + post + + 0 + + + + + + + + + _oembed_4321638fc1a6fee26443f7fe8a70a871 + ]]> + + + _oembed_29351fff85c1be1d1e9a965a0332a861 + ]]> + + + _oembed_9fcc86d7d9398ff736577f922307f64d + ]]> + + + _oembed_366237792d32461d0052efb2edec37f5 + ]]> + + + _oembed_37fdfe862c13c46a93be2921279bf675 + ]]> + + + + Post Format: Audio + https://wpthemetestdata.wordpress.com/2010/07/02/post-format-audio/ + Fri, 02 Jul 2010 15:36:44 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=587 + + St. Louis Blues + +Audio shortcode: + +[audio https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3]]]> + + 587 + 2010-07-02 08:36:44 + 2010-07-02 15:36:44 + closed + closed + post-format-audio + publish + 0 + 0 + post + + 0 + + + + + + + + enclosure + + + + + Page A + https://wpthemetestdata.wordpress.com/page-a/ + Fri, 24 Jun 2011 01:38:52 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=733 + + + + 733 + 2011-06-23 18:38:52 + 2011-06-24 01:38:52 + open + closed + page-a + publish + 0 + 10 + page + + 0 + + + Page B + https://wpthemetestdata.wordpress.com/page-b/ + Fri, 24 Jun 2011 01:39:14 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=735 + + + + 735 + 2011-06-23 18:39:14 + 2011-06-24 01:39:14 + open + closed + page-b + publish + 0 + 11 + page + + 0 + + + Level 2a + https://wpthemetestdata.wordpress.com/level-1/level-2a/ + Fri, 24 Jun 2011 02:03:33 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=742 + + + + 742 + 2011-06-23 19:03:33 + 2011-06-24 02:03:33 + open + closed + level-2a + publish + 174 + 0 + page + + 0 + + + Level 2b + https://wpthemetestdata.wordpress.com/level-1/level-2b/ + Fri, 24 Jun 2011 02:04:03 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=744 + + + + 744 + 2011-06-23 19:04:03 + 2011-06-24 02:04:03 + open + closed + level-2b + publish + 174 + 0 + page + + 0 + + + Level 3a + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3a/ + Fri, 24 Jun 2011 02:04:24 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=746 + + + + 746 + 2011-06-23 19:04:24 + 2011-06-24 02:04:24 + open + closed + level-3a + publish + 173 + 0 + page + + 0 + + + Level 3b + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3b/ + Fri, 24 Jun 2011 02:04:46 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=748 + + + + 748 + 2011-06-23 19:04:46 + 2011-06-24 02:04:46 + open + closed + level-3b + publish + 173 + 0 + page + + 0 + + + Template: Excerpt (Defined) + https://wpthemetestdata.wordpress.com/2012/03/15/template-excerpt-defined/ + Thu, 15 Mar 2012 21:38:08 +0000 + themedemos + http://wptest.io/demo/?p=993 + + should be displayed in place of the user-defined excerpt in single-page views.]]> + should be displayed in place of the post content in archive-index pages. It can be longer than the automatically generated excerpts, and can have HTML tags.]]> + 993 + 2012-03-15 14:38:08 + 2012-03-15 21:38:08 + closed + closed + template-excerpt-defined + publish + 0 + 0 + post + + 0 + + + + + + + + + Template: More Tag + https://wpthemetestdata.wordpress.com/2012/03/15/template-more-tag/ + Thu, 15 Mar 2012 21:41:11 +0000 + themedemos + http://wptest.io/demo/?p=996 + + more tag. + +Right after this sentence should be a "continue reading" button of some sort on list pages of themes that show full content. It won't show on single pages or on themes showing excerpts. + + + +And this content is after the more tag. (which should be the anchor link for when the button is clicked)]]> + + 996 + 2012-03-15 14:41:11 + 2012-03-15 21:41:11 + closed + closed + template-more-tag + publish + 0 + 0 + post + + 0 + + + + + + + + + Edge Case: Nested And Mixed Lists + https://wpthemetestdata.wordpress.com/2009/05/15/edge-case-nested-and-mixed-lists/ + Fri, 15 May 2009 21:48:32 +0000 + themedemos + http://wptest.io/demo/?p=1000 + + +
  • Lists within lists do not break the ordered list numbering order
  • +
  • Your list styles go deep enough.
  • + +

    Ordered - Unordered - Ordered

    +
      +
    1. ordered item
    2. +
    3. ordered item +
        +
      • unordered
      • +
      • unordered +
          +
        1. ordered item
        2. +
        3. ordered item
        4. +
        +
      • +
      +
    4. +
    5. ordered item
    6. +
    7. ordered item
    8. +
    +

    Ordered - Unordered - Unordered

    +
      +
    1. ordered item
    2. +
    3. ordered item +
        +
      • unordered
      • +
      • unordered +
          +
        • unordered item
        • +
        • unordered item
        • +
        +
      • +
      +
    4. +
    5. ordered item
    6. +
    7. ordered item
    8. +
    +

    Unordered - Ordered - Unordered

    +
      +
    • unordered item
    • +
    • unordered item +
        +
      1. ordered
      2. +
      3. ordered +
          +
        • unordered item
        • +
        • unordered item
        • +
        +
      4. +
      +
    • +
    • unordered item
    • +
    • unordered item
    • +
    +

    Unordered - Unordered - Ordered

    +
      +
    • unordered item
    • +
    • unordered item +
        +
      • unordered
      • +
      • unordered +
          +
        1. ordered item
        2. +
        3. ordered item
        4. +
        +
      • +
      +
    • +
    • unordered item
    • +
    • unordered item
    • +
    ]]>
    + + 1000 + 2009-05-15 14:48:32 + 2009-05-15 21:48:32 + closed + closed + edge-case-nested-and-mixed-lists + publish + 0 + 0 + post + + 0 + + + + + + + +
    + + Template: Featured Image (Horizontal) + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-horizontal/ + Thu, 15 Mar 2012 22:15:12 +0000 + themedemos + http://wptest.io/demo/?p=1011 + + featured image, if the theme supports it. + +Non-square images can provide some unique styling issues. + +This post tests a horizontal featured image.]]> + + 1011 + 2012-03-15 15:15:12 + 2012-03-15 22:15:12 + closed + closed + template-featured-image-horizontal + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + + + + Template: Featured Image (Vertical) + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-vertical/ + Thu, 15 Mar 2012 22:36:32 +0000 + themedemos + http://wptest.io/demo/?p=1016 + + featured image, if the theme supports it. + +Non-square images can provide some unique styling issues. + +This post tests a vertical featured image.]]> + + 1016 + 2012-03-15 15:36:32 + 2012-03-15 22:36:32 + closed + closed + template-featured-image-vertical + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + + + + Post Format: Gallery (Tiled) + https://wpthemetestdata.wordpress.com/2010/09/09/post-format-gallery-tiled/ + Fri, 10 Sep 2010 00:23:27 +0000 + themedemos + http://wptest.io/demo/?p=1031 + + Jetpack to test. + +[gallery type="rectangular" columns="4" ids="755,757,758,760,766,763" orderby="rand"] + +This is some text after the Tiled Gallery just to make sure that everything spaces nicely.]]> + + 1031 + 2010-09-09 17:23:27 + 2010-09-10 00:23:27 + closed + closed + post-format-gallery-tiled + publish + 0 + 0 + post + + 0 + + + + + + + + + + + Page Image Alignment + https://wpthemetestdata.wordpress.com/about/page-image-alignment/ + Fri, 15 Mar 2013 23:19:23 +0000 + themedemos + http://wptest.io/demo/?page_id=1080 + + None, Left, Right, and Center. In addition, they also get the options of Thumbnail, Medium, Large & Fullsize. Be sure to try this page in RTL mode and it should look the same as LTR. +

    Image Alignment 580x300

    +The image above happens to be centered. + +Image Alignment 150x150 The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see there should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +Image Alignment 1200x400 + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 1200x400 + +And we try the large image again, with the center alignment since that sometimes is a problem. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 300x200 + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And just when you thought we were done, we're going to do them all over again with captions! + +[caption id="attachment_906" align="aligncenter" width="580"]Image Alignment 580x300 Look at 580x300 getting some caption love.[/caption] + +The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky. + +[caption id="attachment_904" align="alignleft" width="150"]Image Alignment 150x150 Bigger caption than the image usually is.[/caption] + +The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +[caption id="attachment_907" align="alignnone" width="1200"]Image Alignment 1200x400 Comment for massive image for your eyeballs.[/caption] + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. +[caption id="attachment_907" align="aligncenter" width="1200"]Image Alignment 1200x400 This massive image is centered.[/caption] + +And again with the big image centered. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +[caption id="attachment_905" align="alignright" width="300"]Image Alignment 300x200 Feels good to be right all the time.[/caption] + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! Last thing is a small image aligned right. Whatever follows should be unaffected. Image Alignment 150x150]]>
    + + 1133 + 2013-03-15 18:19:23 + 2013-03-15 23:19:23 + open + open + page-image-alignment + publish + 2 + 0 + page + + 0 +
    + + Page Markup And Formatting + https://wpthemetestdata.wordpress.com/about/page-markup-and-formatting/ + Fri, 15 Mar 2013 23:20:05 +0000 + themedemos + http://wptest.io/demo/?page_id=1083 + + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    Jane$1Because that's all Steve Jobs needed for a salary.
    John$100KFor all the blogging he does.
    Jane$100MPictures are worth a thousand words, right? So Tom x 1,000.
    Jane$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    + Robert Frost
    +
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +This tag shows strike-through text. + +Small Tag + +This tag shows smaller text. + +Strong Tag + +This tag shows bold text. + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +This rarely used tag emulates teletype text, which is usually styled like the <code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +This tag shows underlined text. + +Variable Tag + +This allows you to denote variables.]]>
    + + 1134 + 2013-03-15 18:20:05 + 2013-03-15 23:20:05 + open + open + page-markup-and-formatting + publish + 2 + 0 + page + + 0 +
    + + Template: Comments + https://wpthemetestdata.wordpress.com/2012/01/03/template-comments/ + Tue, 03 Jan 2012 17:11:37 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/comment-test/ + + +
  • Threaded comments up to 10 levels deep
  • +
  • Paginated comments (set Settings > Discussion > Break comments into pages to 5 top level comments per page)
  • +
  • Comment markup / formatting
  • +
  • Comment images
  • +
  • Comment videos
  • +
  • Author comments
  • +
  • Gravatars and default fallbacks
  • +]]>
    + + 1148 + 2012-01-03 10:11:37 + 2012-01-03 17:11:37 + open + closed + template-comments + publish + 0 + 0 + post + + 0 + + + + + + + 881 + + example@example.org + http://example.org/ + + 2012-09-03 10:18:04 + 2012-09-03 17:18:04 + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    John Saddington$1Because that's all Steve Job' needed for a salary.
    Tom McFarlin$100KFor all the blogging he does.
    Jared Erickson$100MPictures are worth a thousand words, right? So Tom x 1,000.
    Chris Ames$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    + +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    +Robert Frost
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    + +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up.]]>
    + 1 + + 0 + 0 +
    + + 899 + + fake@example.com + + + 2013-03-11 23:45:54 + 2013-03-12 04:45:54 + Gravatar associated with it. + They did not speify a website, so there should be no link to it in the comment. +]]> + 1 + + 0 + 0 + + + 900 + + example@example.org + http://example.org/ + + 2013-03-12 13:17:35 + 2013-03-12 20:17:35 + + 1 + + 0 + 0 + + + 901 + + example@example.org + http://example.org + + 2013-03-14 07:53:26 + 2013-03-14 14:53:26 + + 1 + + 0 + 0 + + + 903 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 07:56:46 + 2013-03-14 14:56:46 + + 1 + + 0 + 24783058 + + + 904 + + example@example.org + http://example.org/ + + 2013-03-14 07:57:01 + 2013-03-14 14:57:01 + + 1 + + 0 + 0 + + + 905 + + example@example.org + http://example.org/ + + 2013-03-14 08:01:21 + 2013-03-14 15:01:21 + + 1 + + 904 + 0 + + + 906 + + example@example.org + http://example.org/ + + 2013-03-14 08:02:06 + 2013-03-14 15:02:06 + + 1 + + 905 + 0 + + + 907 + + example@example.org + http://example.org/ + + 2013-03-14 08:03:22 + 2013-03-14 15:03:22 + + 1 + + 906 + 0 + + + 910 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 08:10:29 + 2013-03-14 15:10:29 + + 1 + + 907 + 24783058 + + + 911 + + example@example.org + http://example.org/ + + 2013-03-14 08:12:16 + 2013-03-14 15:12:16 + + 1 + + 910 + 0 + + + 912 + + example@example.org + http://example.org/ + + 2013-03-14 08:12:58 + 2013-03-14 15:12:58 + + 1 + + 911 + 0 + + + 913 + + example@example.org + http://example.org/ + + 2013-03-14 08:13:42 + 2013-03-14 15:13:42 + + 1 + + 912 + 0 + + + 914 + + example@example.org + http://example.org/ + + 2013-03-14 08:14:13 + 2013-03-14 15:14:13 + + 1 + + 913 + 0 + + + 915 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 08:14:47 + 2013-03-14 15:14:47 + + 1 + + 914 + 24783058 + + + 917 + + example@example.org + http://example.org/ + + 2013-03-14 09:56:43 + 2013-03-14 16:56:43 + + If the image imports... + ]]> + 1 + + 0 + 0 + + + 918 + + example@example.org + http://example.org/ + + 2013-03-14 11:23:24 + 2013-03-14 18:23:24 + + 1 + + 0 + 0 + + + 919 + + example@example.org + http://example.org/ + + 2013-03-14 11:27:54 + 2013-03-14 18:27:54 + + 1 + + 0 + 0 + + + 920 + + example@example.org + http://example.org/ + + 2013-03-14 11:30:33 + 2013-03-14 18:30:33 + + 1 + + 0 + 24783058 + + + 1015 + + auser@example.com + + + 2014-09-29 02:52:15 + 2014-09-29 09:52:15 + + 0 + + 0 + 0 + +
    + + Template: Pingbacks And Trackbacks + https://wpthemetestdata.wordpress.com/2012/01/01/template-pingbacks-an-trackbacks/ + Sun, 01 Jan 2012 17:17:18 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/many-trackbacks/ + + +
  • Above the comments
  • +
  • Below the comments
  • +
  • Included within the normal flow of comments
  • +]]>
    + + 1149 + 2012-01-01 10:17:18 + 2012-01-01 17:17:18 + closed + closed + template-pingbacks-an-trackbacks + publish + 0 + 0 + post + + 0 + + + + + + + + + 921 + + + http://tellyworth.wordpress.com/2007/11/21/ping-1/ + + 2007-11-21 11:31:12 + 2007-11-21 01:31:12 + + 1 + trackback + 0 + 0 + + + 922 + + + http://tellyworth.wordpress.com/2007/11/21/ping-2-with-a-much-longer-title-than-the-previous-ping-which-was-called-ping-1/ + + 2007-11-21 11:35:47 + 2007-11-21 01:35:47 + + 1 + trackback + 0 + 0 + + + 923 + + + http://tellyworth.wordpress.com/2007/11/21/ping-4/ + + 2007-11-21 11:39:25 + 2007-11-21 01:39:25 + + 1 + pingback + 0 + 0 + + + 924 + + + http://tellyworth.wordpress.com/2007/11/21/ping-3/ + + 2007-11-21 11:38:22 + 2007-11-21 01:38:22 + + 1 + pingback + 0 + 0 + + + 925 + + example@example.org + http://example.org/ + + 2010-06-11 15:27:04 + 2010-06-11 22:27:04 + + 1 + + 0 + 0 + +
    + + Template: Comments Disabled + https://wpthemetestdata.wordpress.com/2012/01/02/template-comments-disabled/ + Mon, 02 Jan 2012 17:21:15 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/no-comments/ + + should display pingbacks and trackbacks.]]> + + 1150 + 2012-01-02 10:21:15 + 2012-01-02 17:21:15 + closed + closed + template-comments-disabled + publish + 0 + 0 + post + + 0 + + + + + + + + Edge Case: Many Tags + https://wpthemetestdata.wordpress.com/2009/06/01/edge-case-many-tags/ + Mon, 01 Jun 2009 08:00:34 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/11/24/many-tags/ + + + + 1151 + 2009-06-01 01:00:34 + 2009-06-01 08:00:34 + closed + closed + edge-case-many-tags + publish + 0 + 0 + post + + 0' + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Edge Case: Many Categories + https://wpthemetestdata.wordpress.com/2009/07/02/edge-case-many-categories/ + Thu, 02 Jul 2009 09:00:03 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/11/24/many-categories/ + + + + 1152 + 2009-07-02 02:00:03 + 2009-07-02 09:00:03 + closed + closed + edge-case-many-categories + publish + 0 + 0 + post + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Scheduled + https://wpthemetestdata.wordpress.com/2020/01/01/scheduled/ + Wed, 01 Jan 2030 19:00:18 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=418 + + + + 1153 + 2030-01-01 12:00:18 + 2030-01-01 19:00:18 + closed + closed + scheduled + future + 0 + 0 + post + + 0 + + + + + + Post Format: Image + https://wpthemetestdata.wordpress.com/2010/08/08/post-format-image/ + Sun, 08 Aug 2010 12:00:39 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=568 + +
      + +]]>
    + + 1158 + 2010-08-08 05:00:39 + 2010-08-08 12:00:39 + closed + closed + post-format-image + publish + 0 + 0 + post + + 0 + + + + + +
    + + Post Format: Video (YouTube) + https://wpthemetestdata.wordpress.com/2010/06/02/post-format-video-youtube/ + Wed, 02 Jun 2010 09:00:58 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=582 + + WordPress Embeds.]]> + + 1161 + 2010-06-02 02:00:58 + 2010-06-02 09:00:58 + closed + closed + post-format-video-youtube + publish + 0 + 0 + post + + 0 + + + + + + + Post Format: Image (Caption) + https://wpthemetestdata.wordpress.com/2010/08/07/post-format-image-caption/ + Sat, 07 Aug 2010 13:00:19 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=674 + + Bell on Wharf Bell on wharf in San Francisco[/caption]]]> + + 1163 + 2010-08-07 06:00:19 + 2010-08-07 13:00:19 + closed + closed + post-format-image-caption + publish + 0 + 0 + post + + 0 + + + + + + + + _thumbnail_id + + + + + Draft + https://wpthemetestdata.wordpress.com/?p=1164 + Tue, 09 Apr 2013 18:20:39 +0000 + themedemos + http://wptest.io/demo/?p=922 + + + + 1164 + 2013-04-09 11:20:39 + 2013-04-09 18:20:39 + closed + closed + + draft + 0 + 0 + post + + 0 + + + + + + Template: Password Protected (the password is "enter") + https://wpthemetestdata.wordpress.com/2012/01/04/template-password-protected/ + Wed, 04 Jan 2012 16:38:05 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/test-with-secret-password/ + + + + 1168 + 2012-01-04 09:38:05 + 2012-01-04 16:38:05 + closed + closed + template-password-protected + publish + 0 + 0 + post + enter + 0 + + + + + + + 926 + + example@example.org + http://example.org/ + + 2013-03-14 11:56:08 + 2013-03-14 18:56:08 + + 1 + + 0 + 0 + + + + + <link>https://wpthemetestdata.wordpress.com/2009/09/05/edge-case-no-title/</link> + <pubDate>Sat, 05 Sep 2009 16:00:23 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2007/09/04/14/</guid> + <description/> + <content:encoded><![CDATA[This post has no title, but it still must link to the single post view somehow. + +This is typically done by placing the permalink on the post date.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1169</wp:post_id> + <wp:post_date>2009-09-05 09:00:23</wp:post_date> + <wp:post_date_gmt>2009-09-05 16:00:23</wp:post_date_gmt> + <wp:comment_status>closed</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>edge-case-no-title</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>0</wp:menu_order> + <wp:post_type>post</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="category" nicename="classic"><![CDATA[Classic]]></category> + <category domain="post_tag" nicename="edge-case"><![CDATA[edge case]]></category> + <category domain="category" nicename="edge-case-2"><![CDATA[Edge Case]]></category> + <category domain="post_tag" nicename="layout"><![CDATA[layout]]></category> + <category domain="post_tag" nicename="title"><![CDATA[title]]></category> +</item> +<item> + <title>Edge Case: No Content + https://wpthemetestdata.wordpress.com/2009/08/06/edge-case-no-content/ + Thu, 06 Aug 2009 16:39:56 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/this-post-has-no-body/ + + + + 1170 + 2009-08-06 09:39:56 + 2009-08-06 16:39:56 + closed + closed + edge-case-no-content + publish + 0 + 0 + post + + 0 + + + + + + + 927 + + example@example.org + http://example.org/ + + 2013-03-14 12:35:07 + 2013-03-14 19:35:07 + + 1 + + 0 + 0 + + + + Template: Paginated + https://wpthemetestdata.wordpress.com/2012/01/08/template-paginated/ + Sun, 08 Jan 2012 17:00:20 +0000 + themedemos + https://noeltest.wordpress.com/?p=188 + + + +Post Page 2 + + + +Post Page 3]]> + + 1171 + 2012-01-08 10:00:20 + 2012-01-08 17:00:20 + closed + closed + template-paginated + publish + 0 + 0 + post + + 0 + + + + + + + + + <![CDATA[Markup: Title <em>With</em> <b>Mark<sup>up</sup></b>]]> + https://wpthemetestdata.wordpress.com/2013/01/05/markup-title-with-markup/ + Sat, 05 Jan 2013 17:00:49 +0000 + themedemos + http://wptest.io/demo/?p=861 + + +
  • The post title renders the word "with" in italics and the word "markup" in bold (and "up" is superscript).
  • +
  • The post title markup should be removed from the browser window / tab.
  • +]]>
    + + 1173 + 2013-01-05 10:00:49 + 2013-01-05 17:00:49 + closed + closed + markup-title-with-markup + publish + 0 + 0 + post + + 0 + + + + + +
    + + Markup: Title With Special Characters ~`!@#$%^&*()-_=+{}[]/\;:'"?,.> + https://wpthemetestdata.wordpress.com/2013/01/05/title-with-special-characters/ + Sat, 05 Jan 2013 18:00:20 +0000 + themedemos + http://wptest.io/demo/?p=867 + + Latin Character Tests +This is a test to see if the fonts used in this theme support basic Latin characters. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    !"#$%&'()*
    +,-./01234
    56789:;>=<
    ?@ABCDEFGH
    IJKLMNOPQR
    STUVWXYZ[\
    ]^_`abcdef
    ghijklmnop
    qrstuvwxyz
    {|}~
    ]]>
    + + 1174 + 2013-01-05 11:00:20 + 2013-01-05 18:00:20 + closed + closed + title-with-special-characters + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Taumatawhakatangihangakoauauotamateaturipukakapikimaungahoronukupokaiwhenuakitanatahu + https://wpthemetestdata.wordpress.com/2009/10/05/title-should-not-overflow-the-content-area/ + Mon, 05 Oct 2009 19:00:59 +0000 + themedemos + http://wptest.io/demo/?p=877 + + Title should not overflow the content area + +A few things to check for: +
      +
    • Non-breaking text in the title, content, and comments should have no adverse effects on layout or functionality.
    • +
    • Check the browser window / tab title.
    • +
    • If you are a plugin or widget developer, check that this text does not break anything.
    • +
    + +The following CSS properties will help you support non-breaking text. + +
    -ms-word-wrap: break-word;
    +word-wrap: break-word;
    + ]]>
    + + 1175 + 2009-10-05 12:00:59 + 2009-10-05 19:00:59 + closed + closed + title-should-not-overflow-the-content-area + publish + 0 + 0 + post + + 0 + + + + + + + + +
    + + Markup: Text Alignment + https://wpthemetestdata.wordpress.com/2013/01/09/markup-text-alignment/ + Wed, 09 Jan 2013 16:00:39 +0000 + themedemos + http://wptest.io/demo/?p=895 + + Default +This is a paragraph. It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love. Completely neutral and not picking a side or sitting on the fence. It just is. It just freaking is. It likes where it is. It does not feel compelled to pick a side. Leave him be. It will just be better that way. Trust me. +

    Left Align

    +

    This is a paragraph. It is left aligned. Because of this, it is a bit more liberal in it's views. It's favorite color is green. Left align tends to be more eco-friendly, but it provides no concrete evidence that it really is. Even though it likes share the wealth evenly, it leaves the equal distribution up to justified alignment.

    + +

    Center Align

    +

    This is a paragraph. It is center aligned. Center is, but nature, a fence sitter. A flip flopper. It has a difficult time making up its mind. It wants to pick a side. Really, it does. It has the best intentions, but it tends to complicate matters more than help. The best you can do is try to win it over and hope for the best. I hear center align does take bribes.

    + +

    Right Align

    +

    This is a paragraph. It is right aligned. It is a bit more conservative in it's views. It's prefers to not be told what to do or how to do it. Right align totally owns a slew of guns and loves to head to the range for some practice. Which is cool and all. I mean, it's a pretty good shot from at least four or five football fields away. Dead on. So boss.

    + +

    Justify Align

    +

    This is a paragraph. It is justify aligned. It gets really mad when people associate it with Justin Timberlake. Typically, justified is pretty straight laced. It likes everything to be in it's place and not all cattywampus like the rest of the aligns. I am not saying that makes it better than the rest of the aligns, but it does tend to put off more of an elitist attitude.

    ]]>
    + + 1176 + 2013-01-09 09:00:39 + 2013-01-09 16:00:39 + closed + closed + markup-text-alignment + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Markup: Image Alignment + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/ + Fri, 11 Jan 2013 03:15:40 +0000 + themedemos + http://wptest.io/demo/?p=903 + + None, Left, Right, and Center. In addition, they also get the options of Thumbnail, Medium, Large & Fullsize. Be sure to try this page in RTL mode and it should look the same as LTR. +

    Image Alignment 580x300

    +The image above happens to be centered. + +Image Alignment 150x150 The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +Image Alignment 1200x400 + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 1200x400 + +And we try the large image again, with the center alignment since that sometimes is a problem. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 300x200 + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And just when you thought we were done, we're going to do them all over again with captions! + +[caption id="attachment_906" align="aligncenter" width="580"]Image Alignment 580x300 Look at 580x300 getting some caption love.[/caption] + +The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky. + +[caption id="attachment_904" align="alignleft" width="150"]Image Alignment 150x150 Bigger caption than the image usually is.[/caption] + +The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +[caption id="attachment_907" align="alignnone" width="1200"]Image Alignment 1200x400 Comment for massive image for your eyeballs.[/caption] + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. +[caption id="attachment_907" align="aligncenter" width="1200"]Image Alignment 1200x400 This massive image is centered.[/caption] + +And again with the big image centered. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +[caption id="attachment_905" align="alignright" width="300"]Image Alignment 300x200 Feels good to be right all the time.[/caption] + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! One last thing: The last item in this post's content is a thumbnail floated right. Make sure any elements after the content are clearing properly. + +]]>
    + + 1177 + 2013-01-10 20:15:40 + 2013-01-11 03:15:40 + closed + closed + markup-image-alignment + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + +
    + + Markup: HTML Tags and Formatting + https://wpthemetestdata.wordpress.com/2013/01/11/markup-html-tags-and-formatting/ + Sat, 12 Jan 2013 03:22:19 +0000 + themedemos + http://wptest.io/demo/?p=919 + + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    John Doe$1Because that's all Steve Jobs needed for a salary.
    Jane Doe$100KFor all the blogging she does.
    Fred Bloggs$100MPictures are worth a thousand words, right? So Jane x 1,000.
    Jane Bloggs$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    +Robert Frost
    +
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +This tag shows strike-through text. + +Small Tag + +This tag shows smaller text. + +Strong Tag + +This tag shows bold text. + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +This rarely used tag emulates teletype text, which is usually styled like the <code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +This tag shows underlined text. + +Variable Tag + +This allows you to denote variables.]]>
    + + 1178 + 2013-01-11 20:22:19 + 2013-01-12 03:22:19 + closed + closed + markup-html-tags-and-formatting + publish + 0 + 0 + post + + 0 + + + + + + + +
    + + Media: Twitter Embeds + https://wpthemetestdata.wordpress.com/2011/03/15/media-twitter-embeds/ + Tue, 15 Mar 2011 22:47:16 +0000 + themedemos + http://wptest.io/demo/?p=1027 + + Twitter Embeds feature.]]> + + 1179 + 2011-03-15 15:47:16 + 2011-03-15 22:47:16 + closed + closed + media-twitter-embeds + publish + 0 + 0 + post + + 0 + + + + + + + + _oembed_time_d01e104b758ab65a49dfdede5913069c + + + + _oembed_ac49b172e1844531a885a53eff2efd91 + ]]> + + + _oembed_time_ac49b172e1844531a885a53eff2efd91 + + + + _oembed_d01e104b758ab65a49dfdede5913069c + ]]> + + + + Template: Sticky + https://wpthemetestdata.wordpress.com/2012/01/07/template-sticky/ + Sat, 07 Jan 2012 14:07:21 +0000 + themedemos + http://wptest.io/demo/?p=1241 + + +
  • The sticky post should be distinctly recognizable in some way in comparison to normal posts. You can style the .sticky class if you are using the post_class() function to generate your post classes, which is a best practice.
  • +
  • They should show at the very top of the blog index page, even though they could be several posts back chronologically.
  • +
  • They should still show up again in their chronologically correct postion in time, but without the sticky indicator.
  • +
  • If you have a plugin or widget that lists popular posts or comments, make sure that this sticky post is not always at the top of those lists unless it really is popular.
  • +]]>
    + + 1241 + 2012-01-07 07:07:21 + 2012-01-07 14:07:21 + closed + closed + template-sticky + publish + 0 + 0 + post + + 1 + + + + +
    + + Template: Excerpt (Generated) + https://wpthemetestdata.wordpress.com/2012/03/14/template-excerpt-generated/ + Wed, 14 Mar 2012 16:49:22 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=1446 + + excerpt_length and excerpt_more, display properly.]]> + + 1446 + 2012-03-14 09:49:22 + 2012-03-14 16:49:22 + closed + closed + template-excerpt-generated + publish + 0 + 0 + post + + 0 + + + + + + + + + Block category: Common + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-common/ + Fri, 02 Nov 2018 16:20:28 +0000 + >themereviewteam + https://wpthemetestdata.wordpress.com/?p=1730 + + +

    The Common category includes the following blocks: Paragraph, image, headings, list, gallery, quote, audio, cover, video.

    + + + +

    The paragraph block is the default block type.  It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love.

    + + + +

    This paragraph is left aligned.

    + + + +

    This italic paragraph is right aligned.

    + + + +

    Neither of these paragraphs care about politics, but this one is bold, medium sized and has a drop cap.

    + + + +

    This paragraph is centered.

    + + + +

    This paragraph prefers Jazz over Justin Timberlake. It also uses the small font size.

    + + + +

    This paragraph has something important to say:  It has a large font size, which defaults to 36px.

    + + + +

    The huge text size defaults to 46px, but the size can be customized.

    + + + +

    This paragraph is colorful, with a red background and white text (maybe). Colored blocks should have a high enough contrast, so that the text is readable.

    + + + +

    Below this block, you will see a single image with a circle mask applied.

    + + + +
    Image Alignment 150x150
    + + + +

    H1 Heading

    + + + +

    H2 Heading

    + + + +

    H3 Heading

    + + + +

    H4 Heading

    + + + +
    H5 Heading
    + + + +
    H6 Heading
    + + + +

    Ordered list

    + + + +
    1. The software should be licensed under the GNU Public License.
    2. The software should be freely available to anyone to use for any purpose, and without permission.
    3. The software should be open to modifications.
      1. Any modifications should be freely distributable at no cost and without permission from its creators.
    4. The software should provide a framework for translation to make it globally accessible to speakers of all languages.
    5. The software should provide a framework for extensions so modifications and enhancements can be made without modifying core code
    + + + +

    Unordered list

    + + + +
    • One
    • Two
    • Three
      • Four
    • Five
    + + + + + + + +

    Quote

    Cite
    + + + +
    + + + +
    +

    Cover block with background image

    +
    + + + +

    The file block has a setting that lets us show or hide a download button with editable text:

    + + + + + + + + + + + +

    Video blocks have settings for showing and hiding the playback controls. Use autoplay and playback controls responsibly.

    + + + +
    This is a video block caption.
    + + + +

    The video block below is muted and has a poster image that displays before the video starts:

    + + + +
    + +]]>
    + + 1730 + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + +
    + + Block category: Formatting + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-formatting/ + Fri, 02 Nov 2018 16:41:42 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1732 + + +

    The formatting category includes the following blocks:

    + + + +
    The code block starts with
    +<!-- wp:code -->
    +<?php echo 'Hello World'; ?>
    +
    + + +

    The classic block can have almost anything in it.

    +
    +
    a heading
    + + +
    The custom HTML block lets you put HTML that isn't configured like blocks in it. (this div has a width of 45%)
    + + + +
    The preformatted block.

    The Road Not Taken

    Robert Frost
    Two roads diverged in a yellow wood,
    And sorry I could not travel both (\_/)
    And be one traveler, long I stood (='.'=)
    And looked down one as far as I could (")_(")
    To where it bent in the undergrowth;

    Then took the other, as just as fair,
    And having perhaps the better claim, |\_/|
    Because it was grassy and wanted wear; / @ @ \
    Though as for that the passing there ( > º < )
    Had worn them really about the same, `>>x<<´
    / O \
    And both that morning equally lay
    In leaves no step had trodden black.
    Oh, I kept the first for another day!
    Yet knowing how way leads on to way,
    I doubted if I should ever come back.
    I shall be telling this with a sigh
    Somewhere ages and ages hence:
    Two roads diverged in a wood, and I—
    I took the one less traveled by,
    And that has made all the difference.



    and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    + + + +

    The pull quote can be aligned or wide or neither.

    Theme Reviewer
    + + + +
    The table blockThis is the default style.
    The cell next to this is empty.
    Cell #5
    Cell #6
    + + + +
    This is the striped style.This row should have a background color.
    The cell next to this is empty.

    This table has fixed width table cells.

    Make sure that the text wraps correctly.

    + + + +
    The Verse block

    A block for haiku?
    Why not?
    Blocks for all the things!
    +]]>
    + + 1732 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Block category: Layout Elements + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-layout-elements/ + Fri, 02 Nov 2018 16:44:37 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1734 + + +
    +

    The Layout Elements category includes the following blocks: Group, Button, Columns, Media & Text, separator, spacer, read more, and page break.

    + + + +

    This group block has a light green background color.

    + + + + + + + +

    The read more block should be right below this text, but only on list pages of themes that show the full content. It won't show on the single page or on themes showing excerpts.

    +
    + + + + + + + +
    +
    +

    The columns:

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    +
    + + + +
    Boardwalk
    +

    Media &Text

    + + + +

    For displaying media and text next to each other. By default, the media is to the left.

    +
    + + + +
    Golden Gate Bridge
    +

    This time our block is full width, and the image is to the right.

    + + + +

    The background color is a pale blue. 

    +
    + + + +

    Test to make sure that the editor and the front match. To test the Stack on mobile setting, reduce the browser window width.

    + + + +

    The control these settings, the block uses the css classes "has-media-on-the-right" and "is-stacked-on-mobile".

    + + + +

    The separator has three styles: default, wide line, and dots.

    + + + +
    + + + +
    + + + +
    + + + +

    The spacer block has a default height of 100 pixels:

    + + + + + + + +

    And finally, the page break:

    + + + + + + + +

    This paragraph block is on page two, after the page break.

    + + + + +]]>
    + + 1734 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block category: Embeds + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-embeds/ + Fri, 02 Nov 2018 16:51:55 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1738 + + + +

    This post tests various embed blocks:

    + + + +
    +https://twitter.com/WordPress/status/1057136472321613824 +
    Twitter,  wide width
    + + + +
    +https://youtu.be/ex8fMxXJDJw +
    YouTube
    + + + +
    +https://www.facebook.com/6427302910/posts/10156380423617911/ +
    + + + +
    +https://www.instagram.com/p/BpmueLLgEn_/?utm_source=ig_share_sheet&igshid=1hcxphic7p9e2 +
    + + + +
    +https://wordpress.tv/2018/10/14/kjell-reigstad-allan-cole-how-we-made-our-first-gutenberg-powered-theme/ +
    WordPress TV, full width
    + + + +

    +]]>
    + + 1738 + + + + + + + 0 + 0 + + + 0 + + + + + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + + + + + + + + + + ]]> + + + + + + + +

    Many of the WordPress contribution teams have been working hard on the new WordPress editor, and the tools, services,...

    Publicerat av WordPress Måndag 3 september 2018
    ]]>
    +
    + + + + + + + ]]> + + + + + + + + ]]> + + + + + + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + + + + + + ]]> + + + + + + + +

    Many of the WordPress contribution teams have been working hard on the new WordPress editor, and the tools, services,...

    Publicerat av WordPress Måndag 3 september 2018
    ]]>
    +
    + + + + + + + ]]> + + + + + + + + ]]> + + + + + +
    + + Block category: Widgets + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-widgets/ + Fri, 02 Nov 2018 16:45:35 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1736 + + +

    The shortcode widget:

    + + + +[gallery columns=2 ids="770,771"] + + + +

    The Archive Widget:

    + + + + + +

    The same Archive widget but as a dropdown:

    + + + + + + + +

    The Category widget block has an additional option for showing category hierarchies:

    + + + + + +

    The Latest Comments widget can display or hide the avatars, the date, and the comment excerpt:

    + + + + + +

    Here is an example of the Comments widget with all the options disabled. The number of comments has been reduced to two.

    + + + + + +

    And here is the Latest Posts widget in the list view, with dates:

    + + + + + +

    Grid view, now sorted from A -Z.

    + + + + + +

    You can also change the number of columns used to display the latest posts. The block below only displays posts from the Block category:

    + + + + + +

    Search widget:

    + + + + + +

    Tag Cloud widget:

    + + + + + +

    RSS Feed widget:

    + + + + ]]>
    + + 1736 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Columns + https://wpthemetestdata.wordpress.com/2018/11/02/block-columns/ + Fri, 02 Nov 2018 12:10:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1743 + + +
    +
    +

    This page tests how the theme displays the columns block. The first block tests a two column block with paragraphs.

    +
    + + + +
    +

    This is the second column. It should align next to the first column. Reduce the browser window width to test the responsiveness.

    +
    +
    + + + +
    +
    +

    This is the second column block. It has 3 columns.

    +
    + + + +
    +

    Paragraph 2 is in the middle.

    +
    + + + +
    +

    Paragraph 3 is in the last column.

    +
    +
    + + + +
    +
    +

    The third column block has 4 columns. Make sure that all the text is visible and that it is not cut off.

    +
    + + + +
    +

    Now the columns are getting narrower.

    +
    + + + +
    +

    The margins between the columns should be wide enough,

    +
    + + + +
    +

    so that the content of the columns does not run into or overlap each other.

    +
    +
    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    + + + +
    +

    Column five.

    +
    +
    + + + +

    To change the number of columns, select the column block to open the settings panel. You can show up to 6 columns. If the theme has support for wide align, you can also set the alignments to wide and full width.

    + + + +

    Below is a column block with six columns, and no alignment:

    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    + + + +
    +

    Column five.

    +
    + + + +
    +

    Column six.

    +
    +
    + + + +

    Next is a 3 column block, with a wide alignment:

    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    +
    + + + +

    And here is a two column block with full width, and a longer text. Make sure that the text wraps correctly.

    + + + +
    +
    +

    This is column one. Sometimes, you may want to use columns to display a larger text, so, lets add some more words. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna. Praesent sit amet ligula id orci venenatis auctor. Phasellus porttitor, metus non tincidunt dapibus, orci pede pretium neque, sit amet adipiscing ipsum lectus et libero. Aenean bibendum. Curabitur mattis quam id urna. Vivamus dui. Donec nonummy lacinia lorem. Cras risus arcu, sodales ac, ultrices ac, mollis quis, justo. Sed a libero. Quisque risus erat, posuere at, tristique non, lacinia quis, eros.

    +
    + + + +
    +

    Column two. Cras volutpat, lacus quis semper pharetra, nisi enim dignissim est, et sollicitudin quam ipsum vel mi. Sed commodo urna ac urna. Nullam eu tortor. Curabitur sodales scelerisque magna. Donec ultricies tristique pede. Nullam libero. Nam sollicitudin felis vel metus. Nullam posuere molestie metus. Nullam molestie, nunc id suscipit rhoncus, felis mi vulputate lacus, a ultrices tortor dolor eget augue. Aenean ultricies felis ut turpis. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Suspendisse placerat tellus ac nulla. Proin adipiscing sem ac risus. Maecenas nisi. Cras semper.

    +
    +
    + + + +

    We can also add blocks inside columns:

    + + + +
    +
    +
    1. This is a numbered list,
    2. inside a 3 column block
    3. with a wide alignment.
    +
    + + + +
    +

    The middle column has a paragraph with an image block below.

    + + + +
    canola
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna.
    +
    + + + +
    +

    -This third column has a quote

    Theme Reviewer
    +
    +
    + + + +

    But wait there is more!  We also have a block called Media & Text, which is a two column block that helps you display media and text content next to each other, without having to first setup a column block:

    + + + +
    dsc20050813_115856_52
    +

    Media & Text

    + + + +

    A paragraph block sits ready to be used, below your headline.

    + + + +

    +
    +]]>
    + + 1743 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Block: Cover + https://wpthemetestdata.wordpress.com/2018/11/02/block-cover/ + Sat, 03 Nov 2018 12:25:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1745 + + +

    This is a left aligned cover block with a background image.

    + + + +

    The cover block lets you add text on top of images or videos.

    + + + +

    This blocktype has several alignment options, and you can also align or center the text inside the block.

    + + + +

    The background image can be fixed and you can change its opacity and add an overlay color.

    + + + +

    Make sure that the text wraps correctly over the image, and that text markup and alignments are working.

    + + + +

    The next image should have a pink overlay color, the text should be bold and aligned to the left:

    + + + +

    A center aligned cover image block, with a left aligned text.

    + + + +

    This is a full width cover block with a fixed background image with a 20% opacity.

    + + + +

    Make sure that all the text is readable.

    + + + +

    Our last cover image block has a wide width.

    + + + +

    This is a wide cover block with a video background.

    + + + +

    Compare the video and image blocks.
    This block is centered.

    + + + +

    The block below has no alignment, and the text is a link. Overlay colors must also work with video backgrounds.

    + + + + +]]>
    + + 1745 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Button + https://wpthemetestdata.wordpress.com/2018/11/02/block-button/ + Sat, 03 Nov 2018 13:20:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1747 + + +

    Button blocks are not semantically buttons, but links inside a styled div. 

    + + + +

    If you do not add a link, a link tag without an anchor will be used.

    + + + + + + + +

    Check to make sure that the text wraps correctly when the button has more than one line of text, and when it is extra long.

    + + + + + + + +

    Buttons have three styles: 

    + + + + + + + + + + + + + + + +

    If the theme has a custom color palette, test that background color and text color settings work correctly. 

    + + + + + + + +

    Now lets test how buttons display together with large texts.

    + + + +

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio.

    + + + + + + + +

    Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna. Praesent sit amet ligula id orci venenatis auctor. Phasellus porttitor, metus non tincidunt dapibus, orci pede pretium neque, sit amet adipiscing ipsum lectus et libero. Aenean bibendum. Curabitur mattis quam id urna.

    + + + + + + + +

    Vivamus dui. Donec nonummy lacinia lorem. Cras risus arcu, sodales ac, ultrices ac, mollis quis, justo. Sed a libero. Quisque risus erat, posuere at, tristique non, lacinia quis, eros.

    +]]>
    + + 1747 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Quote + https://wpthemetestdata.wordpress.com/2018/11/02/block-quote/ + Sat, 03 Nov 2018 03:05:49 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1749 + + +

    The quote block has two styles, regular:

    + + + +

    Gutenberg is more than an editor.

    The Gutenberg Team
    + + + +

    and large:

    + + + +

    Yes, it is a press, certainly, but a press from which shall flow in inexhaustible streams, the most abundant and most marvelous liquor that has ever flowed to relieve the thirst of men!


    Johannes Gutenberg
    + + + +

    The quote blocks themselves have no alignments but the text can be aligned, bold, italic, and linked:

    + + + +

    Right

    Theme Review
    + + + +

    In addition to the quote block, we also have the pull quote, with a regular and a solid color style.

    + + + +

    You can change the color of the border and the text with the regular style:

    + + + +

    In addition to the quote block, we also have the pull quote.

    Theme Reviewer
    + + + +

    Or change the background color and text color with the solid color style:

    + + + +

    a solid color style

    Theme Reviewer
    +]]>
    + + 1749 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Gallery + https://wpthemetestdata.wordpress.com/2018/11/02/block-gallery/ + Sat, 03 Nov 2018 04:34:24 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1752 + + +

    Gallery blocks have two settings: the number of columns, and whether or not images should be cropped. The default number of columns is three, and the maximum number of columns is eight.

    + + + +

    Below is a three column gallery at full width, with cropped images.

    + + + + + + + + + + + +

    Some more text for taking up space.

    + + + +

    A two column gallery, aligned to the left, linked to media file.

    + + + +

    In the editor, the image captions can be edited directly by clicking on the text.

    + + + +

    If the number of images cannot be divided into the number of columns you have selected, the default is to have the last image(s) automatically stretch to the width of your gallery.

    + + + + + + + +

    A four column gallery with a wide width:

    + + + + + + + +

    A five column gallery with normal images:

    + + + + + + + +

    This is the same gallery, but with cropped images.

    + + + + + + + +

    Six columns: does it work at all window sizes?

    + + + + + + + +

    Seven columns: how does this look on a narrow window?

    + + + + + + + +

    Eight columns:

    + + + + +]]>
    + + 1752 + + + + + + + 0 + 0 + + + 0 + + + + + + + + + +
    + + Block: Image + https://wpthemetestdata.wordpress.com/2018/11/03/block-image/ + Sat, 03 Nov 2018 15:20:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1755 + + +

    Welcome to image alignment! If you recognize this post, it is because these are blocks that have been converted from the classic Markup: Image Alignment post. The best way to demonstrate the ebb and flow of the various image positioning options is to nestle them snuggly among an ocean of words. Grab a paddle and let's get started. Be sure to try it in RTL mode. Left should stay left and right should stay right for both reading directions.

    + + + +

    On the topic of alignment, it should be noted that users can choose from the options of None, Left, Right, and Center. If the theme has added support for align wide, images can also be wide and full width. Be sure to test this page in RTL mode.

    + + + +

    In addition, they also get the options of the image dimensions 25%, 50%, 75%, 100% or a set width and height.

    + + + +
    Image Alignment 580x300
    + + + +

    The image above happens to be centered.

    + + + +
    Image Alignment 150x150
    + + + +

    The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned.

    + + + +

    As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished!

    + + + +

    And now for a massively large image. It also has no alignment.

    + + + +
    Image Alignment 1200x400
    + + + +

    The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.

    + + + +
    Image Alignment 300x200
    + + + +

    And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there… Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently.

    + + + +

    In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah… Just like that. It never felt so good to be right.

    + + + +

    And just when you thought we were done, we're going to do them all over again with captions!

    + + + +
    Image Alignment 580x300
    Look at 580x300 getting some caption love.
    + + + +

    The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky.

    + + + +
    Image Alignment 150x150
    Itty-bitty caption.
    + + + +

    The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned.

    + + + +

    As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished!

    + + + +

    And now for a massively large image. It also has no alignment.

    + + + +
    Image Alignment 1200x400
    Massive image comment for your eyeballs.
    + + + +

    The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.

    + + + +
    Image Alignment 300x200
    Feels good to be right all the time.
    + + + +

    And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there… Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently.

    + + + +

    In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah… Just like that. It never felt so good to be right.

    + + + +

    Imagine that we would find a use for the extra wide image! This image has the wide width alignment:

    + + + +
    Image Alignment 1200x4002
    + + + +

    Can we go bigger? This image has the full width alignment:

    + + + +
    Image Alignment 1200x4002
    + + + +

    And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! One last thing: The last item in this post's content is a thumbnail floated right. Make sure any elements after the content are clearing properly.

    + + + +
    +]]>
    + + 1755 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Ελληνικά-Greek + https://wpthemetestdata.wordpress.com/greek/ + Fri, 14 Feb 2020 10:31:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1809 + + Headings Επικεφαλίδες +

    Επικεφαλίδα 1 Header one

    +

    Επικεφαλίδα 2 Header two

    +

    Επικεφαλίδα 3 Header three

    +

    Επικεφαλίδα 2 Header four

    +
    Επικεφαλίδα 5 Header five
    +
    Επικεφαλίδα 6Header six
    +

    Παράθεση άλλου Blockquotes

    +Single line blockquote: Μια γραμμή +
    Πάντα να είναι περίεργος.
    +Πολλές γραμμέ με αναφορά Multi line blockquote with a cite reference: +
    Το HTML <blockquote> ElementHTML Block Quotation Element) καταδεικνύει ότι το κείμενο έχει μια παράθεση. Συνήθως οπτικοποιείται με εσοχή (δείτε Σημειώσεις για το πως να το αλλάξετε. Ίσως να δίνεται και URL πηγής με την χρήση του cite attribute, μπλα, μπλα <cite> .
    +multiple contributors - MDN HTML element reference - blockquote +

    Πίνακες Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Υπάλληλος EmployeeΜισθός Salary
    Τάδε κάποιος$1Γιατί τόσα χρειάζεται για να ζήσει
    Jane Doe$100KFor all the blogging she does.
    Fred Bloggs$100MPictures are worth a thousand words, right? So Jane x 1,000.
    Jane Bloggs$100BWith hair like that?! Enough said...
    +

    Λίστες Definition Lists

    +
    +
    Τίτλος λίστας Definition List Title
    +
    Υποδιαίρεση λίστας Definition list division.
    +
    +

    Λίστα με κουκίδες Unordered Lists (Nested)

    +
      +
    • Πρώτο στοιχείο List item one +
        +
      • Στοιχείο πρώτο List item one +
          +
        • Στοιχείο λίστα ένα List item one
        • +
        • Στοιχείο λίστας δύο List item two
        • +
        +
      • +
      • Στοιχείο δεύτερο -item two
      • +
      +
    • +
    • Στοιχειο δύο List item two
    • +
    +

    Αριθμημένη λίστα(Nested)

    +
      +
    1. Στοιχειο ξεκινά με 8-start at 8 +
        +
      1. Στοιχείο λίστας ενα List item one +
          +
        1. Στοιχείο λίστας ενα -reversed attribute
        2. +
        3. Στοιχείο λίστας δύο
        4. +
        +
      2. +
      3. Δεύτερο στοιχείο
      4. +
      +
    2. +
    3. Στοιχείο δύο
    4. +
    +

    Ετικέττες HTML Tags

    +Διεύθυνση Address Tag + +
    1 Απέραντη διαδρομή Infinite Loop +Απλωπολή , ΤΚ 95014 +Ελλάδα
    Αγκυρωση Anchor Tag (aka. Link) + +Πάραδειγμα συνδέσμου. + +Συντομογραφία Abbreviation Tag + +Η συντομογραφία κτλ σημαίνει "Και τα λοιπά". + +Ακρωνύμιο Acronym Tag + +Το ακρωνύμιο κυρ σημαίνει "Κύριος". + +Big Tag + +Αυτό είναι μεγάλο θέμα + +Cite Tag + +"Φάε το φαϊ σου" --Όλες οι μαμάδες + +Code Tag + +This tag styles blocks of code. +.post-title { +margin: 0 0 5px; +font-weight: bold; +font-size: 38px; +line-height: 1.2; +και μία γραμμή με πολύ πάρα πολύ υπερβολικά πάρα πολύ μεγάλο κείμενο που πρέπει να δούμε πως το χειρίζεται η γραμματοσειρά και αν ξεχειλίζει από τις γραμμές και δημιουργεί πρόβλημα; +} + +Διαγραφή Delete Tag + +Μπορείτε να διαγράφεται κείμενο, αλλά δεν συνιστάται. + +Έμφαση Emphasize Tag + +Θα πρέπει να κάνει ιταλικ italicize το κείμενο. + +Εισαγωγή Insert Tag + +Αυτό το tag υποδηλώνει εισηγμένο inserted κείμενο. + +Keyboard Tag + +Αυτό το ελάχιστο γνωστό κείμενο πληκτρολογίου keyboard Tag, συνήθως μορφοποιείται όμοια με το <κώδικα code> tag. + +Προδιαμορφωμένο Preformatted Tag +

    Ο Δρόμος που δεν διάλεξα - The Road Not Taken

    +
    Robert Frost
    +	 Δυο δρόμοι διασταυρώθηκαν σ' ένα χρυσαφένιο δάσος ,
    +	 Και προς λύπη μου και τους δυο τα πόδια μου να ταξιδέψουν δεν μπορούσαν
    +	 Κι επί μακρόν εστάθηκα , καθώς ένας ήμουν ταξιδευτής μονάχος ,
    +	 κι έστρεψα το βλέμμα μου στον πρώτο όσο να χαθεί στο βάθος
    +	 μέχρι εκεί που χάνονταν στα άγρια χόρτα που βλαστούσαν.
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	και μία μακριά, πάρα πολύ μακριά, υπερβολικά μακροσκελής δίχως νόημα πρόταση για να δούμε πως το χειρίζεται το θέμα εμφάνισης και αν αναδιπλώνεται, κρύβεται ή ξεχειλίζει;
    +
    +Quote Tag for short, inline quotes + +Προγραμματιστές, προγραμματιστές, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +Αυτή η ετικέτα είναι με διαγράμμιση strike-through κείμενο text. + +Μικρά Small Tag + +Αυτή η ετικέτα είναι μικρότερο smaller κείμενο text. + +Strong Tag + +Αυτή η ετικέτα δείχνει έντονο bold κείμενο text. + +Subscript Tag + +Getting our science styling on with H2 δύοO, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2 δύο, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +Αυτή η ετικέτα δείχνει τυλετυπος teletype κείμενο, which is usually styled like the <κώδικα code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +Αυτή η ετικέτα δείχνει υπογράμμιση underlined text. + +Variable Tag + +Αυτή η ετικέτα δείχνει παράμετροι variables.]]>
    + + 1809 + + + + + + + 0 + 0 + + + 0 + + + + + + + + +
    + + Επίπεδο 2 -Second Greek level + https://wpthemetestdata.wordpress.com//greek/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-2/ + Fri, 14 Feb 2020 10:31:47 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1811 + + + + 1811 + + + + + + + 1809 + 0 + + + 0 + + + + + + + + + + + Επίπεδο 3 + https://wpthemetestdata.wordpress.com/greek/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-2/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-3/ + Fri, 14 Feb 2020 10:32:50 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1813 + + + + 1813 + + + + + + + 1811 + 0 + + + 0 + + + + + + + + + + + <![CDATA[WP 6.1 Font size scale]]> + https://wpthemetestdata.wordpress.com/wp-6-1-font-size-scale/ + Mon, 16 Jan 2023 07:08:31 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-font-size-scale/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Small H2 Heading

    + + + +

    Medium H2 Heading

    + + + +

    Large H2 Heading

    + + + +

    Extra Large H2 Heading

    + + + +

    Small paragraph

    + + + +

    Medium paragraph

    + + + +

    Large paragraph

    + + + +

    Extra Large paragraph

    +]]> +
    + + 163 + + + + + + + + + 0 + 0 + + + 0 + + + + + + +
    + + <![CDATA[WP 6.1 spacing presets]]> + https://wpthemetestdata.wordpress.com/wp-6-1-spacing-presets/ + Mon, 16 Jan 2023 06:56:53 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-spacing-presets/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    On this page, some group blocks have border or background color set to increase visibility.

    + + + +
    +

    This group has a no background color and no additional spacing set.

    +
    + + + +
    +

    This group has a background color but no additional spacing set.

    +
    + + + +
    +

    This group has a 1px border and padding preset 1

    +
    + + + +
    +

    This group has padding preset 1

    +
    + + + +
    +

    This group has a 1px border and padding preset 2

    +
    + + + +
    +

    This group has a background color and padding preset 3

    +
    + + + +
    +

    This group has a background color and padding preset 4

    +
    + + + +
    +

    This group has a background color and padding preset 5

    +
    + + + +
    +

    This group has a background color and padding preset 6

    +
    + + + +
    +

    This group has a background color and padding preset 7

    +
    + + + +
    +

    This group has padding preset 7

    +
    + + + +
    +

    This group has a background color and margin preset 1

    +
    + + + +
    +

    This group has a background color and margin preset 2

    +
    + + + +
    +

    This group has a background color and margin preset 3

    +
    + + + +
    +

    This group has a background color and margin preset 4

    +
    + + + +
    +

    This group has a background color and margin preset 5

    +
    + + + +
    +

    This group has a background color and margin preset 6

    +
    + + + +
    +

    This group has a background color and margin preset 7

    +
    + + + +
    +

    This group has a 1px border, padding preset 4 and margin preset 4

    +
    + + + +
    +

    This group has padding preset 4 and margin preset 4

    +
    +]]>
    + + 150 + + + + + + + + + 0 + 0 + + + 0 + + + + + + +
    + + <![CDATA[WP 6.1 Theme block category]]> + https://wpthemetestdata.wordpress.com/wp-6-1-theme-block-category/ + Fri, 13 Jan 2023 18:38:05 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-theme-block-category/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Navigation block with page list:

    + + + + + + + +

    Site logo:

    + + + + + +

    Site title:

    + + + + + +

    Tagline block:

    + + + + + +

    Query loop "Title & Date" variation:

    + + + +
    + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Title & Excerpt" variation:

    + + + +
    + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Title, Date & Excerpt" variation:

    + + + +
    + + + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Image, Date & Title" variation:

    + + + +
    + + + + + + + + + + + + + + + + + +

    + +
    + + + +

    Avatar block:

    + + + + + +

    Post title block:

    + + + + + +

    Post excerpt:

    + + + + + +

    Post featured image:

    + + + + + +

    Post author:

    + + + + + +

    Post date:

    + + + + + +

    Categories:

    + + + + + +

    Tags:

    + + + + + +

    Next post & previous post:

    + + + + + + + +

    Read More:

    + + + + + +

    Comments block:

    + + + +
    + + + +
    +
    + + + +
    + + +
    + +
    + + + + +
    +
    + + + + + + + + + + + + + + +

    Post comments form block:

    +
    + + + + + +

    Login/out:

    + + + + + + + + + + + +

    Author biography block:

    + + + + + + + + + +

    Term description, archive title, search results title can not be shown on single posts.

    +]]>
    + + 51 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + + + + 2 + + + https://wpthemetestdata.wordpress.com/ + + + + + + + 0 + 0 + +
    + + <![CDATA[WP 6.1 Widgets block category]]> + https://wpthemetestdata.wordpress.com/wp-6-1-widgets-block-category/ + Fri, 13 Jan 2023 18:22:21 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-widgets-block-category/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Archives block:

    + + + + + + + +

    Categories list:

    + + + + + +

    Custom HTML:

    + + + + test + + + +

    Latest comments:

    + + + + + +

    Latest posts:

    + + + + + +

    Page list block:

    + + + + + +

    RSS block:

    + + + + + + + + + + + + + + + +

    Shortcode block:

    + + + + + +

    Social links:

    + + + + + + + + + + + + + + + +

    Tag cloud:

    + + + + + +

    +]]>
    + + 34 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Design category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-design-category-blocks/ + Fri, 13 Jan 2023 18:03:23 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-design-category-blocks/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + + + + + +
    +
    +

    One single column inside a columns block.

    +
    +
    + + + +
    +
    +

    Column one. The background color is on the single column.

    +
    + + + +
    +

    Column two

    +
    +
    + + + +
    +
    +

    Column one. The background color is on the parent columns block.

    +
    + + + +
    +

    Column two

    +
    + + + +
    +

    Column three

    +
    +
    + + + +
    +

    Group with paragraph inside. Below are the group block variations:

    +
    + + + +
    +

    Row

    + + + +

    Row

    +
    + + + +
    +

    Stack

    + + + +

    Stack

    +
    + + + +

    More block:

    + + + + + + + +

    Page break:

    + + + + + + + +

    Separators:

    + + + +

    Default style, no alignment:

    + + + +
    + + + +

    Default style, wide alignment:

    + + + +
    + + + +

    Default style, full width:

    + + + +
    + + + +

    Default style, align center:

    + + + +
    + + + +

    Wide style, no alignment:

    + + + +
    + + + +

    Wide style, wide alignment:

    + + + +
    + + + +

    Wide style, full width:

    + + + +
    + + + +

    Wide style, align center:

    + + + +
    + + + +

    Dotted style, no alignment:

    + + + +
    + + + +

    Dotted style, wide alignment:

    + + + +
    + + + +

    Dotted style, full width:

    + + + +
    + + + +

    Dotted style, align center:

    + + + +
    + + + +

    Spacer:

    + + + + +]]>
    + + 24 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Media category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-media-category-blocks/ + Fri, 13 Jan 2023 18:02:28 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-media-category-blocks/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Image block:

    + + + +
    dsc20050727_091048_222
    + + + +

    Gallery:

    + + + + + + + +

    Audio:

    + + + +
    + + + +

    Cover:

    + + + +
    Wind Farm
    +

    Write title...

    +
    + + + +
    +

    Fixed background

    +
    + + + +
    +

    Repeated background

    +
    + + + +
    +

    Fixed and Repeated background

    +
    + + + +
    dsc20050727_091048_222
    +

    Duotone

    +
    + + + +
    Rain Ripples
    +

    Top left

    +
    + + + +
    Rain Ripples
    +

    Top center

    +
    + + + +
    Rain Ripples
    +

    Top right

    +
    + + + +
    Rain Ripples
    +

    Center left

    +
    + + + +
    Rain Ripples
    +

    Center right

    +
    + + + +
    Rain Ripples
    +

    Bottom left

    +
    + + + +
    Rain Ripples
    +

    Bottom center

    +
    + + + +
    Rain Ripples
    +

    Bottom right

    +
    + + + + + + + +
    Boardwalk
    +

    This is the Media & Text block with an image on the left.

    +
    + + + +
    Image Alignment 1200x4002
    +

    This is the Media & Text block with a cropped image on the left

    +
    + + + +
    +

    This is the Media & Text block with a video the right.

    +
    + + + +
    +]]>
    + + 21 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Text category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-text-category-blocks/ + Fri, 13 Jan 2023 17:46:19 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-text-category-blocks + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Paragraph

    + + + +

    H1 Heading

    + + + +

    H2 Heading

    + + + +

    H3 Heading

    + + + +

    H4 Heading

    + + + +
    H5 Heading
    + + + +
    H6 Heading
    + + + +
      +
    • List
    • + + + +
    • List
    • +
    + + + +
      +
    1. List
    2. + + + +
    3. List
    4. +
    + + + +
      +
    1. List +
        +
      • List
      • +
      +
    2. +
    + + + +
    +

    Quote block

    +citation
    + + +

    classic block

    + + +
    code block
    + + + +
    Preformatted block
    + + + +

    Pull quote

    Citation
    + + + +
    table celltable cell two
    table cell threetable cell four
    Table caption
    + + + +
    header label oneheader label two
    table celltable cell two
    table cell threetable cell four
    footer label onefooter label two
    Table caption
    + + + +
    Verse block
    +]]>
    + + 8 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + +
    + + Keyboard navigation + https://wpthemetestdata.wordpress.com/2018/10/20/keyboard-navigation/ + Sun, 21 Oct 2018 03:03:48 +0000 + + https://wpthemetestdata.wordpress.com/?p=1724 + + +

    There are many different ways to use the web besides a mouse and a pair of eyes. Users navigate for example with a keyboard only or with their voice.

    + + + +

    All the functionality, including menus, links and forms should work using a keyboard only. This is essential for all assistive technology to work properly. The only way to test this, at the moment, is manually. The best time to test this is during development.

    + + + +

    How to keyboard test:

    + + + +

    Tab through your pages, links and forms to do the following tests:

    + + + +
    • Confirm that all links can be reached and activated via keyboard, including any in dropdown submenus.
    • Confirm that all links get a visible focus indicator (e.g., a border highlight).
    • Confirm that all visually hidden links (e.g. skip links) become visible when in focus.
    • Confirm that all form input fields and buttons can be accessed and used via keyboard.
    • Confirm that all interactions, buttons, and other controls can be triggered via keyboard — any action you can complete with a mouse must also be performable via keyboard.
    • Confirm that focus doesn’t move in unexpected ways around the page.
    • Confirm that using shift+tab to move backwards works as well.
    + + + +

    Resources

    + + + + +]]>
    + + 1724 + + + + + + + 0 + 0 + + + + 0 +
    + + About The Tests + https://wpthemetestdata.wordpress.com/about/ + Mon, 26 Jul 2010 02:40:01 +0000 + themedemos + https://wpthemetestdata.wordpress.com/about/ + + WordPress Theme Development Resources + +
      +
    1. See the WordPress Theme Developer Handbook for examples of best practices.
    2. +
    3. See the WordPress Code Reference for more information about WordPress' functions, classes, methods, and hooks.
    4. +
    5. See Theme Unit Test for a robust test suite for your Theme and get the latest version of the test data you see here.
    6. +
    7. See Releasing Your Theme for a guide to submitting your Theme to the Theme Directory.
    8. +
    ]]>
    + + 2 + 2010-07-25 19:40:01 + 2010-07-26 02:40:01 + closed + closed + about + publish + 0 + 1 + page + + 0 +
    + + Lorem Ipsum + https://wpthemetestdata.wordpress.com/lorem-ipsum/ + Tue, 04 Sep 2007 16:52:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/lorem-ipsum/ + + + + 146 + 2007-09-04 09:52:50 + 2007-09-04 16:52:50 + closed + closed + lorem-ipsum + publish + 0 + 7 + page + + 0 + + + Page with comments + https://wpthemetestdata.wordpress.com/about/page-with-comments/ + Tue, 04 Sep 2007 17:47:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/page-with-comments/ + + + + 155 + 2007-09-04 10:47:47 + 2007-09-04 17:47:47 + open + closed + page-with-comments + publish + 2 + 3 + page + + 0 + + 167 + + anon@example.com + + + 2007-09-04 10:49:28 + 2007-09-04 00:49:28 + + 1 + + 0 + 0 + + + 168 + + tellyworth+test2@example.com + + + 2007-09-04 10:49:03 + 2007-09-04 00:49:03 + + 1 + + 0 + 0 + + + 169 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2007-09-04 10:48:51 + 2007-09-04 17:48:51 + + 1 + + 0 + 0 + + + 1017 + + themereviewteam@gmail.com + + + 2014-12-10 01:56:24 + 2014-12-10 08:56:24 + + 0 + + 168 + 0 + + + + Page with comments disabled + https://wpthemetestdata.wordpress.com/about/page-with-comments-disabled/ + Tue, 04 Sep 2007 17:48:10 +0000 + themedemos + https://wpthemetestdata.wordpress.com/page-with-comments-disabled/ + + + + 156 + 2007-09-04 10:48:10 + 2007-09-04 17:48:10 + closed + closed + page-with-comments-disabled + publish + 2 + 4 + page + + 0 + + + Level 3 + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3/ + Tue, 11 Dec 2007 06:23:16 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-3/ + + + + 172 + 2007-12-11 16:23:16 + 2007-12-11 06:23:16 + closed + closed + level-3 + publish + 173 + 0 + page + + 0 + + + Level 2 + https://wpthemetestdata.wordpress.com/level-1/level-2/ + Tue, 11 Dec 2007 06:23:33 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-2/ + + + + 173 + 2007-12-11 16:23:33 + 2007-12-11 06:23:33 + closed + closed + level-2 + publish + 174 + 0 + page + + 0 + + + Level 1 + https://wpthemetestdata.wordpress.com/level-1/ + Tue, 11 Dec 2007 23:25:40 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-1/ + + + + 174 + 2007-12-11 16:25:40 + 2007-12-11 23:25:40 + closed + closed + level-1 + publish + 0 + 5 + page + + 0 + + + Clearing Floats + https://wpthemetestdata.wordpress.com/about/clearing-floats/ + Sun, 01 Aug 2010 16:42:26 +0000 + themedemos + https://wpthemetestdata.wordpress.com/ + + This is the second page]]> + + 501 + 2010-08-01 09:42:26 + 2010-08-01 16:42:26 + closed + closed + clearing-floats + publish + 2 + 2 + page + + 0 + + + canola2 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/canola2/ + Mon, 16 Jun 2008 13:17:54 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/canola2.jpg + + + + 611 + 2008-06-16 06:17:54 + 2008-06-16 13:17:54 + open + closed + canola2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/canola2.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + dsc20050727_091048_222 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050727_091048_222/ + Mon, 16 Jun 2008 13:20:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050727_091048_222.jpg + + + + 616 + 2008-06-16 06:20:37 + 2008-06-16 13:20:37 + open + closed + dsc20050727_091048_222 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050727_091048_222.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + dsc20050813_115856_52 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050813_115856_52/ + Mon, 16 Jun 2008 13:20:57 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050813_115856_52.jpg + + + + 617 + 2008-06-16 06:20:57 + 2008-06-16 13:20:57 + open + closed + dsc20050813_115856_52 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050813_115856_52.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Front Page + https://wpthemetestdata.wordpress.com/front-page/ + Sat, 21 May 2011 01:49:43 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=701 + + + + 701 + 2011-05-20 18:49:43 + 2011-05-21 01:49:43 + open + closed + front-page + publish + 0 + 0 + page + + 0 + + + a Blog page + https://wpthemetestdata.wordpress.com/blog/ + Sat, 21 May 2011 01:51:43 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=703 + + + + 703 + 2011-05-20 18:51:43 + 2011-05-21 01:51:43 + open + closed + blog + publish + 0 + 0 + page + + 0 + + 1016 + + example@example.com + + + 2014-11-29 21:03:05 + 2014-11-30 04:03:05 + + 0 + + 0 + 0 + + + + Bell on Wharf + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/100_5478/ + Mon, 16 Jun 2008 21:34:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/100_5478.jpg + + + + 754 + 2008-06-16 14:34:50 + 2008-06-16 21:34:50 + open + closed + 100_5478 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/100_5478.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Golden Gate Bridge + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/100_5540/ + Mon, 16 Jun 2008 21:35:55 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/100_5540.jpg + + + + 755 + 2008-06-16 14:35:55 + 2008-06-16 21:35:55 + open + closed + 100_5540 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/100_5540.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sunburst Over River + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/cep00032/ + Mon, 16 Jun 2008 21:41:24 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/cep00032.jpg + + + + 756 + 2008-06-16 14:41:24 + 2008-06-16 21:41:24 + open + closed + cep00032 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/cep00032.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Boardwalk + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dcp_2082/ + Mon, 16 Jun 2008 21:41:27 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dcp_2082.jpg + + + + 757 + 2008-06-16 14:41:27 + 2008-06-16 21:41:27 + open + closed + dcp_2082 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dcp_2082.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Yachtsody in Blue + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc03149/ + Mon, 16 Jun 2008 21:41:33 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc03149.jpg + + + + 758 + 2008-06-16 14:41:33 + 2008-06-16 21:41:33 + open + closed + dsc03149 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc03149.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Rain Ripples + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc04563/ + Mon, 16 Jun 2008 21:41:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc04563.jpg + + + + 759 + 2008-06-16 14:41:37 + 2008-06-16 21:41:37 + open + closed + dsc04563 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc04563.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sydney Harbor Bridge + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc09114/ + Mon, 16 Jun 2008 21:41:41 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc09114.jpg + + + + 760 + 2008-06-16 14:41:41 + 2008-06-16 21:41:41 + open + closed + dsc09114 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc09114.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Wind Farm + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050102_192118_51/ + Mon, 16 Jun 2008 21:41:42 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050102_192118_51.jpg + + + + 761 + 2008-06-16 14:41:42 + 2008-06-16 21:41:42 + open + closed + dsc20050102_192118_51 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050102_192118_51.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Antique Farm Machinery + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20051220_160808_102/ + Mon, 16 Jun 2008 21:41:45 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_160808_102.jpg + + + + 762 + 2008-06-16 14:41:45 + 2008-06-16 21:41:45 + open + closed + dsc20051220_160808_102 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_160808_102.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Rusty Rail + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20051220_173257_119/ + Mon, 16 Jun 20081 21:47:17 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_173257_119.jpg + + + + 764 + 2008-06-16 14:47:17 + 2008-06-16 21:47:17 + open + closed + dsc20051220_173257_119 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_173257_119.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sea and Rocks + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dscn3316/ + Mon, 16 Jun 2008 21:47:20 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dscn3316.jpg + + + + 765 + 2008-06-16 14:47:20 + 2008-06-16 21:47:20 + open + closed + dscn3316 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dscn3316.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Big Sur + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/michelle_049/ + Mon, 16 Jun 2008 21:47:23 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/michelle_049.jpg + + + + 766 + 2008-06-16 14:47:23 + 2008-06-16 21:47:23 + open + closed + michelle_049 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/michelle_049.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Windmill + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dcf-1-0/ + Mon, 16 Jun 2008 21:47:26 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/windmill.jpg + + + + 767 + 2008-06-16 14:47:26 + 2008-06-16 21:47:26 + open + closed + dcf-1-0 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/windmill.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Huatulco Coastline + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/alas-i-have-found-my-shangri-la/ + Mon, 16 Jun 2008 21:49:48 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0513-1.jpg + + + + 768 + 2008-06-16 14:49:48 + 2008-06-16 21:49:48 + open + closed + alas-i-have-found-my-shangri-la + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0513-1.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Brazil Beach + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_0747/ + Mon, 16 Jun 2008 21:50:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0747.jpg + + + + 769 + 2008-06-16 14:50:37 + 2008-06-16 21:50:37 + open + closed + img_0747 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0747.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Huatulco Coastline + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_0767/ + Mon, 16 Jun 2008 21:51:19 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0767.jpg + + + + 770 + 2008-06-16 14:51:19 + 2008-06-16 21:51:19 + open + closed + img_0767 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0767.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Boat Barco Texture + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_8399/ + Mon, 16 Jun 2008 21:51:57 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_8399.jpg + + + + 771 + 2008-06-16 14:51:57 + 2008-06-16 21:51:57 + open + closed + img_8399 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_8399.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Resinous + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20040724_152504_532-2/ + Mon, 04 Jun 2012 18:36:56 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg + + + + 807 + 2012-06-04 11:36:56 + 2012-06-04 18:36:56 + open + closed + dsc20040724_152504_532-2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg + + _attachment_original_parent_id + + + + + St. Louis Blues + https://wpthemetestdata.wordpress.com/2010/07/02/post-format-audio/originaldixielandjazzbandwithalbernard-stlouisblues/ + Mon, 16 Jun 2008 16:49:29 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3 + + + + 821 + 2008-06-16 09:49:29 + 2008-06-16 16:49:29 + open + closed + originaldixielandjazzbandwithalbernard-stlouisblues + inherit + 587 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3 + + + OLYMPUS DIGITAL CAMERA + https://wpthemetestdata.wordpress.com/about/clearing-floats/olympus-digital-camera/ + Thu, 05 Aug 2010 18:07:34 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2010/08/manhattansummer.jpg + + + + 827 + 2010-08-05 11:07:34 + 2010-08-05 18:07:34 + open + closed + olympus-digital-camera + inherit + 501 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2010/08/manhattansummer.jpg + + + Image Alignment 580x300 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-580x300/ + Fri, 15 Mar 2013 00:44:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg + + + + 967 + 2013-03-14 19:44:50 + 2013-03-15 00:44:50 + open + open + image-alignment-580x300 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Image Alignment 150x150 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-150x150/ + Fri, 15 Mar 2013 00:44:49 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg + + + + 968 + 2013-03-14 19:44:49 + 2013-03-15 00:44:49 + open + open + image-alignment-150x150 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Horizontal Featured Image + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-horizontal/featured-image-horizontal-2/ + Fri, 15 Mar 2013 20:40:38 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-horizontal.jpg + + + + 1022 + 2013-03-15 15:40:38 + 2013-03-15 20:40:38 + open + open + featured-image-horizontal-2 + inherit + 1011 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-horizontal.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + I Am Worth Loving Wallpaper + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/soworthloving-wallpaper/ + Thu, 14 Mar 2013 14:58:24 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/soworthloving-wallpaper.jpg + + + + 1023 + 2013-03-14 09:58:24 + 2013-03-14 14:58:24 + open + open + soworthloving-wallpaper + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/soworthloving-wallpaper.jpg + + _wp_attachment_image_alt + + + + + Image Alignment 300x200 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-300x200/ + Fri, 15 Mar 2013 00:44:49 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg + + + + 1025 + 2013-03-14 19:44:49 + 2013-03-15 00:44:49 + open + open + image-alignment-300x200 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Vertical Featured Image + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-vertical/featured-image-vertical-2/ + Fri, 15 Mar 2013 20:41:09 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-vertical.jpg + + + + 1027 + 2013-03-15 15:41:09 + 2013-03-15 20:41:09 + open + open + featured-image-vertical-2 + inherit + 1016 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-vertical.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Image Alignment 1200x4002 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-1200x4002/ + Fri, 15 Mar 2013 00:44:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg + + + + 1029 + 2013-03-14 19:44:50 + 2013-03-15 00:44:50 + open + open + image-alignment-1200x4002 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Unicorn Wallpaper + https://wpthemetestdata.wordpress.com/2010/08/08/post-format-image/unicorn-wallpaper/ + Fri, 14 Dec 2012 03:10:39 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2012/12/unicorn-wallpaper.jpg + + + + 1045 + 2012-12-13 22:10:39 + 2012-12-14 03:10:39 + open + open + unicorn-wallpaper + inherit + 1158 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2012/12/unicorn-wallpaper.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Pages + https://wpthemetestdata.wordpress.com/2013/04/09/pages/ + Tue, 09 Apr 2013 13:37:45 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/pages + + + + 1100 + 2013-04-09 06:37:45 + 2013-04-09 13:37:45 + open + closed + pages + publish + 0 + 2 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Categories + https://wpthemetestdata.wordpress.com/2013/04/09/categories/ + Tue, 09 Apr 2013 13:37:45 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/categories + + + + 1101 + 2013-04-09 06:37:45 + 2013-04-09 13:37:45 + open + closed + categories + publish + 0 + 10 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1112/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1112</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test markup tags and styles.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1112</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1112</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>21</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[4675]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1115/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1115</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test post formats.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1115</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1115</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>24</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[44090582]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1118/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1118</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test unpublished posts.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1118</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1118</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>28</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[54090]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>Depth + https://wpthemetestdata.wordpress.com/2013/04/09/depth/ + Tue, 09 Apr 2013 13:37:46 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/depth + + + + 1119 + 2013-04-09 06:37:46 + 2013-04-09 13:37:46 + open + closed + depth + publish + 0 + 29 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 01 + https://wpthemetestdata.wordpress.com/2013/04/09/level-01/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-01 + + + + 1120 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-01 + publish + 0 + 30 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 02 + https://wpthemetestdata.wordpress.com/2013/04/09/level-02/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-02 + + + + 1121 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-02 + publish + 0 + 31 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 03 + https://wpthemetestdata.wordpress.com/2013/04/09/level-03/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-03 + + + + 1122 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-03 + publish + 0 + 32 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 04 + https://wpthemetestdata.wordpress.com/2013/04/09/level-04/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-04 + + + + 1123 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-04 + publish + 0 + 33 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 05 + https://wpthemetestdata.wordpress.com/2013/04/09/level-05/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-05 + + + + 1124 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-05 + publish + 0 + 34 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 06 + https://wpthemetestdata.wordpress.com/2013/04/09/level-06/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-06 + + + + 1125 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-06 + publish + 0 + 35 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 07 + https://wpthemetestdata.wordpress.com/2013/04/09/level-07/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-07 + + + + 1126 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-07 + publish + 0 + 36 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 08 + https://wpthemetestdata.wordpress.com/2013/04/09/level-08/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-08 + + + + 1127 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-08 + publish + 0 + 37 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 09 + https://wpthemetestdata.wordpress.com/2013/04/09/level-09/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-09 + + + + 1128 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-09 + publish + 0 + 38 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 10 + https://wpthemetestdata.wordpress.com/2013/04/09/level-10/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-10 + + + + 1129 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-10 + publish + 0 + 39 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Advanced + https://wpthemetestdata.wordpress.com/2013/04/09/advanced/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/advanced + + + + 1130 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + advanced + publish + 0 + 40 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu Description + https://wpthemetestdata.wordpress.com/2013/04/09/menu-description/ + Tue, 09 Apr 2013 13:37:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-description + + + + 1142 + 2013-04-09 06:37:50 + 2013-04-09 13:37:50 + open + closed + menu-description + publish + 0 + 44 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu Title Attribute + https://wpthemetestdata.wordpress.com/2013/04/09/menu-title-attribute/ + Tue, 09 Apr 2013 13:37:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-title-attribute + + + + 1143 + 2013-04-09 06:37:50 + 2013-04-09 13:37:50 + open + closed + menu-title-attribute + publish + 0 + 41 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu CSS Class + https://wpthemetestdata.wordpress.com/2013/04/09/menu-css-class/ + Tue, 09 Apr 2013 13:37:51 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-css-class + + + + 1144 + 2013-04-09 06:37:51 + 2013-04-09 13:37:51 + open + closed + menu-css-class + publish + 0 + 42 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + New Window / Tab + https://wpthemetestdata.wordpress.com/2013/04/09/new-window-tab/ + Tue, 09 Apr 2013 13:37:51 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/new-window-tab + + + + 1145 + 2013-04-09 06:37:51 + 2013-04-09 13:37:51 + open + closed + new-window-tab + publish + 0 + 43 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1263/</link> + <pubDate>Tue, 09 Apr 2013 13:38:00 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1263</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1263</wp:post_id> + <wp:post_date>2013-04-09 06:38:00</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:38:00</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1263</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1100]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1264/</link> + <pubDate>Tue, 09 Apr 2013 13:38:01 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1264</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1264</wp:post_id> + <wp:post_date>2013-04-09 06:38:01</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:38:01</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1264</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1100]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>twitter.com + https://wpthemetestdata.wordpress.com/2018/10/20/twitter-com/ + Sun, 21 Oct 2018 02:57:33 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/twitter-com/ + + + + 1719 + + + + + + + 0 + 1 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + facebook.com + https://wpthemetestdata.wordpress.com/2018/10/20/facebook-com/ + Sun, 21 Oct 2018 02:57:35 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/facebook-com/ + + + + 1720 + + + + + + + 0 + 2 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + github.com + https://wpthemetestdata.wordpress.com/2018/10/20/github-com/ + Sun, 21 Oct 2018 02:57:37 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/github-com + + + + 1721 + + + + + + + 0 + 3 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + instagram.com + https://wpthemetestdata.wordpress.com/2018/10/20/instagram-com + Sun, 21 Oct 2018 02:57:41 +000 + themereviewteam> + https://wpthemetestdata.wordpress.com/2018/10/20/instagram-com + + + + 1723 + + + + + + + 0 + 5 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + linkedin.com + https://wpthemetestdata.wordpress.com/2018/10/20/linkedin-com/ + Sun, 21 Oct 2018 02:57:39 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/linkedin-com/ + + + + 1722 + + + + + + + 0 + 4 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + triforce-wallpaper + https://wpthemetestdata.wordpress.com/2010/08/07/post-format-image-caption/triforce-wallpaper/ + Tue, 17 Aug 2010 20:17:31 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2010/08/triforce-wallpaper.jpg + + + + 1628 + 2010-08-17 13:17:31 + 2010-08-17 20:17:31 + open + closed + triforce-wallpaper + inherit + 1163 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2010/08/triforce-wallpaper.jpg + + + + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1636/</link> + <pubDate>Tue, 07 May 2013 19:54:30 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1636</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1636</wp:post_id> + <wp:post_date>2013-05-07 12:54:30</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:30</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1636</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1637/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1637</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1637</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1637</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1638/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1638</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1638</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1638</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1639/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1639</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1639</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1639</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1640/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1640</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1640</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1640</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1641/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1641</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1641</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1641</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1643/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1643</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1643</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1643</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1644/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1644</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1644</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1644</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[701]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1645/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1645</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1645</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1645</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1646/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1646</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1646</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1646</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1647/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1647</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1647</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1647</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1648/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1648</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1648</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1648</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1649/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1649</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1649</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1649</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1650/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1650</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1650</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1650</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1651/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1651</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1651</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1651</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>10</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[174]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1652/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1652</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1652</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1652</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>11</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[173]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1653/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1653</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1653</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1653</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>12</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[172]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1654/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1654</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1654</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1654</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>13</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[746]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1655/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1655</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1655</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1655</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>14</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[748]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1656/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1656</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1656</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1656</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>15</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[742]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1657/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1657</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1657</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1657</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>16</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[744]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1658/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1658</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1658</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1658</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>17</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1659/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1659</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1659</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1659</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>18</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[733]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1660/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1660</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1660</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1660</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>19</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[735]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1643/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1643</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1643</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1643</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1644/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1644</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1644</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1644</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[701]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1645/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1645</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1645</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1645</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1646/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1646</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1646</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1646</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1647/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1647</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1647</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1647</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1648/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1648</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1648</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1648</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1649/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1649</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1649</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1649</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1650/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1650</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1650</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1650</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1651/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1651</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1651</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1651</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>10</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[174]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1652/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1652</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1652</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1652</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>11</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[173]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1653/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1653</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1653</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1653</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>12</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[172]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1654/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1654</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1654</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1654</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>13</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[746]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1655/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1655</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1655</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1655</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>14</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[748]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1656/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1656</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1656</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1656</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>15</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[742]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1657/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1657</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1657</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1657</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>16</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[744]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1658/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1658</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1658</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1658</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>17</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1659/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1659</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1659</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1659</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>18</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[733]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1660/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1660</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1660</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1660</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>19</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[735]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>dsc20040724_152504_532 + https://wpthemetestdata.wordpress.com/?attachment_id=1686 + Wed, 18 Sep 2013 21:37:05 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20040724_152504_532.jpg + + + + 1686 + 2013-09-18 14:37:05 + 2013-09-18 21:37:05 + open + closed + dsc20040724_152504_532 + inherit + 0 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20040724_152504_532.jpg + + + dsc20050604_133440_34211 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050604_133440_34211/ + Wed, 18 Sep 2013 21:37:07 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20050604_133440_34211.jpg + + + + 1687 + 2013-09-18 14:37:07 + 2013-09-18 21:37:07 + open + closed + dsc20050604_133440_34211 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20050604_133440_34211.jpg + + + 2014-slider-mobile-behavior + https://wpthemetestdata.wordpress.com/?attachment_id=1690 + Wed, 04 Dec 2013 18:08:29 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/12/2014-slider-mobile-behavior.mov + + + + 1690 + 2013-12-04 11:08:29 + 2013-12-04 18:08:29 + open + closed + 2014-slider-mobile-behavior + inherit + 0 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/12/2014-slider-mobile-behavior.mov + + + dsc20050315_145007_132 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050315_145007_132-2/ + Sun, 05 Jan 2014 18:45:21 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2014/01/dsc20050315_145007_132.jpg + + + + 1691 + 2014-01-05 11:45:21 + 2014-01-05 18:45:21 + open + closed + dsc20050315_145007_132-2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2014/01/dsc20050315_145007_132.jpg + + + spectacles + https://wpthemetestdata.wordpress.com/about/clearing-floats/spectacles-2/ + Sun, 05 Jan 2014 18:45:36 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2014/01/spectacles.gif + + + + 1692 + 2014-01-05 11:45:36 + 2014-01-05 18:45:36 + open + closed + spectacles-2 + inherit + 501 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2014/01/spectacles.gif + + + Post Format: Standard + https://wpthemetestdata.wordpress.com/2010/10/05/post-format-standard/ + Tue, 05 Oct 2010 07:27:25 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=358 + + + +Mrs. Darling first heard of Peter when she was tidying up her children's minds. It is the nightly custom of every good mother after her children are asleep to rummage in their minds and put things straight for next morning, repacking into their proper places the many articles that have wandered during the day. + +If you could keep awake (but of course you can't) you would see your own mother doing this, and you would find it very interesting to watch her. It is quite like tidying up drawers. You would see her on her knees, I expect, lingering humorously over some of your contents, wondering where on earth you had picked this thing up, making discoveries sweet and not so sweet, pressing this to her cheek as if it were as nice as a kitten, and hurriedly stowing that out of sight. When you wake in the morning, the naughtiness and evil passions with which you went to bed have been folded up small and placed at the bottom of your mind and on the top, beautifully aired, are spread out your prettier thoughts, ready for you to put on. + +I don't know whether you have ever seen a map of a person's mind. Doctors sometimes draw maps of other parts of you, and your own map can become intensely interesting, but catch them trying to draw a map of a child's mind, which is not only confused, but keeps going round all the time. There are zigzag lines on it, just like your temperature on a card, and these are probably roads in the island, for the Neverland is always more or less an island, with astonishing splashes of colour here and there, and coral reefs and rakish-looking craft in the offing, and savages and lonely lairs, and gnomes who are mostly tailors, and caves through which a river runs, and princes with six elder brothers, and a hut fast going to decay, and one very small old lady with a hooked nose. It would be an easy map if that were all, but there is also first day at school, religion, fathers, the round pond, needle-work, murders, hangings, verbs that take the dative, chocolate pudding day, getting into braces, say ninety-nine, three-pence for pulling out your tooth yourself, and so on, and either these are part of the island or they are another map showing through, and it is all rather confusing, especially as nothing will stand still. + +Of course the Neverlands vary a good deal. John's, for instance, had a lagoon with flamingoes flying over it at which John was shooting, while Michael, who was very small, had a flamingo with lagoons flying over it. John lived in a boat turned upside down on the sands, Michael in a wigwam, Wendy in a house of leaves deftly sewn together. John had no friends, Michael had friends at night, Wendy had a pet wolf forsaken by its parents, but on the whole the Neverlands have a family resemblance, and if they stood still in a row you could say of them that they have each other's nose, and so forth. On these magic shores children at play are for ever beaching their coracles [simple boat]. We too have been there; we can still hear the sound of the surf, though we shall land no more. + +Of all delectable islands the Neverland is the snuggest and most compact, not large and sprawly, you know, with tedious distances between one adventure and another, but nicely crammed. When you play at it by day with the chairs and table-cloth, it is not in the least alarming, but in the two minutes before you go to sleep it becomes very real. That is why there are night-lights. + +Occasionally in her travels through her children's minds Mrs. Darling found things she could not understand, and of these quite the most perplexing was the word Peter. She knew of no Peter, and yet he was here and there in John and Michael's minds, while Wendy's began to be scrawled all over with him. The name stood out in bolder letters than any of the other words, and as Mrs. Darling gazed she felt that it had an oddly cocky appearance.]]> + + 358 + 2010-10-05 00:27:25 + 2010-10-05 07:27:25 + closed + closed + post-format-standard + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Gallery + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/ + Fri, 10 Sep 2010 14:24:14 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=555 + + + +You can use this page to test the Theme's handling of the gallery shortcode, including the columns parameter, from 1 to 9 columns. Themes are only required to support the default setting (3 columns), so this page is entirely optional. +

    One Column

    +[gallery columns="1"] +

    Two Columns

    +[gallery columns="2"] +

    Three Columns

    +[gallery columns="3"] +

    Four Columns

    +[gallery columns="4"] +

    Five Columns

    +[gallery columns="5"] +

    Six Columns

    +[gallery columns="6"] +

    Seven Columns

    +[gallery columns="7"] +

    Eight Columns

    +[gallery columns="8"] +

    Nine Columns

    +[gallery columns="9"]]]>
    + + 555 + 2010-09-10 07:24:14 + 2010-09-10 14:24:14 + closed + closed + post-format-gallery + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Post Format: Aside + https://wpthemetestdata.wordpress.com/2010/05/09/post-format-aside/ + Sun, 09 May 2010 14:51:54 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=559 + + + + 559 + 2010-05-09 07:51:54 + 2010-05-09 14:51:54 + closed + closed + post-format-aside + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Chat + https://wpthemetestdata.wordpress.com/2010/01/08/post-format-chat/ + Fri, 08 Jan 2010 14:59:31 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=562 + + + + 562 + 2010-01-08 07:59:31 + 2010-01-08 14:59:31 + closed + closed + post-format-chat + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Link + https://wpthemetestdata.wordpress.com/2010/03/07/post-format-link/ + Sun, 07 Mar 2010 15:06:53 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=565 + + The WordPress Theme Review Team Website]]> + + 565 + 2010-03-07 08:06:53 + 2010-03-07 15:06:53 + closed + closed + post-format-link + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Image (Linked) + https://wpthemetestdata.wordpress.com/2010/08/06/post-format-image-linked/ + Fri, 06 Aug 2010 15:09:39 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=568 + + chunk of resinous blackboy husk[/caption] +]]> + + 568 + 2010-08-06 08:09:39 + 2010-08-06 15:09:39 + closed + closed + post-format-image-linked + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Quote + https://wpthemetestdata.wordpress.com/2010/02/05/post-format-quote/ + Fri, 05 Feb 2010 15:13:15 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=575 + + Only one thing is impossible for God: To find any sense in any copyright law on the planet. +Mark Twain]]> + + 575 + 2010-02-05 08:13:15 + 2010-02-05 15:13:15 + closed + closed + post-format-quote + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Status + https://wpthemetestdata.wordpress.com/2010/04/04/post-format-status/ + Sun, 04 Apr 2010 15:21:24 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=579 + + + + 579 + 2010-04-04 08:21:24 + 2010-04-04 15:21:24 + closed + closed + post-format-status + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Video (WordPress.tv) + https://wpthemetestdata.wordpress.com/2010/06/03/post-format-video-wordpresstv/ + Thu, 03 Jun 2010 15:25:58 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=582 + + instructions in the Codex.]]> + + 582 + 2010-06-03 08:25:58 + 2010-06-03 15:25:58 + closed + closed + post-format-video-wordpresstv + publish + 0 + 0 + post + + 0 + + + + + + + + + _oembed_4321638fc1a6fee26443f7fe8a70a871 + ]]> + + + _oembed_29351fff85c1be1d1e9a965a0332a861 + ]]> + + + _oembed_9fcc86d7d9398ff736577f922307f64d + ]]> + + + _oembed_366237792d32461d0052efb2edec37f5 + ]]> + + + _oembed_37fdfe862c13c46a93be2921279bf675 + ]]> + + + + Post Format: Audio + https://wpthemetestdata.wordpress.com/2010/07/02/post-format-audio/ + Fri, 02 Jul 2010 15:36:44 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=587 + + St. Louis Blues + +Audio shortcode: + +[audio https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3]]]> + + 587 + 2010-07-02 08:36:44 + 2010-07-02 15:36:44 + closed + closed + post-format-audio + publish + 0 + 0 + post + + 0 + + + + + + + + enclosure + + + + + Page A + https://wpthemetestdata.wordpress.com/page-a/ + Fri, 24 Jun 2011 01:38:52 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=733 + + + + 733 + 2011-06-23 18:38:52 + 2011-06-24 01:38:52 + open + closed + page-a + publish + 0 + 10 + page + + 0 + + + Page B + https://wpthemetestdata.wordpress.com/page-b/ + Fri, 24 Jun 2011 01:39:14 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=735 + + + + 735 + 2011-06-23 18:39:14 + 2011-06-24 01:39:14 + open + closed + page-b + publish + 0 + 11 + page + + 0 + + + Level 2a + https://wpthemetestdata.wordpress.com/level-1/level-2a/ + Fri, 24 Jun 2011 02:03:33 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=742 + + + + 742 + 2011-06-23 19:03:33 + 2011-06-24 02:03:33 + open + closed + level-2a + publish + 174 + 0 + page + + 0 + + + Level 2b + https://wpthemetestdata.wordpress.com/level-1/level-2b/ + Fri, 24 Jun 2011 02:04:03 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=744 + + + + 744 + 2011-06-23 19:04:03 + 2011-06-24 02:04:03 + open + closed + level-2b + publish + 174 + 0 + page + + 0 + + + Level 3a + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3a/ + Fri, 24 Jun 2011 02:04:24 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=746 + + + + 746 + 2011-06-23 19:04:24 + 2011-06-24 02:04:24 + open + closed + level-3a + publish + 173 + 0 + page + + 0 + + + Level 3b + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3b/ + Fri, 24 Jun 2011 02:04:46 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=748 + + + + 748 + 2011-06-23 19:04:46 + 2011-06-24 02:04:46 + open + closed + level-3b + publish + 173 + 0 + page + + 0 + + + Template: Excerpt (Defined) + https://wpthemetestdata.wordpress.com/2012/03/15/template-excerpt-defined/ + Thu, 15 Mar 2012 21:38:08 +0000 + themedemos + http://wptest.io/demo/?p=993 + + should be displayed in place of the user-defined excerpt in single-page views.]]> + should be displayed in place of the post content in archive-index pages. It can be longer than the automatically generated excerpts, and can have HTML tags.]]> + 993 + 2012-03-15 14:38:08 + 2012-03-15 21:38:08 + closed + closed + template-excerpt-defined + publish + 0 + 0 + post + + 0 + + + + + + + + + Template: More Tag + https://wpthemetestdata.wordpress.com/2012/03/15/template-more-tag/ + Thu, 15 Mar 2012 21:41:11 +0000 + themedemos + http://wptest.io/demo/?p=996 + + more tag. + +Right after this sentence should be a "continue reading" button of some sort on list pages of themes that show full content. It won't show on single pages or on themes showing excerpts. + + + +And this content is after the more tag. (which should be the anchor link for when the button is clicked)]]> + + 996 + 2012-03-15 14:41:11 + 2012-03-15 21:41:11 + closed + closed + template-more-tag + publish + 0 + 0 + post + + 0 + + + + + + + + + Edge Case: Nested And Mixed Lists + https://wpthemetestdata.wordpress.com/2009/05/15/edge-case-nested-and-mixed-lists/ + Fri, 15 May 2009 21:48:32 +0000 + themedemos + http://wptest.io/demo/?p=1000 + + +
  • Lists within lists do not break the ordered list numbering order
  • +
  • Your list styles go deep enough.
  • + +

    Ordered - Unordered - Ordered

    +
      +
    1. ordered item
    2. +
    3. ordered item +
        +
      • unordered
      • +
      • unordered +
          +
        1. ordered item
        2. +
        3. ordered item
        4. +
        +
      • +
      +
    4. +
    5. ordered item
    6. +
    7. ordered item
    8. +
    +

    Ordered - Unordered - Unordered

    +
      +
    1. ordered item
    2. +
    3. ordered item +
        +
      • unordered
      • +
      • unordered +
          +
        • unordered item
        • +
        • unordered item
        • +
        +
      • +
      +
    4. +
    5. ordered item
    6. +
    7. ordered item
    8. +
    +

    Unordered - Ordered - Unordered

    +
      +
    • unordered item
    • +
    • unordered item +
        +
      1. ordered
      2. +
      3. ordered +
          +
        • unordered item
        • +
        • unordered item
        • +
        +
      4. +
      +
    • +
    • unordered item
    • +
    • unordered item
    • +
    +

    Unordered - Unordered - Ordered

    +
      +
    • unordered item
    • +
    • unordered item +
        +
      • unordered
      • +
      • unordered +
          +
        1. ordered item
        2. +
        3. ordered item
        4. +
        +
      • +
      +
    • +
    • unordered item
    • +
    • unordered item
    • +
    ]]>
    + + 1000 + 2009-05-15 14:48:32 + 2009-05-15 21:48:32 + closed + closed + edge-case-nested-and-mixed-lists + publish + 0 + 0 + post + + 0 + + + + + + + +
    + + Template: Featured Image (Horizontal) + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-horizontal/ + Thu, 15 Mar 2012 22:15:12 +0000 + themedemos + http://wptest.io/demo/?p=1011 + + featured image, if the theme supports it. + +Non-square images can provide some unique styling issues. + +This post tests a horizontal featured image.]]> + + 1011 + 2012-03-15 15:15:12 + 2012-03-15 22:15:12 + closed + closed + template-featured-image-horizontal + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + + + + Template: Featured Image (Vertical) + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-vertical/ + Thu, 15 Mar 2012 22:36:32 +0000 + themedemos + http://wptest.io/demo/?p=1016 + + featured image, if the theme supports it. + +Non-square images can provide some unique styling issues. + +This post tests a vertical featured image.]]> + + 1016 + 2012-03-15 15:36:32 + 2012-03-15 22:36:32 + closed + closed + template-featured-image-vertical + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + + + + Post Format: Gallery (Tiled) + https://wpthemetestdata.wordpress.com/2010/09/09/post-format-gallery-tiled/ + Fri, 10 Sep 2010 00:23:27 +0000 + themedemos + http://wptest.io/demo/?p=1031 + + Jetpack to test. + +[gallery type="rectangular" columns="4" ids="755,757,758,760,766,763" orderby="rand"] + +This is some text after the Tiled Gallery just to make sure that everything spaces nicely.]]> + + 1031 + 2010-09-09 17:23:27 + 2010-09-10 00:23:27 + closed + closed + post-format-gallery-tiled + publish + 0 + 0 + post + + 0 + + + + + + + + + + + Page Image Alignment + https://wpthemetestdata.wordpress.com/about/page-image-alignment/ + Fri, 15 Mar 2013 23:19:23 +0000 + themedemos + http://wptest.io/demo/?page_id=1080 + + None, Left, Right, and Center. In addition, they also get the options of Thumbnail, Medium, Large & Fullsize. Be sure to try this page in RTL mode and it should look the same as LTR. +

    Image Alignment 580x300

    +The image above happens to be centered. + +Image Alignment 150x150 The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see there should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +Image Alignment 1200x400 + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 1200x400 + +And we try the large image again, with the center alignment since that sometimes is a problem. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 300x200 + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And just when you thought we were done, we're going to do them all over again with captions! + +[caption id="attachment_906" align="aligncenter" width="580"]Image Alignment 580x300 Look at 580x300 getting some caption love.[/caption] + +The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky. + +[caption id="attachment_904" align="alignleft" width="150"]Image Alignment 150x150 Bigger caption than the image usually is.[/caption] + +The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +[caption id="attachment_907" align="alignnone" width="1200"]Image Alignment 1200x400 Comment for massive image for your eyeballs.[/caption] + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. +[caption id="attachment_907" align="aligncenter" width="1200"]Image Alignment 1200x400 This massive image is centered.[/caption] + +And again with the big image centered. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +[caption id="attachment_905" align="alignright" width="300"]Image Alignment 300x200 Feels good to be right all the time.[/caption] + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! Last thing is a small image aligned right. Whatever follows should be unaffected. Image Alignment 150x150]]>
    + + 1133 + 2013-03-15 18:19:23 + 2013-03-15 23:19:23 + open + open + page-image-alignment + publish + 2 + 0 + page + + 0 +
    + + Page Markup And Formatting + https://wpthemetestdata.wordpress.com/about/page-markup-and-formatting/ + Fri, 15 Mar 2013 23:20:05 +0000 + themedemos + http://wptest.io/demo/?page_id=1083 + + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    Jane$1Because that's all Steve Jobs needed for a salary.
    John$100KFor all the blogging he does.
    Jane$100MPictures are worth a thousand words, right? So Tom x 1,000.
    Jane$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    + Robert Frost
    +
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +This tag shows strike-through text. + +Small Tag + +This tag shows smaller text. + +Strong Tag + +This tag shows bold text. + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +This rarely used tag emulates teletype text, which is usually styled like the <code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +This tag shows underlined text. + +Variable Tag + +This allows you to denote variables.]]>
    + + 1134 + 2013-03-15 18:20:05 + 2013-03-15 23:20:05 + open + open + page-markup-and-formatting + publish + 2 + 0 + page + + 0 +
    + + Template: Comments + https://wpthemetestdata.wordpress.com/2012/01/03/template-comments/ + Tue, 03 Jan 2012 17:11:37 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/comment-test/ + + +
  • Threaded comments up to 10 levels deep
  • +
  • Paginated comments (set Settings > Discussion > Break comments into pages to 5 top level comments per page)
  • +
  • Comment markup / formatting
  • +
  • Comment images
  • +
  • Comment videos
  • +
  • Author comments
  • +
  • Gravatars and default fallbacks
  • +]]>
    + + 1148 + 2012-01-03 10:11:37 + 2012-01-03 17:11:37 + open + closed + template-comments + publish + 0 + 0 + post + + 0 + + + + + + + 881 + + example@example.org + http://example.org/ + + 2012-09-03 10:18:04 + 2012-09-03 17:18:04 + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    John Saddington$1Because that's all Steve Job' needed for a salary.
    Tom McFarlin$100KFor all the blogging he does.
    Jared Erickson$100MPictures are worth a thousand words, right? So Tom x 1,000.
    Chris Ames$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    + +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    +Robert Frost
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    + +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up.]]>
    + 1 + + 0 + 0 +
    + + 899 + + fake@example.com + + + 2013-03-11 23:45:54 + 2013-03-12 04:45:54 + Gravatar associated with it. + They did not speify a website, so there should be no link to it in the comment. +]]> + 1 + + 0 + 0 + + + 900 + + example@example.org + http://example.org/ + + 2013-03-12 13:17:35 + 2013-03-12 20:17:35 + + 1 + + 0 + 0 + + + 901 + + example@example.org + http://example.org + + 2013-03-14 07:53:26 + 2013-03-14 14:53:26 + + 1 + + 0 + 0 + + + 903 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 07:56:46 + 2013-03-14 14:56:46 + + 1 + + 0 + 24783058 + + + 904 + + example@example.org + http://example.org/ + + 2013-03-14 07:57:01 + 2013-03-14 14:57:01 + + 1 + + 0 + 0 + + + 905 + + example@example.org + http://example.org/ + + 2013-03-14 08:01:21 + 2013-03-14 15:01:21 + + 1 + + 904 + 0 + + + 906 + + example@example.org + http://example.org/ + + 2013-03-14 08:02:06 + 2013-03-14 15:02:06 + + 1 + + 905 + 0 + + + 907 + + example@example.org + http://example.org/ + + 2013-03-14 08:03:22 + 2013-03-14 15:03:22 + + 1 + + 906 + 0 + + + 910 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 08:10:29 + 2013-03-14 15:10:29 + + 1 + + 907 + 24783058 + + + 911 + + example@example.org + http://example.org/ + + 2013-03-14 08:12:16 + 2013-03-14 15:12:16 + + 1 + + 910 + 0 + + + 912 + + example@example.org + http://example.org/ + + 2013-03-14 08:12:58 + 2013-03-14 15:12:58 + + 1 + + 911 + 0 + + + 913 + + example@example.org + http://example.org/ + + 2013-03-14 08:13:42 + 2013-03-14 15:13:42 + + 1 + + 912 + 0 + + + 914 + + example@example.org + http://example.org/ + + 2013-03-14 08:14:13 + 2013-03-14 15:14:13 + + 1 + + 913 + 0 + + + 915 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 08:14:47 + 2013-03-14 15:14:47 + + 1 + + 914 + 24783058 + + + 917 + + example@example.org + http://example.org/ + + 2013-03-14 09:56:43 + 2013-03-14 16:56:43 + + If the image imports... + ]]> + 1 + + 0 + 0 + + + 918 + + example@example.org + http://example.org/ + + 2013-03-14 11:23:24 + 2013-03-14 18:23:24 + + 1 + + 0 + 0 + + + 919 + + example@example.org + http://example.org/ + + 2013-03-14 11:27:54 + 2013-03-14 18:27:54 + + 1 + + 0 + 0 + + + 920 + + example@example.org + http://example.org/ + + 2013-03-14 11:30:33 + 2013-03-14 18:30:33 + + 1 + + 0 + 24783058 + + + 1015 + + auser@example.com + + + 2014-09-29 02:52:15 + 2014-09-29 09:52:15 + + 0 + + 0 + 0 + +
    + + Template: Pingbacks And Trackbacks + https://wpthemetestdata.wordpress.com/2012/01/01/template-pingbacks-an-trackbacks/ + Sun, 01 Jan 2012 17:17:18 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/many-trackbacks/ + + +
  • Above the comments
  • +
  • Below the comments
  • +
  • Included within the normal flow of comments
  • +]]>
    + + 1149 + 2012-01-01 10:17:18 + 2012-01-01 17:17:18 + closed + closed + template-pingbacks-an-trackbacks + publish + 0 + 0 + post + + 0 + + + + + + + + + 921 + + + http://tellyworth.wordpress.com/2007/11/21/ping-1/ + + 2007-11-21 11:31:12 + 2007-11-21 01:31:12 + + 1 + trackback + 0 + 0 + + + 922 + + + http://tellyworth.wordpress.com/2007/11/21/ping-2-with-a-much-longer-title-than-the-previous-ping-which-was-called-ping-1/ + + 2007-11-21 11:35:47 + 2007-11-21 01:35:47 + + 1 + trackback + 0 + 0 + + + 923 + + + http://tellyworth.wordpress.com/2007/11/21/ping-4/ + + 2007-11-21 11:39:25 + 2007-11-21 01:39:25 + + 1 + pingback + 0 + 0 + + + 924 + + + http://tellyworth.wordpress.com/2007/11/21/ping-3/ + + 2007-11-21 11:38:22 + 2007-11-21 01:38:22 + + 1 + pingback + 0 + 0 + + + 925 + + example@example.org + http://example.org/ + + 2010-06-11 15:27:04 + 2010-06-11 22:27:04 + + 1 + + 0 + 0 + +
    + + Template: Comments Disabled + https://wpthemetestdata.wordpress.com/2012/01/02/template-comments-disabled/ + Mon, 02 Jan 2012 17:21:15 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/no-comments/ + + should display pingbacks and trackbacks.]]> + + 1150 + 2012-01-02 10:21:15 + 2012-01-02 17:21:15 + closed + closed + template-comments-disabled + publish + 0 + 0 + post + + 0 + + + + + + + + Edge Case: Many Tags + https://wpthemetestdata.wordpress.com/2009/06/01/edge-case-many-tags/ + Mon, 01 Jun 2009 08:00:34 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/11/24/many-tags/ + + + + 1151 + 2009-06-01 01:00:34 + 2009-06-01 08:00:34 + closed + closed + edge-case-many-tags + publish + 0 + 0 + post + + 0' + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Edge Case: Many Categories + https://wpthemetestdata.wordpress.com/2009/07/02/edge-case-many-categories/ + Thu, 02 Jul 2009 09:00:03 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/11/24/many-categories/ + + + + 1152 + 2009-07-02 02:00:03 + 2009-07-02 09:00:03 + closed + closed + edge-case-many-categories + publish + 0 + 0 + post + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Scheduled + https://wpthemetestdata.wordpress.com/2020/01/01/scheduled/ + Wed, 01 Jan 2030 19:00:18 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=418 + + + + 1153 + 2030-01-01 12:00:18 + 2030-01-01 19:00:18 + closed + closed + scheduled + future + 0 + 0 + post + + 0 + + + + + + Post Format: Image + https://wpthemetestdata.wordpress.com/2010/08/08/post-format-image/ + Sun, 08 Aug 2010 12:00:39 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=568 + +
      + +]]>
    + + 1158 + 2010-08-08 05:00:39 + 2010-08-08 12:00:39 + closed + closed + post-format-image + publish + 0 + 0 + post + + 0 + + + + + +
    + + Post Format: Video (YouTube) + https://wpthemetestdata.wordpress.com/2010/06/02/post-format-video-youtube/ + Wed, 02 Jun 2010 09:00:58 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=582 + + WordPress Embeds.]]> + + 1161 + 2010-06-02 02:00:58 + 2010-06-02 09:00:58 + closed + closed + post-format-video-youtube + publish + 0 + 0 + post + + 0 + + + + + + + Post Format: Image (Caption) + https://wpthemetestdata.wordpress.com/2010/08/07/post-format-image-caption/ + Sat, 07 Aug 2010 13:00:19 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=674 + + Bell on Wharf Bell on wharf in San Francisco[/caption]]]> + + 1163 + 2010-08-07 06:00:19 + 2010-08-07 13:00:19 + closed + closed + post-format-image-caption + publish + 0 + 0 + post + + 0 + + + + + + + + _thumbnail_id + + + + + Draft + https://wpthemetestdata.wordpress.com/?p=1164 + Tue, 09 Apr 2013 18:20:39 +0000 + themedemos + http://wptest.io/demo/?p=922 + + + + 1164 + 2013-04-09 11:20:39 + 2013-04-09 18:20:39 + closed + closed + + draft + 0 + 0 + post + + 0 + + + + + + Template: Password Protected (the password is "enter") + https://wpthemetestdata.wordpress.com/2012/01/04/template-password-protected/ + Wed, 04 Jan 2012 16:38:05 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/test-with-secret-password/ + + + + 1168 + 2012-01-04 09:38:05 + 2012-01-04 16:38:05 + closed + closed + template-password-protected + publish + 0 + 0 + post + enter + 0 + + + + + + + 926 + + example@example.org + http://example.org/ + + 2013-03-14 11:56:08 + 2013-03-14 18:56:08 + + 1 + + 0 + 0 + + + + + <link>https://wpthemetestdata.wordpress.com/2009/09/05/edge-case-no-title/</link> + <pubDate>Sat, 05 Sep 2009 16:00:23 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2007/09/04/14/</guid> + <description/> + <content:encoded><![CDATA[This post has no title, but it still must link to the single post view somehow. + +This is typically done by placing the permalink on the post date.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1169</wp:post_id> + <wp:post_date>2009-09-05 09:00:23</wp:post_date> + <wp:post_date_gmt>2009-09-05 16:00:23</wp:post_date_gmt> + <wp:comment_status>closed</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>edge-case-no-title</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>0</wp:menu_order> + <wp:post_type>post</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="category" nicename="classic"><![CDATA[Classic]]></category> + <category domain="post_tag" nicename="edge-case"><![CDATA[edge case]]></category> + <category domain="category" nicename="edge-case-2"><![CDATA[Edge Case]]></category> + <category domain="post_tag" nicename="layout"><![CDATA[layout]]></category> + <category domain="post_tag" nicename="title"><![CDATA[title]]></category> +</item> +<item> + <title>Edge Case: No Content + https://wpthemetestdata.wordpress.com/2009/08/06/edge-case-no-content/ + Thu, 06 Aug 2009 16:39:56 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/this-post-has-no-body/ + + + + 1170 + 2009-08-06 09:39:56 + 2009-08-06 16:39:56 + closed + closed + edge-case-no-content + publish + 0 + 0 + post + + 0 + + + + + + + 927 + + example@example.org + http://example.org/ + + 2013-03-14 12:35:07 + 2013-03-14 19:35:07 + + 1 + + 0 + 0 + + + + Template: Paginated + https://wpthemetestdata.wordpress.com/2012/01/08/template-paginated/ + Sun, 08 Jan 2012 17:00:20 +0000 + themedemos + https://noeltest.wordpress.com/?p=188 + + + +Post Page 2 + + + +Post Page 3]]> + + 1171 + 2012-01-08 10:00:20 + 2012-01-08 17:00:20 + closed + closed + template-paginated + publish + 0 + 0 + post + + 0 + + + + + + + + + <![CDATA[Markup: Title <em>With</em> <b>Mark<sup>up</sup></b>]]> + https://wpthemetestdata.wordpress.com/2013/01/05/markup-title-with-markup/ + Sat, 05 Jan 2013 17:00:49 +0000 + themedemos + http://wptest.io/demo/?p=861 + + +
  • The post title renders the word "with" in italics and the word "markup" in bold (and "up" is superscript).
  • +
  • The post title markup should be removed from the browser window / tab.
  • +]]>
    + + 1173 + 2013-01-05 10:00:49 + 2013-01-05 17:00:49 + closed + closed + markup-title-with-markup + publish + 0 + 0 + post + + 0 + + + + + +
    + + Markup: Title With Special Characters ~`!@#$%^&*()-_=+{}[]/\;:'"?,.> + https://wpthemetestdata.wordpress.com/2013/01/05/title-with-special-characters/ + Sat, 05 Jan 2013 18:00:20 +0000 + themedemos + http://wptest.io/demo/?p=867 + + Latin Character Tests +This is a test to see if the fonts used in this theme support basic Latin characters. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    !"#$%&'()*
    +,-./01234
    56789:;>=<
    ?@ABCDEFGH
    IJKLMNOPQR
    STUVWXYZ[\
    ]^_`abcdef
    ghijklmnop
    qrstuvwxyz
    {|}~
    ]]>
    + + 1174 + 2013-01-05 11:00:20 + 2013-01-05 18:00:20 + closed + closed + title-with-special-characters + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Taumatawhakatangihangakoauauotamateaturipukakapikimaungahoronukupokaiwhenuakitanatahu + https://wpthemetestdata.wordpress.com/2009/10/05/title-should-not-overflow-the-content-area/ + Mon, 05 Oct 2009 19:00:59 +0000 + themedemos + http://wptest.io/demo/?p=877 + + Title should not overflow the content area + +A few things to check for: +
      +
    • Non-breaking text in the title, content, and comments should have no adverse effects on layout or functionality.
    • +
    • Check the browser window / tab title.
    • +
    • If you are a plugin or widget developer, check that this text does not break anything.
    • +
    + +The following CSS properties will help you support non-breaking text. + +
    -ms-word-wrap: break-word;
    +word-wrap: break-word;
    + ]]>
    + + 1175 + 2009-10-05 12:00:59 + 2009-10-05 19:00:59 + closed + closed + title-should-not-overflow-the-content-area + publish + 0 + 0 + post + + 0 + + + + + + + + +
    + + Markup: Text Alignment + https://wpthemetestdata.wordpress.com/2013/01/09/markup-text-alignment/ + Wed, 09 Jan 2013 16:00:39 +0000 + themedemos + http://wptest.io/demo/?p=895 + + Default +This is a paragraph. It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love. Completely neutral and not picking a side or sitting on the fence. It just is. It just freaking is. It likes where it is. It does not feel compelled to pick a side. Leave him be. It will just be better that way. Trust me. +

    Left Align

    +

    This is a paragraph. It is left aligned. Because of this, it is a bit more liberal in it's views. It's favorite color is green. Left align tends to be more eco-friendly, but it provides no concrete evidence that it really is. Even though it likes share the wealth evenly, it leaves the equal distribution up to justified alignment.

    + +

    Center Align

    +

    This is a paragraph. It is center aligned. Center is, but nature, a fence sitter. A flip flopper. It has a difficult time making up its mind. It wants to pick a side. Really, it does. It has the best intentions, but it tends to complicate matters more than help. The best you can do is try to win it over and hope for the best. I hear center align does take bribes.

    + +

    Right Align

    +

    This is a paragraph. It is right aligned. It is a bit more conservative in it's views. It's prefers to not be told what to do or how to do it. Right align totally owns a slew of guns and loves to head to the range for some practice. Which is cool and all. I mean, it's a pretty good shot from at least four or five football fields away. Dead on. So boss.

    + +

    Justify Align

    +

    This is a paragraph. It is justify aligned. It gets really mad when people associate it with Justin Timberlake. Typically, justified is pretty straight laced. It likes everything to be in it's place and not all cattywampus like the rest of the aligns. I am not saying that makes it better than the rest of the aligns, but it does tend to put off more of an elitist attitude.

    ]]>
    + + 1176 + 2013-01-09 09:00:39 + 2013-01-09 16:00:39 + closed + closed + markup-text-alignment + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Markup: Image Alignment + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/ + Fri, 11 Jan 2013 03:15:40 +0000 + themedemos + http://wptest.io/demo/?p=903 + + None, Left, Right, and Center. In addition, they also get the options of Thumbnail, Medium, Large & Fullsize. Be sure to try this page in RTL mode and it should look the same as LTR. +

    Image Alignment 580x300

    +The image above happens to be centered. + +Image Alignment 150x150 The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +Image Alignment 1200x400 + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 1200x400 + +And we try the large image again, with the center alignment since that sometimes is a problem. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 300x200 + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And just when you thought we were done, we're going to do them all over again with captions! + +[caption id="attachment_906" align="aligncenter" width="580"]Image Alignment 580x300 Look at 580x300 getting some caption love.[/caption] + +The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky. + +[caption id="attachment_904" align="alignleft" width="150"]Image Alignment 150x150 Bigger caption than the image usually is.[/caption] + +The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +[caption id="attachment_907" align="alignnone" width="1200"]Image Alignment 1200x400 Comment for massive image for your eyeballs.[/caption] + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. +[caption id="attachment_907" align="aligncenter" width="1200"]Image Alignment 1200x400 This massive image is centered.[/caption] + +And again with the big image centered. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +[caption id="attachment_905" align="alignright" width="300"]Image Alignment 300x200 Feels good to be right all the time.[/caption] + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! One last thing: The last item in this post's content is a thumbnail floated right. Make sure any elements after the content are clearing properly. + +]]>
    + + 1177 + 2013-01-10 20:15:40 + 2013-01-11 03:15:40 + closed + closed + markup-image-alignment + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + +
    + + Markup: HTML Tags and Formatting + https://wpthemetestdata.wordpress.com/2013/01/11/markup-html-tags-and-formatting/ + Sat, 12 Jan 2013 03:22:19 +0000 + themedemos + http://wptest.io/demo/?p=919 + + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    John Doe$1Because that's all Steve Jobs needed for a salary.
    Jane Doe$100KFor all the blogging she does.
    Fred Bloggs$100MPictures are worth a thousand words, right? So Jane x 1,000.
    Jane Bloggs$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    +Robert Frost
    +
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +This tag shows strike-through text. + +Small Tag + +This tag shows smaller text. + +Strong Tag + +This tag shows bold text. + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +This rarely used tag emulates teletype text, which is usually styled like the <code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +This tag shows underlined text. + +Variable Tag + +This allows you to denote variables.]]>
    + + 1178 + 2013-01-11 20:22:19 + 2013-01-12 03:22:19 + closed + closed + markup-html-tags-and-formatting + publish + 0 + 0 + post + + 0 + + + + + + + +
    + + Media: Twitter Embeds + https://wpthemetestdata.wordpress.com/2011/03/15/media-twitter-embeds/ + Tue, 15 Mar 2011 22:47:16 +0000 + themedemos + http://wptest.io/demo/?p=1027 + + Twitter Embeds feature.]]> + + 1179 + 2011-03-15 15:47:16 + 2011-03-15 22:47:16 + closed + closed + media-twitter-embeds + publish + 0 + 0 + post + + 0 + + + + + + + + _oembed_time_d01e104b758ab65a49dfdede5913069c + + + + _oembed_ac49b172e1844531a885a53eff2efd91 + ]]> + + + _oembed_time_ac49b172e1844531a885a53eff2efd91 + + + + _oembed_d01e104b758ab65a49dfdede5913069c + ]]> + + + + Template: Sticky + https://wpthemetestdata.wordpress.com/2012/01/07/template-sticky/ + Sat, 07 Jan 2012 14:07:21 +0000 + themedemos + http://wptest.io/demo/?p=1241 + + +
  • The sticky post should be distinctly recognizable in some way in comparison to normal posts. You can style the .sticky class if you are using the post_class() function to generate your post classes, which is a best practice.
  • +
  • They should show at the very top of the blog index page, even though they could be several posts back chronologically.
  • +
  • They should still show up again in their chronologically correct postion in time, but without the sticky indicator.
  • +
  • If you have a plugin or widget that lists popular posts or comments, make sure that this sticky post is not always at the top of those lists unless it really is popular.
  • +]]>
    + + 1241 + 2012-01-07 07:07:21 + 2012-01-07 14:07:21 + closed + closed + template-sticky + publish + 0 + 0 + post + + 1 + + + + +
    + + Template: Excerpt (Generated) + https://wpthemetestdata.wordpress.com/2012/03/14/template-excerpt-generated/ + Wed, 14 Mar 2012 16:49:22 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=1446 + + excerpt_length and excerpt_more, display properly.]]> + + 1446 + 2012-03-14 09:49:22 + 2012-03-14 16:49:22 + closed + closed + template-excerpt-generated + publish + 0 + 0 + post + + 0 + + + + + + + + + Block category: Common + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-common/ + Fri, 02 Nov 2018 16:20:28 +0000 + >themereviewteam + https://wpthemetestdata.wordpress.com/?p=1730 + + +

    The Common category includes the following blocks: Paragraph, image, headings, list, gallery, quote, audio, cover, video.

    + + + +

    The paragraph block is the default block type.  It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love.

    + + + +

    This paragraph is left aligned.

    + + + +

    This italic paragraph is right aligned.

    + + + +

    Neither of these paragraphs care about politics, but this one is bold, medium sized and has a drop cap.

    + + + +

    This paragraph is centered.

    + + + +

    This paragraph prefers Jazz over Justin Timberlake. It also uses the small font size.

    + + + +

    This paragraph has something important to say:  It has a large font size, which defaults to 36px.

    + + + +

    The huge text size defaults to 46px, but the size can be customized.

    + + + +

    This paragraph is colorful, with a red background and white text (maybe). Colored blocks should have a high enough contrast, so that the text is readable.

    + + + +

    Below this block, you will see a single image with a circle mask applied.

    + + + +
    Image Alignment 150x150
    + + + +

    H1 Heading

    + + + +

    H2 Heading

    + + + +

    H3 Heading

    + + + +

    H4 Heading

    + + + +
    H5 Heading
    + + + +
    H6 Heading
    + + + +

    Ordered list

    + + + +
    1. The software should be licensed under the GNU Public License.
    2. The software should be freely available to anyone to use for any purpose, and without permission.
    3. The software should be open to modifications.
      1. Any modifications should be freely distributable at no cost and without permission from its creators.
    4. The software should provide a framework for translation to make it globally accessible to speakers of all languages.
    5. The software should provide a framework for extensions so modifications and enhancements can be made without modifying core code
    + + + +

    Unordered list

    + + + +
    • One
    • Two
    • Three
      • Four
    • Five
    + + + + + + + +

    Quote

    Cite
    + + + +
    + + + +
    +

    Cover block with background image

    +
    + + + +

    The file block has a setting that lets us show or hide a download button with editable text:

    + + + + + + + + + + + +

    Video blocks have settings for showing and hiding the playback controls. Use autoplay and playback controls responsibly.

    + + + +
    This is a video block caption.
    + + + +

    The video block below is muted and has a poster image that displays before the video starts:

    + + + +
    + +]]>
    + + 1730 + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + +
    + + Block category: Formatting + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-formatting/ + Fri, 02 Nov 2018 16:41:42 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1732 + + +

    The formatting category includes the following blocks:

    + + + +
    The code block starts with
    +<!-- wp:code -->
    +<?php echo 'Hello World'; ?>
    +
    + + +

    The classic block can have almost anything in it.

    +
    +
    a heading
    + + +
    The custom HTML block lets you put HTML that isn't configured like blocks in it. (this div has a width of 45%)
    + + + +
    The preformatted block.

    The Road Not Taken

    Robert Frost
    Two roads diverged in a yellow wood,
    And sorry I could not travel both (\_/)
    And be one traveler, long I stood (='.'=)
    And looked down one as far as I could (")_(")
    To where it bent in the undergrowth;

    Then took the other, as just as fair,
    And having perhaps the better claim, |\_/|
    Because it was grassy and wanted wear; / @ @ \
    Though as for that the passing there ( > º < )
    Had worn them really about the same, `>>x<<´
    / O \
    And both that morning equally lay
    In leaves no step had trodden black.
    Oh, I kept the first for another day!
    Yet knowing how way leads on to way,
    I doubted if I should ever come back.
    I shall be telling this with a sigh
    Somewhere ages and ages hence:
    Two roads diverged in a wood, and I—
    I took the one less traveled by,
    And that has made all the difference.



    and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    + + + +

    The pull quote can be aligned or wide or neither.

    Theme Reviewer
    + + + +
    The table blockThis is the default style.
    The cell next to this is empty.
    Cell #5
    Cell #6
    + + + +
    This is the striped style.This row should have a background color.
    The cell next to this is empty.

    This table has fixed width table cells.

    Make sure that the text wraps correctly.

    + + + +
    The Verse block

    A block for haiku?
    Why not?
    Blocks for all the things!
    +]]>
    + + 1732 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Block category: Layout Elements + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-layout-elements/ + Fri, 02 Nov 2018 16:44:37 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1734 + + +
    +

    The Layout Elements category includes the following blocks: Group, Button, Columns, Media & Text, separator, spacer, read more, and page break.

    + + + +

    This group block has a light green background color.

    + + + + + + + +

    The read more block should be right below this text, but only on list pages of themes that show the full content. It won't show on the single page or on themes showing excerpts.

    +
    + + + + + + + +
    +
    +

    The columns:

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    +
    + + + +
    Boardwalk
    +

    Media &Text

    + + + +

    For displaying media and text next to each other. By default, the media is to the left.

    +
    + + + +
    Golden Gate Bridge
    +

    This time our block is full width, and the image is to the right.

    + + + +

    The background color is a pale blue. 

    +
    + + + +

    Test to make sure that the editor and the front match. To test the Stack on mobile setting, reduce the browser window width.

    + + + +

    The control these settings, the block uses the css classes "has-media-on-the-right" and "is-stacked-on-mobile".

    + + + +

    The separator has three styles: default, wide line, and dots.

    + + + +
    + + + +
    + + + +
    + + + +

    The spacer block has a default height of 100 pixels:

    + + + + + + + +

    And finally, the page break:

    + + + + + + + +

    This paragraph block is on page two, after the page break.

    + + + + +]]>
    + + 1734 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block category: Embeds + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-embeds/ + Fri, 02 Nov 2018 16:51:55 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1738 + + + +

    This post tests various embed blocks:

    + + + +
    +https://twitter.com/WordPress/status/1057136472321613824 +
    Twitter,  wide width
    + + + +
    +https://youtu.be/ex8fMxXJDJw +
    YouTube
    + + + +
    +https://www.facebook.com/6427302910/posts/10156380423617911/ +
    + + + +
    +https://www.instagram.com/p/BpmueLLgEn_/?utm_source=ig_share_sheet&igshid=1hcxphic7p9e2 +
    + + + +
    +https://wordpress.tv/2018/10/14/kjell-reigstad-allan-cole-how-we-made-our-first-gutenberg-powered-theme/ +
    WordPress TV, full width
    + + + +

    +]]>
    + + 1738 + + + + + + + 0 + 0 + + + 0 + + + + + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + + + + + + + + + + ]]> + + + + + + + +

    Many of the WordPress contribution teams have been working hard on the new WordPress editor, and the tools, services,...

    Publicerat av WordPress Måndag 3 september 2018
    ]]>
    +
    + + + + + + + ]]> + + + + + + + + ]]> + + + + + + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + + + + + + ]]> + + + + + + + +

    Many of the WordPress contribution teams have been working hard on the new WordPress editor, and the tools, services,...

    Publicerat av WordPress Måndag 3 september 2018
    ]]>
    +
    + + + + + + + ]]> + + + + + + + + ]]> + + + + + +
    + + Block category: Widgets + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-widgets/ + Fri, 02 Nov 2018 16:45:35 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1736 + + +

    The shortcode widget:

    + + + +[gallery columns=2 ids="770,771"] + + + +

    The Archive Widget:

    + + + + + +

    The same Archive widget but as a dropdown:

    + + + + + + + +

    The Category widget block has an additional option for showing category hierarchies:

    + + + + + +

    The Latest Comments widget can display or hide the avatars, the date, and the comment excerpt:

    + + + + + +

    Here is an example of the Comments widget with all the options disabled. The number of comments has been reduced to two.

    + + + + + +

    And here is the Latest Posts widget in the list view, with dates:

    + + + + + +

    Grid view, now sorted from A -Z.

    + + + + + +

    You can also change the number of columns used to display the latest posts. The block below only displays posts from the Block category:

    + + + + + +

    Search widget:

    + + + + + +

    Tag Cloud widget:

    + + + + + +

    RSS Feed widget:

    + + + + ]]>
    + + 1736 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Columns + https://wpthemetestdata.wordpress.com/2018/11/02/block-columns/ + Fri, 02 Nov 2018 12:10:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1743 + + +
    +
    +

    This page tests how the theme displays the columns block. The first block tests a two column block with paragraphs.

    +
    + + + +
    +

    This is the second column. It should align next to the first column. Reduce the browser window width to test the responsiveness.

    +
    +
    + + + +
    +
    +

    This is the second column block. It has 3 columns.

    +
    + + + +
    +

    Paragraph 2 is in the middle.

    +
    + + + +
    +

    Paragraph 3 is in the last column.

    +
    +
    + + + +
    +
    +

    The third column block has 4 columns. Make sure that all the text is visible and that it is not cut off.

    +
    + + + +
    +

    Now the columns are getting narrower.

    +
    + + + +
    +

    The margins between the columns should be wide enough,

    +
    + + + +
    +

    so that the content of the columns does not run into or overlap each other.

    +
    +
    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    + + + +
    +

    Column five.

    +
    +
    + + + +

    To change the number of columns, select the column block to open the settings panel. You can show up to 6 columns. If the theme has support for wide align, you can also set the alignments to wide and full width.

    + + + +

    Below is a column block with six columns, and no alignment:

    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    + + + +
    +

    Column five.

    +
    + + + +
    +

    Column six.

    +
    +
    + + + +

    Next is a 3 column block, with a wide alignment:

    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    +
    + + + +

    And here is a two column block with full width, and a longer text. Make sure that the text wraps correctly.

    + + + +
    +
    +

    This is column one. Sometimes, you may want to use columns to display a larger text, so, lets add some more words. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna. Praesent sit amet ligula id orci venenatis auctor. Phasellus porttitor, metus non tincidunt dapibus, orci pede pretium neque, sit amet adipiscing ipsum lectus et libero. Aenean bibendum. Curabitur mattis quam id urna. Vivamus dui. Donec nonummy lacinia lorem. Cras risus arcu, sodales ac, ultrices ac, mollis quis, justo. Sed a libero. Quisque risus erat, posuere at, tristique non, lacinia quis, eros.

    +
    + + + +
    +

    Column two. Cras volutpat, lacus quis semper pharetra, nisi enim dignissim est, et sollicitudin quam ipsum vel mi. Sed commodo urna ac urna. Nullam eu tortor. Curabitur sodales scelerisque magna. Donec ultricies tristique pede. Nullam libero. Nam sollicitudin felis vel metus. Nullam posuere molestie metus. Nullam molestie, nunc id suscipit rhoncus, felis mi vulputate lacus, a ultrices tortor dolor eget augue. Aenean ultricies felis ut turpis. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Suspendisse placerat tellus ac nulla. Proin adipiscing sem ac risus. Maecenas nisi. Cras semper.

    +
    +
    + + + +

    We can also add blocks inside columns:

    + + + +
    +
    +
    1. This is a numbered list,
    2. inside a 3 column block
    3. with a wide alignment.
    +
    + + + +
    +

    The middle column has a paragraph with an image block below.

    + + + +
    canola
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna.
    +
    + + + +
    +

    -This third column has a quote

    Theme Reviewer
    +
    +
    + + + +

    But wait there is more!  We also have a block called Media & Text, which is a two column block that helps you display media and text content next to each other, without having to first setup a column block:

    + + + +
    dsc20050813_115856_52
    +

    Media & Text

    + + + +

    A paragraph block sits ready to be used, below your headline.

    + + + +

    +
    +]]>
    + + 1743 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Block: Cover + https://wpthemetestdata.wordpress.com/2018/11/02/block-cover/ + Sat, 03 Nov 2018 12:25:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1745 + + +

    This is a left aligned cover block with a background image.

    + + + +

    The cover block lets you add text on top of images or videos.

    + + + +

    This blocktype has several alignment options, and you can also align or center the text inside the block.

    + + + +

    The background image can be fixed and you can change its opacity and add an overlay color.

    + + + +

    Make sure that the text wraps correctly over the image, and that text markup and alignments are working.

    + + + +

    The next image should have a pink overlay color, the text should be bold and aligned to the left:

    + + + +

    A center aligned cover image block, with a left aligned text.

    + + + +

    This is a full width cover block with a fixed background image with a 20% opacity.

    + + + +

    Make sure that all the text is readable.

    + + + +

    Our last cover image block has a wide width.

    + + + +

    This is a wide cover block with a video background.

    + + + +

    Compare the video and image blocks.
    This block is centered.

    + + + +

    The block below has no alignment, and the text is a link. Overlay colors must also work with video backgrounds.

    + + + + +]]>
    + + 1745 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Button + https://wpthemetestdata.wordpress.com/2018/11/02/block-button/ + Sat, 03 Nov 2018 13:20:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1747 + + +

    Button blocks are not semantically buttons, but links inside a styled div. 

    + + + +

    If you do not add a link, a link tag without an anchor will be used.

    + + + + + + + +

    Check to make sure that the text wraps correctly when the button has more than one line of text, and when it is extra long.

    + + + + + + + +

    Buttons have three styles: 

    + + + + + + + + + + + + + + + +

    If the theme has a custom color palette, test that background color and text color settings work correctly. 

    + + + + + + + +

    Now lets test how buttons display together with large texts.

    + + + +

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio.

    + + + + + + + +

    Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna. Praesent sit amet ligula id orci venenatis auctor. Phasellus porttitor, metus non tincidunt dapibus, orci pede pretium neque, sit amet adipiscing ipsum lectus et libero. Aenean bibendum. Curabitur mattis quam id urna.

    + + + + + + + +

    Vivamus dui. Donec nonummy lacinia lorem. Cras risus arcu, sodales ac, ultrices ac, mollis quis, justo. Sed a libero. Quisque risus erat, posuere at, tristique non, lacinia quis, eros.

    +]]>
    + + 1747 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Quote + https://wpthemetestdata.wordpress.com/2018/11/02/block-quote/ + Sat, 03 Nov 2018 03:05:49 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1749 + + +

    The quote block has two styles, regular:

    + + + +

    Gutenberg is more than an editor.

    The Gutenberg Team
    + + + +

    and large:

    + + + +

    Yes, it is a press, certainly, but a press from which shall flow in inexhaustible streams, the most abundant and most marvelous liquor that has ever flowed to relieve the thirst of men!


    Johannes Gutenberg
    + + + +

    The quote blocks themselves have no alignments but the text can be aligned, bold, italic, and linked:

    + + + +

    Right

    Theme Review
    + + + +

    In addition to the quote block, we also have the pull quote, with a regular and a solid color style.

    + + + +

    You can change the color of the border and the text with the regular style:

    + + + +

    In addition to the quote block, we also have the pull quote.

    Theme Reviewer
    + + + +

    Or change the background color and text color with the solid color style:

    + + + +

    a solid color style

    Theme Reviewer
    +]]>
    + + 1749 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Gallery + https://wpthemetestdata.wordpress.com/2018/11/02/block-gallery/ + Sat, 03 Nov 2018 04:34:24 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1752 + + +

    Gallery blocks have two settings: the number of columns, and whether or not images should be cropped. The default number of columns is three, and the maximum number of columns is eight.

    + + + +

    Below is a three column gallery at full width, with cropped images.

    + + + + + + + + + + + +

    Some more text for taking up space.

    + + + +

    A two column gallery, aligned to the left, linked to media file.

    + + + +

    In the editor, the image captions can be edited directly by clicking on the text.

    + + + +

    If the number of images cannot be divided into the number of columns you have selected, the default is to have the last image(s) automatically stretch to the width of your gallery.

    + + + + + + + +

    A four column gallery with a wide width:

    + + + + + + + +

    A five column gallery with normal images:

    + + + + + + + +

    This is the same gallery, but with cropped images.

    + + + + + + + +

    Six columns: does it work at all window sizes?

    + + + + + + + +

    Seven columns: how does this look on a narrow window?

    + + + + + + + +

    Eight columns:

    + + + + +]]>
    + + 1752 + + + + + + + 0 + 0 + + + 0 + + + + + + + + + +
    + + Block: Image + https://wpthemetestdata.wordpress.com/2018/11/03/block-image/ + Sat, 03 Nov 2018 15:20:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1755 + + +

    Welcome to image alignment! If you recognize this post, it is because these are blocks that have been converted from the classic Markup: Image Alignment post. The best way to demonstrate the ebb and flow of the various image positioning options is to nestle them snuggly among an ocean of words. Grab a paddle and let's get started. Be sure to try it in RTL mode. Left should stay left and right should stay right for both reading directions.

    + + + +

    On the topic of alignment, it should be noted that users can choose from the options of None, Left, Right, and Center. If the theme has added support for align wide, images can also be wide and full width. Be sure to test this page in RTL mode.

    + + + +

    In addition, they also get the options of the image dimensions 25%, 50%, 75%, 100% or a set width and height.

    + + + +
    Image Alignment 580x300
    + + + +

    The image above happens to be centered.

    + + + +
    Image Alignment 150x150
    + + + +

    The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned.

    + + + +

    As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished!

    + + + +

    And now for a massively large image. It also has no alignment.

    + + + +
    Image Alignment 1200x400
    + + + +

    The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.

    + + + +
    Image Alignment 300x200
    + + + +

    And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there… Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently.

    + + + +

    In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah… Just like that. It never felt so good to be right.

    + + + +

    And just when you thought we were done, we're going to do them all over again with captions!

    + + + +
    Image Alignment 580x300
    Look at 580x300 getting some caption love.
    + + + +

    The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky.

    + + + +
    Image Alignment 150x150
    Itty-bitty caption.
    + + + +

    The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned.

    + + + +

    As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished!

    + + + +

    And now for a massively large image. It also has no alignment.

    + + + +
    Image Alignment 1200x400
    Massive image comment for your eyeballs.
    + + + +

    The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.

    + + + +
    Image Alignment 300x200
    Feels good to be right all the time.
    + + + +

    And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there… Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently.

    + + + +

    In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah… Just like that. It never felt so good to be right.

    + + + +

    Imagine that we would find a use for the extra wide image! This image has the wide width alignment:

    + + + +
    Image Alignment 1200x4002
    + + + +

    Can we go bigger? This image has the full width alignment:

    + + + +
    Image Alignment 1200x4002
    + + + +

    And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! One last thing: The last item in this post's content is a thumbnail floated right. Make sure any elements after the content are clearing properly.

    + + + +
    +]]>
    + + 1755 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Ελληνικά-Greek + https://wpthemetestdata.wordpress.com/greek/ + Fri, 14 Feb 2020 10:31:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1809 + + Headings Επικεφαλίδες +

    Επικεφαλίδα 1 Header one

    +

    Επικεφαλίδα 2 Header two

    +

    Επικεφαλίδα 3 Header three

    +

    Επικεφαλίδα 2 Header four

    +
    Επικεφαλίδα 5 Header five
    +
    Επικεφαλίδα 6Header six
    +

    Παράθεση άλλου Blockquotes

    +Single line blockquote: Μια γραμμή +
    Πάντα να είναι περίεργος.
    +Πολλές γραμμέ με αναφορά Multi line blockquote with a cite reference: +
    Το HTML <blockquote> ElementHTML Block Quotation Element) καταδεικνύει ότι το κείμενο έχει μια παράθεση. Συνήθως οπτικοποιείται με εσοχή (δείτε Σημειώσεις για το πως να το αλλάξετε. Ίσως να δίνεται και URL πηγής με την χρήση του cite attribute, μπλα, μπλα <cite> .
    +multiple contributors - MDN HTML element reference - blockquote +

    Πίνακες Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Υπάλληλος EmployeeΜισθός Salary
    Τάδε κάποιος$1Γιατί τόσα χρειάζεται για να ζήσει
    Jane Doe$100KFor all the blogging she does.
    Fred Bloggs$100MPictures are worth a thousand words, right? So Jane x 1,000.
    Jane Bloggs$100BWith hair like that?! Enough said...
    +

    Λίστες Definition Lists

    +
    +
    Τίτλος λίστας Definition List Title
    +
    Υποδιαίρεση λίστας Definition list division.
    +
    +

    Λίστα με κουκίδες Unordered Lists (Nested)

    +
      +
    • Πρώτο στοιχείο List item one +
        +
      • Στοιχείο πρώτο List item one +
          +
        • Στοιχείο λίστα ένα List item one
        • +
        • Στοιχείο λίστας δύο List item two
        • +
        +
      • +
      • Στοιχείο δεύτερο -item two
      • +
      +
    • +
    • Στοιχειο δύο List item two
    • +
    +

    Αριθμημένη λίστα(Nested)

    +
      +
    1. Στοιχειο ξεκινά με 8-start at 8 +
        +
      1. Στοιχείο λίστας ενα List item one +
          +
        1. Στοιχείο λίστας ενα -reversed attribute
        2. +
        3. Στοιχείο λίστας δύο
        4. +
        +
      2. +
      3. Δεύτερο στοιχείο
      4. +
      +
    2. +
    3. Στοιχείο δύο
    4. +
    +

    Ετικέττες HTML Tags

    +Διεύθυνση Address Tag + +
    1 Απέραντη διαδρομή Infinite Loop +Απλωπολή , ΤΚ 95014 +Ελλάδα
    Αγκυρωση Anchor Tag (aka. Link) + +Πάραδειγμα συνδέσμου. + +Συντομογραφία Abbreviation Tag + +Η συντομογραφία κτλ σημαίνει "Και τα λοιπά". + +Ακρωνύμιο Acronym Tag + +Το ακρωνύμιο κυρ σημαίνει "Κύριος". + +Big Tag + +Αυτό είναι μεγάλο θέμα + +Cite Tag + +"Φάε το φαϊ σου" --Όλες οι μαμάδες + +Code Tag + +This tag styles blocks of code. +.post-title { +margin: 0 0 5px; +font-weight: bold; +font-size: 38px; +line-height: 1.2; +και μία γραμμή με πολύ πάρα πολύ υπερβολικά πάρα πολύ μεγάλο κείμενο που πρέπει να δούμε πως το χειρίζεται η γραμματοσειρά και αν ξεχειλίζει από τις γραμμές και δημιουργεί πρόβλημα; +} + +Διαγραφή Delete Tag + +Μπορείτε να διαγράφεται κείμενο, αλλά δεν συνιστάται. + +Έμφαση Emphasize Tag + +Θα πρέπει να κάνει ιταλικ italicize το κείμενο. + +Εισαγωγή Insert Tag + +Αυτό το tag υποδηλώνει εισηγμένο inserted κείμενο. + +Keyboard Tag + +Αυτό το ελάχιστο γνωστό κείμενο πληκτρολογίου keyboard Tag, συνήθως μορφοποιείται όμοια με το <κώδικα code> tag. + +Προδιαμορφωμένο Preformatted Tag +

    Ο Δρόμος που δεν διάλεξα - The Road Not Taken

    +
    Robert Frost
    +	 Δυο δρόμοι διασταυρώθηκαν σ' ένα χρυσαφένιο δάσος ,
    +	 Και προς λύπη μου και τους δυο τα πόδια μου να ταξιδέψουν δεν μπορούσαν
    +	 Κι επί μακρόν εστάθηκα , καθώς ένας ήμουν ταξιδευτής μονάχος ,
    +	 κι έστρεψα το βλέμμα μου στον πρώτο όσο να χαθεί στο βάθος
    +	 μέχρι εκεί που χάνονταν στα άγρια χόρτα που βλαστούσαν.
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	και μία μακριά, πάρα πολύ μακριά, υπερβολικά μακροσκελής δίχως νόημα πρόταση για να δούμε πως το χειρίζεται το θέμα εμφάνισης και αν αναδιπλώνεται, κρύβεται ή ξεχειλίζει;
    +
    +Quote Tag for short, inline quotes + +Προγραμματιστές, προγραμματιστές, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +Αυτή η ετικέτα είναι με διαγράμμιση strike-through κείμενο text. + +Μικρά Small Tag + +Αυτή η ετικέτα είναι μικρότερο smaller κείμενο text. + +Strong Tag + +Αυτή η ετικέτα δείχνει έντονο bold κείμενο text. + +Subscript Tag + +Getting our science styling on with H2 δύοO, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2 δύο, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +Αυτή η ετικέτα δείχνει τυλετυπος teletype κείμενο, which is usually styled like the <κώδικα code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +Αυτή η ετικέτα δείχνει υπογράμμιση underlined text. + +Variable Tag + +Αυτή η ετικέτα δείχνει παράμετροι variables.]]>
    + + 1809 + + + + + + + 0 + 0 + + + 0 + + + + + + + + +
    + + Επίπεδο 2 -Second Greek level + https://wpthemetestdata.wordpress.com//greek/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-2/ + Fri, 14 Feb 2020 10:31:47 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1811 + + + + 1811 + + + + + + + 1809 + 0 + + + 0 + + + + + + + + + + + Επίπεδο 3 + https://wpthemetestdata.wordpress.com/greek/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-2/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-3/ + Fri, 14 Feb 2020 10:32:50 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1813 + + + + 1813 + + + + + + + 1811 + 0 + + + 0 + + + + + + + + + + + <![CDATA[WP 6.1 Font size scale]]> + https://wpthemetestdata.wordpress.com/wp-6-1-font-size-scale/ + Mon, 16 Jan 2023 07:08:31 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-font-size-scale/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Small H2 Heading

    + + + +

    Medium H2 Heading

    + + + +

    Large H2 Heading

    + + + +

    Extra Large H2 Heading

    + + + +

    Small paragraph

    + + + +

    Medium paragraph

    + + + +

    Large paragraph

    + + + +

    Extra Large paragraph

    +]]> +
    + + 163 + + + + + + + + + 0 + 0 + + + 0 + + + + + + +
    + + <![CDATA[WP 6.1 spacing presets]]> + https://wpthemetestdata.wordpress.com/wp-6-1-spacing-presets/ + Mon, 16 Jan 2023 06:56:53 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-spacing-presets/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    On this page, some group blocks have border or background color set to increase visibility.

    + + + +
    +

    This group has a no background color and no additional spacing set.

    +
    + + + +
    +

    This group has a background color but no additional spacing set.

    +
    + + + +
    +

    This group has a 1px border and padding preset 1

    +
    + + + +
    +

    This group has padding preset 1

    +
    + + + +
    +

    This group has a 1px border and padding preset 2

    +
    + + + +
    +

    This group has a background color and padding preset 3

    +
    + + + +
    +

    This group has a background color and padding preset 4

    +
    + + + +
    +

    This group has a background color and padding preset 5

    +
    + + + +
    +

    This group has a background color and padding preset 6

    +
    + + + +
    +

    This group has a background color and padding preset 7

    +
    + + + +
    +

    This group has padding preset 7

    +
    + + + +
    +

    This group has a background color and margin preset 1

    +
    + + + +
    +

    This group has a background color and margin preset 2

    +
    + + + +
    +

    This group has a background color and margin preset 3

    +
    + + + +
    +

    This group has a background color and margin preset 4

    +
    + + + +
    +

    This group has a background color and margin preset 5

    +
    + + + +
    +

    This group has a background color and margin preset 6

    +
    + + + +
    +

    This group has a background color and margin preset 7

    +
    + + + +
    +

    This group has a 1px border, padding preset 4 and margin preset 4

    +
    + + + +
    +

    This group has padding preset 4 and margin preset 4

    +
    +]]>
    + + 150 + + + + + + + + + 0 + 0 + + + 0 + + + + + + +
    + + <![CDATA[WP 6.1 Theme block category]]> + https://wpthemetestdata.wordpress.com/wp-6-1-theme-block-category/ + Fri, 13 Jan 2023 18:38:05 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-theme-block-category/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Navigation block with page list:

    + + + + + + + +

    Site logo:

    + + + + + +

    Site title:

    + + + + + +

    Tagline block:

    + + + + + +

    Query loop "Title & Date" variation:

    + + + +
    + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Title & Excerpt" variation:

    + + + +
    + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Title, Date & Excerpt" variation:

    + + + +
    + + + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Image, Date & Title" variation:

    + + + +
    + + + + + + + + + + + + + + + + + +

    + +
    + + + +

    Avatar block:

    + + + + + +

    Post title block:

    + + + + + +

    Post excerpt:

    + + + + + +

    Post featured image:

    + + + + + +

    Post author:

    + + + + + +

    Post date:

    + + + + + +

    Categories:

    + + + + + +

    Tags:

    + + + + + +

    Next post & previous post:

    + + + + + + + +

    Read More:

    + + + + + +

    Comments block:

    + + + +
    + + + +
    +
    + + + +
    + + +
    + +
    + + + + +
    +
    + + + + + + + + + + + + + + +

    Post comments form block:

    +
    + + + + + +

    Login/out:

    + + + + + + + + + + + +

    Author biography block:

    + + + + + + + + + +

    Term description, archive title, search results title can not be shown on single posts.

    +]]>
    + + 51 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + + + + 2 + + + https://wpthemetestdata.wordpress.com/ + + + + + + + 0 + 0 + +
    + + <![CDATA[WP 6.1 Widgets block category]]> + https://wpthemetestdata.wordpress.com/wp-6-1-widgets-block-category/ + Fri, 13 Jan 2023 18:22:21 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-widgets-block-category/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Archives block:

    + + + + + + + +

    Categories list:

    + + + + + +

    Custom HTML:

    + + + + test + + + +

    Latest comments:

    + + + + + +

    Latest posts:

    + + + + + +

    Page list block:

    + + + + + +

    RSS block:

    + + + + + + + + + + + + + + + +

    Shortcode block:

    + + + + + +

    Social links:

    + + + + + + + + + + + + + + + +

    Tag cloud:

    + + + + + +

    +]]>
    + + 34 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Design category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-design-category-blocks/ + Fri, 13 Jan 2023 18:03:23 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-design-category-blocks/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + + + + + +
    +
    +

    One single column inside a columns block.

    +
    +
    + + + +
    +
    +

    Column one. The background color is on the single column.

    +
    + + + +
    +

    Column two

    +
    +
    + + + +
    +
    +

    Column one. The background color is on the parent columns block.

    +
    + + + +
    +

    Column two

    +
    + + + +
    +

    Column three

    +
    +
    + + + +
    +

    Group with paragraph inside. Below are the group block variations:

    +
    + + + +
    +

    Row

    + + + +

    Row

    +
    + + + +
    +

    Stack

    + + + +

    Stack

    +
    + + + +

    More block:

    + + + + + + + +

    Page break:

    + + + + + + + +

    Separators:

    + + + +

    Default style, no alignment:

    + + + +
    + + + +

    Default style, wide alignment:

    + + + +
    + + + +

    Default style, full width:

    + + + +
    + + + +

    Default style, align center:

    + + + +
    + + + +

    Wide style, no alignment:

    + + + +
    + + + +

    Wide style, wide alignment:

    + + + +
    + + + +

    Wide style, full width:

    + + + +
    + + + +

    Wide style, align center:

    + + + +
    + + + +

    Dotted style, no alignment:

    + + + +
    + + + +

    Dotted style, wide alignment:

    + + + +
    + + + +

    Dotted style, full width:

    + + + +
    + + + +

    Dotted style, align center:

    + + + +
    + + + +

    Spacer:

    + + + + +]]>
    + + 24 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Media category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-media-category-blocks/ + Fri, 13 Jan 2023 18:02:28 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-media-category-blocks/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Image block:

    + + + +
    dsc20050727_091048_222
    + + + +

    Gallery:

    + + + + + + + +

    Audio:

    + + + +
    + + + +

    Cover:

    + + + +
    Wind Farm
    +

    Write title...

    +
    + + + +
    +

    Fixed background

    +
    + + + +
    +

    Repeated background

    +
    + + + +
    +

    Fixed and Repeated background

    +
    + + + +
    dsc20050727_091048_222
    +

    Duotone

    +
    + + + +
    Rain Ripples
    +

    Top left

    +
    + + + +
    Rain Ripples
    +

    Top center

    +
    + + + +
    Rain Ripples
    +

    Top right

    +
    + + + +
    Rain Ripples
    +

    Center left

    +
    + + + +
    Rain Ripples
    +

    Center right

    +
    + + + +
    Rain Ripples
    +

    Bottom left

    +
    + + + +
    Rain Ripples
    +

    Bottom center

    +
    + + + +
    Rain Ripples
    +

    Bottom right

    +
    + + + + + + + +
    Boardwalk
    +

    This is the Media & Text block with an image on the left.

    +
    + + + +
    Image Alignment 1200x4002
    +

    This is the Media & Text block with a cropped image on the left

    +
    + + + +
    +

    This is the Media & Text block with a video the right.

    +
    + + + +
    +]]>
    + + 21 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Text category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-text-category-blocks/ + Fri, 13 Jan 2023 17:46:19 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-text-category-blocks + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Paragraph

    + + + +

    H1 Heading

    + + + +

    H2 Heading

    + + + +

    H3 Heading

    + + + +

    H4 Heading

    + + + +
    H5 Heading
    + + + +
    H6 Heading
    + + + +
      +
    • List
    • + + + +
    • List
    • +
    + + + +
      +
    1. List
    2. + + + +
    3. List
    4. +
    + + + +
      +
    1. List +
        +
      • List
      • +
      +
    2. +
    + + + +
    +

    Quote block

    +citation
    + + +

    classic block

    + + +
    code block
    + + + +
    Preformatted block
    + + + +

    Pull quote

    Citation
    + + + +
    table celltable cell two
    table cell threetable cell four
    Table caption
    + + + +
    header label oneheader label two
    table celltable cell two
    table cell threetable cell four
    footer label onefooter label two
    Table caption
    + + + +
    Verse block
    +]]>
    + + 8 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + +
    + + Keyboard navigation + https://wpthemetestdata.wordpress.com/2018/10/20/keyboard-navigation/ + Sun, 21 Oct 2018 03:03:48 +0000 + + https://wpthemetestdata.wordpress.com/?p=1724 + + +

    There are many different ways to use the web besides a mouse and a pair of eyes. Users navigate for example with a keyboard only or with their voice.

    + + + +

    All the functionality, including menus, links and forms should work using a keyboard only. This is essential for all assistive technology to work properly. The only way to test this, at the moment, is manually. The best time to test this is during development.

    + + + +

    How to keyboard test:

    + + + +

    Tab through your pages, links and forms to do the following tests:

    + + + +
    • Confirm that all links can be reached and activated via keyboard, including any in dropdown submenus.
    • Confirm that all links get a visible focus indicator (e.g., a border highlight).
    • Confirm that all visually hidden links (e.g. skip links) become visible when in focus.
    • Confirm that all form input fields and buttons can be accessed and used via keyboard.
    • Confirm that all interactions, buttons, and other controls can be triggered via keyboard — any action you can complete with a mouse must also be performable via keyboard.
    • Confirm that focus doesn’t move in unexpected ways around the page.
    • Confirm that using shift+tab to move backwards works as well.
    + + + +

    Resources

    + + + + +]]>
    + + 1724 + + + + + + + 0 + 0 + + + + 0 +
    + + About The Tests + https://wpthemetestdata.wordpress.com/about/ + Mon, 26 Jul 2010 02:40:01 +0000 + themedemos + https://wpthemetestdata.wordpress.com/about/ + + WordPress Theme Development Resources + +
      +
    1. See the WordPress Theme Developer Handbook for examples of best practices.
    2. +
    3. See the WordPress Code Reference for more information about WordPress' functions, classes, methods, and hooks.
    4. +
    5. See Theme Unit Test for a robust test suite for your Theme and get the latest version of the test data you see here.
    6. +
    7. See Releasing Your Theme for a guide to submitting your Theme to the Theme Directory.
    8. +
    ]]>
    + + 2 + 2010-07-25 19:40:01 + 2010-07-26 02:40:01 + closed + closed + about + publish + 0 + 1 + page + + 0 +
    + + Lorem Ipsum + https://wpthemetestdata.wordpress.com/lorem-ipsum/ + Tue, 04 Sep 2007 16:52:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/lorem-ipsum/ + + + + 146 + 2007-09-04 09:52:50 + 2007-09-04 16:52:50 + closed + closed + lorem-ipsum + publish + 0 + 7 + page + + 0 + + + Page with comments + https://wpthemetestdata.wordpress.com/about/page-with-comments/ + Tue, 04 Sep 2007 17:47:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/page-with-comments/ + + + + 155 + 2007-09-04 10:47:47 + 2007-09-04 17:47:47 + open + closed + page-with-comments + publish + 2 + 3 + page + + 0 + + 167 + + anon@example.com + + + 2007-09-04 10:49:28 + 2007-09-04 00:49:28 + + 1 + + 0 + 0 + + + 168 + + tellyworth+test2@example.com + + + 2007-09-04 10:49:03 + 2007-09-04 00:49:03 + + 1 + + 0 + 0 + + + 169 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2007-09-04 10:48:51 + 2007-09-04 17:48:51 + + 1 + + 0 + 0 + + + 1017 + + themereviewteam@gmail.com + + + 2014-12-10 01:56:24 + 2014-12-10 08:56:24 + + 0 + + 168 + 0 + + + + Page with comments disabled + https://wpthemetestdata.wordpress.com/about/page-with-comments-disabled/ + Tue, 04 Sep 2007 17:48:10 +0000 + themedemos + https://wpthemetestdata.wordpress.com/page-with-comments-disabled/ + + + + 156 + 2007-09-04 10:48:10 + 2007-09-04 17:48:10 + closed + closed + page-with-comments-disabled + publish + 2 + 4 + page + + 0 + + + Level 3 + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3/ + Tue, 11 Dec 2007 06:23:16 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-3/ + + + + 172 + 2007-12-11 16:23:16 + 2007-12-11 06:23:16 + closed + closed + level-3 + publish + 173 + 0 + page + + 0 + + + Level 2 + https://wpthemetestdata.wordpress.com/level-1/level-2/ + Tue, 11 Dec 2007 06:23:33 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-2/ + + + + 173 + 2007-12-11 16:23:33 + 2007-12-11 06:23:33 + closed + closed + level-2 + publish + 174 + 0 + page + + 0 + + + Level 1 + https://wpthemetestdata.wordpress.com/level-1/ + Tue, 11 Dec 2007 23:25:40 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-1/ + + + + 174 + 2007-12-11 16:25:40 + 2007-12-11 23:25:40 + closed + closed + level-1 + publish + 0 + 5 + page + + 0 + + + Clearing Floats + https://wpthemetestdata.wordpress.com/about/clearing-floats/ + Sun, 01 Aug 2010 16:42:26 +0000 + themedemos + https://wpthemetestdata.wordpress.com/ + + This is the second page]]> + + 501 + 2010-08-01 09:42:26 + 2010-08-01 16:42:26 + closed + closed + clearing-floats + publish + 2 + 2 + page + + 0 + + + canola2 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/canola2/ + Mon, 16 Jun 2008 13:17:54 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/canola2.jpg + + + + 611 + 2008-06-16 06:17:54 + 2008-06-16 13:17:54 + open + closed + canola2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/canola2.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + dsc20050727_091048_222 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050727_091048_222/ + Mon, 16 Jun 2008 13:20:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050727_091048_222.jpg + + + + 616 + 2008-06-16 06:20:37 + 2008-06-16 13:20:37 + open + closed + dsc20050727_091048_222 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050727_091048_222.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + dsc20050813_115856_52 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050813_115856_52/ + Mon, 16 Jun 2008 13:20:57 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050813_115856_52.jpg + + + + 617 + 2008-06-16 06:20:57 + 2008-06-16 13:20:57 + open + closed + dsc20050813_115856_52 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050813_115856_52.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Front Page + https://wpthemetestdata.wordpress.com/front-page/ + Sat, 21 May 2011 01:49:43 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=701 + + + + 701 + 2011-05-20 18:49:43 + 2011-05-21 01:49:43 + open + closed + front-page + publish + 0 + 0 + page + + 0 + + + a Blog page + https://wpthemetestdata.wordpress.com/blog/ + Sat, 21 May 2011 01:51:43 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=703 + + + + 703 + 2011-05-20 18:51:43 + 2011-05-21 01:51:43 + open + closed + blog + publish + 0 + 0 + page + + 0 + + 1016 + + example@example.com + + + 2014-11-29 21:03:05 + 2014-11-30 04:03:05 + + 0 + + 0 + 0 + + + + Bell on Wharf + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/100_5478/ + Mon, 16 Jun 2008 21:34:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/100_5478.jpg + + + + 754 + 2008-06-16 14:34:50 + 2008-06-16 21:34:50 + open + closed + 100_5478 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/100_5478.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Golden Gate Bridge + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/100_5540/ + Mon, 16 Jun 2008 21:35:55 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/100_5540.jpg + + + + 755 + 2008-06-16 14:35:55 + 2008-06-16 21:35:55 + open + closed + 100_5540 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/100_5540.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sunburst Over River + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/cep00032/ + Mon, 16 Jun 2008 21:41:24 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/cep00032.jpg + + + + 756 + 2008-06-16 14:41:24 + 2008-06-16 21:41:24 + open + closed + cep00032 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/cep00032.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Boardwalk + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dcp_2082/ + Mon, 16 Jun 2008 21:41:27 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dcp_2082.jpg + + + + 757 + 2008-06-16 14:41:27 + 2008-06-16 21:41:27 + open + closed + dcp_2082 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dcp_2082.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Yachtsody in Blue + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc03149/ + Mon, 16 Jun 2008 21:41:33 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc03149.jpg + + + + 758 + 2008-06-16 14:41:33 + 2008-06-16 21:41:33 + open + closed + dsc03149 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc03149.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Rain Ripples + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc04563/ + Mon, 16 Jun 2008 21:41:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc04563.jpg + + + + 759 + 2008-06-16 14:41:37 + 2008-06-16 21:41:37 + open + closed + dsc04563 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc04563.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sydney Harbor Bridge + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc09114/ + Mon, 16 Jun 2008 21:41:41 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc09114.jpg + + + + 760 + 2008-06-16 14:41:41 + 2008-06-16 21:41:41 + open + closed + dsc09114 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc09114.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Wind Farm + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050102_192118_51/ + Mon, 16 Jun 2008 21:41:42 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050102_192118_51.jpg + + + + 761 + 2008-06-16 14:41:42 + 2008-06-16 21:41:42 + open + closed + dsc20050102_192118_51 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050102_192118_51.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Antique Farm Machinery + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20051220_160808_102/ + Mon, 16 Jun 2008 21:41:45 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_160808_102.jpg + + + + 762 + 2008-06-16 14:41:45 + 2008-06-16 21:41:45 + open + closed + dsc20051220_160808_102 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_160808_102.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Rusty Rail + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20051220_173257_119/ + Mon, 16 Jun 20081 21:47:17 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_173257_119.jpg + + + + 764 + 2008-06-16 14:47:17 + 2008-06-16 21:47:17 + open + closed + dsc20051220_173257_119 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_173257_119.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sea and Rocks + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dscn3316/ + Mon, 16 Jun 2008 21:47:20 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dscn3316.jpg + + + + 765 + 2008-06-16 14:47:20 + 2008-06-16 21:47:20 + open + closed + dscn3316 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dscn3316.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Big Sur + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/michelle_049/ + Mon, 16 Jun 2008 21:47:23 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/michelle_049.jpg + + + + 766 + 2008-06-16 14:47:23 + 2008-06-16 21:47:23 + open + closed + michelle_049 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/michelle_049.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Windmill + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dcf-1-0/ + Mon, 16 Jun 2008 21:47:26 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/windmill.jpg + + + + 767 + 2008-06-16 14:47:26 + 2008-06-16 21:47:26 + open + closed + dcf-1-0 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/windmill.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Huatulco Coastline + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/alas-i-have-found-my-shangri-la/ + Mon, 16 Jun 2008 21:49:48 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0513-1.jpg + + + + 768 + 2008-06-16 14:49:48 + 2008-06-16 21:49:48 + open + closed + alas-i-have-found-my-shangri-la + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0513-1.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Brazil Beach + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_0747/ + Mon, 16 Jun 2008 21:50:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0747.jpg + + + + 769 + 2008-06-16 14:50:37 + 2008-06-16 21:50:37 + open + closed + img_0747 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0747.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Huatulco Coastline + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_0767/ + Mon, 16 Jun 2008 21:51:19 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0767.jpg + + + + 770 + 2008-06-16 14:51:19 + 2008-06-16 21:51:19 + open + closed + img_0767 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0767.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Boat Barco Texture + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_8399/ + Mon, 16 Jun 2008 21:51:57 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_8399.jpg + + + + 771 + 2008-06-16 14:51:57 + 2008-06-16 21:51:57 + open + closed + img_8399 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_8399.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Resinous + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20040724_152504_532-2/ + Mon, 04 Jun 2012 18:36:56 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg + + + + 807 + 2012-06-04 11:36:56 + 2012-06-04 18:36:56 + open + closed + dsc20040724_152504_532-2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg + + _attachment_original_parent_id + + + + + St. Louis Blues + https://wpthemetestdata.wordpress.com/2010/07/02/post-format-audio/originaldixielandjazzbandwithalbernard-stlouisblues/ + Mon, 16 Jun 2008 16:49:29 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3 + + + + 821 + 2008-06-16 09:49:29 + 2008-06-16 16:49:29 + open + closed + originaldixielandjazzbandwithalbernard-stlouisblues + inherit + 587 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3 + + + OLYMPUS DIGITAL CAMERA + https://wpthemetestdata.wordpress.com/about/clearing-floats/olympus-digital-camera/ + Thu, 05 Aug 2010 18:07:34 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2010/08/manhattansummer.jpg + + + + 827 + 2010-08-05 11:07:34 + 2010-08-05 18:07:34 + open + closed + olympus-digital-camera + inherit + 501 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2010/08/manhattansummer.jpg + + + Image Alignment 580x300 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-580x300/ + Fri, 15 Mar 2013 00:44:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg + + + + 967 + 2013-03-14 19:44:50 + 2013-03-15 00:44:50 + open + open + image-alignment-580x300 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Image Alignment 150x150 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-150x150/ + Fri, 15 Mar 2013 00:44:49 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg + + + + 968 + 2013-03-14 19:44:49 + 2013-03-15 00:44:49 + open + open + image-alignment-150x150 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Horizontal Featured Image + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-horizontal/featured-image-horizontal-2/ + Fri, 15 Mar 2013 20:40:38 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-horizontal.jpg + + + + 1022 + 2013-03-15 15:40:38 + 2013-03-15 20:40:38 + open + open + featured-image-horizontal-2 + inherit + 1011 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-horizontal.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + I Am Worth Loving Wallpaper + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/soworthloving-wallpaper/ + Thu, 14 Mar 2013 14:58:24 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/soworthloving-wallpaper.jpg + + + + 1023 + 2013-03-14 09:58:24 + 2013-03-14 14:58:24 + open + open + soworthloving-wallpaper + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/soworthloving-wallpaper.jpg + + _wp_attachment_image_alt + + + + + Image Alignment 300x200 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-300x200/ + Fri, 15 Mar 2013 00:44:49 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg + + + + 1025 + 2013-03-14 19:44:49 + 2013-03-15 00:44:49 + open + open + image-alignment-300x200 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Vertical Featured Image + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-vertical/featured-image-vertical-2/ + Fri, 15 Mar 2013 20:41:09 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-vertical.jpg + + + + 1027 + 2013-03-15 15:41:09 + 2013-03-15 20:41:09 + open + open + featured-image-vertical-2 + inherit + 1016 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-vertical.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Image Alignment 1200x4002 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-1200x4002/ + Fri, 15 Mar 2013 00:44:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg + + + + 1029 + 2013-03-14 19:44:50 + 2013-03-15 00:44:50 + open + open + image-alignment-1200x4002 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Unicorn Wallpaper + https://wpthemetestdata.wordpress.com/2010/08/08/post-format-image/unicorn-wallpaper/ + Fri, 14 Dec 2012 03:10:39 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2012/12/unicorn-wallpaper.jpg + + + + 1045 + 2012-12-13 22:10:39 + 2012-12-14 03:10:39 + open + open + unicorn-wallpaper + inherit + 1158 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2012/12/unicorn-wallpaper.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Pages + https://wpthemetestdata.wordpress.com/2013/04/09/pages/ + Tue, 09 Apr 2013 13:37:45 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/pages + + + + 1100 + 2013-04-09 06:37:45 + 2013-04-09 13:37:45 + open + closed + pages + publish + 0 + 2 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Categories + https://wpthemetestdata.wordpress.com/2013/04/09/categories/ + Tue, 09 Apr 2013 13:37:45 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/categories + + + + 1101 + 2013-04-09 06:37:45 + 2013-04-09 13:37:45 + open + closed + categories + publish + 0 + 10 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1112/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1112</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test markup tags and styles.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1112</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1112</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>21</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[4675]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1115/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1115</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test post formats.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1115</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1115</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>24</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[44090582]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1118/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1118</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test unpublished posts.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1118</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1118</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>28</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[54090]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>Depth + https://wpthemetestdata.wordpress.com/2013/04/09/depth/ + Tue, 09 Apr 2013 13:37:46 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/depth + + + + 1119 + 2013-04-09 06:37:46 + 2013-04-09 13:37:46 + open + closed + depth + publish + 0 + 29 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 01 + https://wpthemetestdata.wordpress.com/2013/04/09/level-01/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-01 + + + + 1120 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-01 + publish + 0 + 30 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 02 + https://wpthemetestdata.wordpress.com/2013/04/09/level-02/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-02 + + + + 1121 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-02 + publish + 0 + 31 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 03 + https://wpthemetestdata.wordpress.com/2013/04/09/level-03/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-03 + + + + 1122 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-03 + publish + 0 + 32 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 04 + https://wpthemetestdata.wordpress.com/2013/04/09/level-04/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-04 + + + + 1123 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-04 + publish + 0 + 33 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 05 + https://wpthemetestdata.wordpress.com/2013/04/09/level-05/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-05 + + + + 1124 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-05 + publish + 0 + 34 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 06 + https://wpthemetestdata.wordpress.com/2013/04/09/level-06/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-06 + + + + 1125 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-06 + publish + 0 + 35 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 07 + https://wpthemetestdata.wordpress.com/2013/04/09/level-07/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-07 + + + + 1126 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-07 + publish + 0 + 36 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 08 + https://wpthemetestdata.wordpress.com/2013/04/09/level-08/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-08 + + + + 1127 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-08 + publish + 0 + 37 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 09 + https://wpthemetestdata.wordpress.com/2013/04/09/level-09/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-09 + + + + 1128 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-09 + publish + 0 + 38 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 10 + https://wpthemetestdata.wordpress.com/2013/04/09/level-10/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-10 + + + + 1129 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-10 + publish + 0 + 39 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Advanced + https://wpthemetestdata.wordpress.com/2013/04/09/advanced/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/advanced + + + + 1130 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + advanced + publish + 0 + 40 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu Description + https://wpthemetestdata.wordpress.com/2013/04/09/menu-description/ + Tue, 09 Apr 2013 13:37:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-description + + + + 1142 + 2013-04-09 06:37:50 + 2013-04-09 13:37:50 + open + closed + menu-description + publish + 0 + 44 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu Title Attribute + https://wpthemetestdata.wordpress.com/2013/04/09/menu-title-attribute/ + Tue, 09 Apr 2013 13:37:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-title-attribute + + + + 1143 + 2013-04-09 06:37:50 + 2013-04-09 13:37:50 + open + closed + menu-title-attribute + publish + 0 + 41 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu CSS Class + https://wpthemetestdata.wordpress.com/2013/04/09/menu-css-class/ + Tue, 09 Apr 2013 13:37:51 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-css-class + + + + 1144 + 2013-04-09 06:37:51 + 2013-04-09 13:37:51 + open + closed + menu-css-class + publish + 0 + 42 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + New Window / Tab + https://wpthemetestdata.wordpress.com/2013/04/09/new-window-tab/ + Tue, 09 Apr 2013 13:37:51 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/new-window-tab + + + + 1145 + 2013-04-09 06:37:51 + 2013-04-09 13:37:51 + open + closed + new-window-tab + publish + 0 + 43 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1263/</link> + <pubDate>Tue, 09 Apr 2013 13:38:00 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1263</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1263</wp:post_id> + <wp:post_date>2013-04-09 06:38:00</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:38:00</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1263</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1100]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1264/</link> + <pubDate>Tue, 09 Apr 2013 13:38:01 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1264</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1264</wp:post_id> + <wp:post_date>2013-04-09 06:38:01</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:38:01</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1264</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1100]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>twitter.com + https://wpthemetestdata.wordpress.com/2018/10/20/twitter-com/ + Sun, 21 Oct 2018 02:57:33 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/twitter-com/ + + + + 1719 + + + + + + + 0 + 1 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + facebook.com + https://wpthemetestdata.wordpress.com/2018/10/20/facebook-com/ + Sun, 21 Oct 2018 02:57:35 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/facebook-com/ + + + + 1720 + + + + + + + 0 + 2 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + github.com + https://wpthemetestdata.wordpress.com/2018/10/20/github-com/ + Sun, 21 Oct 2018 02:57:37 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/github-com + + + + 1721 + + + + + + + 0 + 3 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + instagram.com + https://wpthemetestdata.wordpress.com/2018/10/20/instagram-com + Sun, 21 Oct 2018 02:57:41 +000 + themereviewteam> + https://wpthemetestdata.wordpress.com/2018/10/20/instagram-com + + + + 1723 + + + + + + + 0 + 5 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + linkedin.com + https://wpthemetestdata.wordpress.com/2018/10/20/linkedin-com/ + Sun, 21 Oct 2018 02:57:39 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/linkedin-com/ + + + + 1722 + + + + + + + 0 + 4 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + triforce-wallpaper + https://wpthemetestdata.wordpress.com/2010/08/07/post-format-image-caption/triforce-wallpaper/ + Tue, 17 Aug 2010 20:17:31 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2010/08/triforce-wallpaper.jpg + + + + 1628 + 2010-08-17 13:17:31 + 2010-08-17 20:17:31 + open + closed + triforce-wallpaper + inherit + 1163 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2010/08/triforce-wallpaper.jpg + + + + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1636/</link> + <pubDate>Tue, 07 May 2013 19:54:30 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1636</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1636</wp:post_id> + <wp:post_date>2013-05-07 12:54:30</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:30</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1636</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1637/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1637</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1637</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1637</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1638/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1638</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1638</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1638</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1639/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1639</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1639</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1639</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1640/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1640</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1640</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1640</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1641/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1641</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1641</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1641</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1643/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1643</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1643</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1643</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1644/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1644</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1644</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1644</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[701]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1645/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1645</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1645</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1645</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1646/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1646</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1646</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1646</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1647/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1647</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1647</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1647</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1648/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1648</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1648</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1648</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1649/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1649</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1649</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1649</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1650/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1650</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1650</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1650</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1651/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1651</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1651</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1651</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>10</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[174]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1652/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1652</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1652</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1652</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>11</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[173]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1653/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1653</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1653</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1653</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>12</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[172]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1654/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1654</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1654</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1654</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>13</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[746]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1655/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1655</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1655</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1655</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>14</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[748]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1656/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1656</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1656</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1656</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>15</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[742]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1657/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1657</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1657</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1657</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>16</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[744]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1658/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1658</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1658</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1658</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>17</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1659/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1659</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1659</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1659</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>18</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[733]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1660/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1660</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1660</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1660</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>19</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[735]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1643/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1643</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1643</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1643</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1644/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1644</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1644</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1644</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[701]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1645/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1645</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1645</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1645</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1646/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1646</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1646</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1646</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1647/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1647</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1647</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1647</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1648/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1648</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1648</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1648</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1649/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1649</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1649</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1649</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1650/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1650</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1650</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1650</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1651/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1651</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1651</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1651</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>10</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[174]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1652/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1652</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1652</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1652</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>11</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[173]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1653/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1653</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1653</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1653</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>12</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[172]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1654/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1654</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1654</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1654</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>13</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[746]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1655/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1655</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1655</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1655</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>14</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[748]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1656/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1656</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1656</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1656</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>15</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[742]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1657/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1657</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1657</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1657</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>16</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[744]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1658/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1658</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1658</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1658</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>17</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1659/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1659</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1659</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1659</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>18</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[733]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1660/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1660</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1660</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1660</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>19</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[735]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>dsc20040724_152504_532 + https://wpthemetestdata.wordpress.com/?attachment_id=1686 + Wed, 18 Sep 2013 21:37:05 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20040724_152504_532.jpg + + + + 1686 + 2013-09-18 14:37:05 + 2013-09-18 21:37:05 + open + closed + dsc20040724_152504_532 + inherit + 0 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20040724_152504_532.jpg + + + dsc20050604_133440_34211 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050604_133440_34211/ + Wed, 18 Sep 2013 21:37:07 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20050604_133440_34211.jpg + + + + 1687 + 2013-09-18 14:37:07 + 2013-09-18 21:37:07 + open + closed + dsc20050604_133440_34211 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20050604_133440_34211.jpg + + + 2014-slider-mobile-behavior + https://wpthemetestdata.wordpress.com/?attachment_id=1690 + Wed, 04 Dec 2013 18:08:29 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/12/2014-slider-mobile-behavior.mov + + + + 1690 + 2013-12-04 11:08:29 + 2013-12-04 18:08:29 + open + closed + 2014-slider-mobile-behavior + inherit + 0 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/12/2014-slider-mobile-behavior.mov + + + dsc20050315_145007_132 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050315_145007_132-2/ + Sun, 05 Jan 2014 18:45:21 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2014/01/dsc20050315_145007_132.jpg + + + + 1691 + 2014-01-05 11:45:21 + 2014-01-05 18:45:21 + open + closed + dsc20050315_145007_132-2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2014/01/dsc20050315_145007_132.jpg + + + spectacles + https://wpthemetestdata.wordpress.com/about/clearing-floats/spectacles-2/ + Sun, 05 Jan 2014 18:45:36 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2014/01/spectacles.gif + + + + 1692 + 2014-01-05 11:45:36 + 2014-01-05 18:45:36 + open + closed + spectacles-2 + inherit + 501 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2014/01/spectacles.gif + + + Post Format: Standard + https://wpthemetestdata.wordpress.com/2010/10/05/post-format-standard/ + Tue, 05 Oct 2010 07:27:25 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=358 + + + +Mrs. Darling first heard of Peter when she was tidying up her children's minds. It is the nightly custom of every good mother after her children are asleep to rummage in their minds and put things straight for next morning, repacking into their proper places the many articles that have wandered during the day. + +If you could keep awake (but of course you can't) you would see your own mother doing this, and you would find it very interesting to watch her. It is quite like tidying up drawers. You would see her on her knees, I expect, lingering humorously over some of your contents, wondering where on earth you had picked this thing up, making discoveries sweet and not so sweet, pressing this to her cheek as if it were as nice as a kitten, and hurriedly stowing that out of sight. When you wake in the morning, the naughtiness and evil passions with which you went to bed have been folded up small and placed at the bottom of your mind and on the top, beautifully aired, are spread out your prettier thoughts, ready for you to put on. + +I don't know whether you have ever seen a map of a person's mind. Doctors sometimes draw maps of other parts of you, and your own map can become intensely interesting, but catch them trying to draw a map of a child's mind, which is not only confused, but keeps going round all the time. There are zigzag lines on it, just like your temperature on a card, and these are probably roads in the island, for the Neverland is always more or less an island, with astonishing splashes of colour here and there, and coral reefs and rakish-looking craft in the offing, and savages and lonely lairs, and gnomes who are mostly tailors, and caves through which a river runs, and princes with six elder brothers, and a hut fast going to decay, and one very small old lady with a hooked nose. It would be an easy map if that were all, but there is also first day at school, religion, fathers, the round pond, needle-work, murders, hangings, verbs that take the dative, chocolate pudding day, getting into braces, say ninety-nine, three-pence for pulling out your tooth yourself, and so on, and either these are part of the island or they are another map showing through, and it is all rather confusing, especially as nothing will stand still. + +Of course the Neverlands vary a good deal. John's, for instance, had a lagoon with flamingoes flying over it at which John was shooting, while Michael, who was very small, had a flamingo with lagoons flying over it. John lived in a boat turned upside down on the sands, Michael in a wigwam, Wendy in a house of leaves deftly sewn together. John had no friends, Michael had friends at night, Wendy had a pet wolf forsaken by its parents, but on the whole the Neverlands have a family resemblance, and if they stood still in a row you could say of them that they have each other's nose, and so forth. On these magic shores children at play are for ever beaching their coracles [simple boat]. We too have been there; we can still hear the sound of the surf, though we shall land no more. + +Of all delectable islands the Neverland is the snuggest and most compact, not large and sprawly, you know, with tedious distances between one adventure and another, but nicely crammed. When you play at it by day with the chairs and table-cloth, it is not in the least alarming, but in the two minutes before you go to sleep it becomes very real. That is why there are night-lights. + +Occasionally in her travels through her children's minds Mrs. Darling found things she could not understand, and of these quite the most perplexing was the word Peter. She knew of no Peter, and yet he was here and there in John and Michael's minds, while Wendy's began to be scrawled all over with him. The name stood out in bolder letters than any of the other words, and as Mrs. Darling gazed she felt that it had an oddly cocky appearance.]]> + + 358 + 2010-10-05 00:27:25 + 2010-10-05 07:27:25 + closed + closed + post-format-standard + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Gallery + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/ + Fri, 10 Sep 2010 14:24:14 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=555 + + + +You can use this page to test the Theme's handling of the gallery shortcode, including the columns parameter, from 1 to 9 columns. Themes are only required to support the default setting (3 columns), so this page is entirely optional. +

    One Column

    +[gallery columns="1"] +

    Two Columns

    +[gallery columns="2"] +

    Three Columns

    +[gallery columns="3"] +

    Four Columns

    +[gallery columns="4"] +

    Five Columns

    +[gallery columns="5"] +

    Six Columns

    +[gallery columns="6"] +

    Seven Columns

    +[gallery columns="7"] +

    Eight Columns

    +[gallery columns="8"] +

    Nine Columns

    +[gallery columns="9"]]]>
    + + 555 + 2010-09-10 07:24:14 + 2010-09-10 14:24:14 + closed + closed + post-format-gallery + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Post Format: Aside + https://wpthemetestdata.wordpress.com/2010/05/09/post-format-aside/ + Sun, 09 May 2010 14:51:54 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=559 + + + + 559 + 2010-05-09 07:51:54 + 2010-05-09 14:51:54 + closed + closed + post-format-aside + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Chat + https://wpthemetestdata.wordpress.com/2010/01/08/post-format-chat/ + Fri, 08 Jan 2010 14:59:31 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=562 + + + + 562 + 2010-01-08 07:59:31 + 2010-01-08 14:59:31 + closed + closed + post-format-chat + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Link + https://wpthemetestdata.wordpress.com/2010/03/07/post-format-link/ + Sun, 07 Mar 2010 15:06:53 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=565 + + The WordPress Theme Review Team Website]]> + + 565 + 2010-03-07 08:06:53 + 2010-03-07 15:06:53 + closed + closed + post-format-link + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Image (Linked) + https://wpthemetestdata.wordpress.com/2010/08/06/post-format-image-linked/ + Fri, 06 Aug 2010 15:09:39 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=568 + + chunk of resinous blackboy husk[/caption] +]]> + + 568 + 2010-08-06 08:09:39 + 2010-08-06 15:09:39 + closed + closed + post-format-image-linked + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Quote + https://wpthemetestdata.wordpress.com/2010/02/05/post-format-quote/ + Fri, 05 Feb 2010 15:13:15 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=575 + + Only one thing is impossible for God: To find any sense in any copyright law on the planet. +Mark Twain]]> + + 575 + 2010-02-05 08:13:15 + 2010-02-05 15:13:15 + closed + closed + post-format-quote + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Status + https://wpthemetestdata.wordpress.com/2010/04/04/post-format-status/ + Sun, 04 Apr 2010 15:21:24 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=579 + + + + 579 + 2010-04-04 08:21:24 + 2010-04-04 15:21:24 + closed + closed + post-format-status + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Video (WordPress.tv) + https://wpthemetestdata.wordpress.com/2010/06/03/post-format-video-wordpresstv/ + Thu, 03 Jun 2010 15:25:58 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=582 + + instructions in the Codex.]]> + + 582 + 2010-06-03 08:25:58 + 2010-06-03 15:25:58 + closed + closed + post-format-video-wordpresstv + publish + 0 + 0 + post + + 0 + + + + + + + + + _oembed_4321638fc1a6fee26443f7fe8a70a871 + ]]> + + + _oembed_29351fff85c1be1d1e9a965a0332a861 + ]]> + + + _oembed_9fcc86d7d9398ff736577f922307f64d + ]]> + + + _oembed_366237792d32461d0052efb2edec37f5 + ]]> + + + _oembed_37fdfe862c13c46a93be2921279bf675 + ]]> + + + + Post Format: Audio + https://wpthemetestdata.wordpress.com/2010/07/02/post-format-audio/ + Fri, 02 Jul 2010 15:36:44 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=587 + + St. Louis Blues + +Audio shortcode: + +[audio https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3]]]> + + 587 + 2010-07-02 08:36:44 + 2010-07-02 15:36:44 + closed + closed + post-format-audio + publish + 0 + 0 + post + + 0 + + + + + + + + enclosure + + + + + Page A + https://wpthemetestdata.wordpress.com/page-a/ + Fri, 24 Jun 2011 01:38:52 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=733 + + + + 733 + 2011-06-23 18:38:52 + 2011-06-24 01:38:52 + open + closed + page-a + publish + 0 + 10 + page + + 0 + + + Page B + https://wpthemetestdata.wordpress.com/page-b/ + Fri, 24 Jun 2011 01:39:14 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=735 + + + + 735 + 2011-06-23 18:39:14 + 2011-06-24 01:39:14 + open + closed + page-b + publish + 0 + 11 + page + + 0 + + + Level 2a + https://wpthemetestdata.wordpress.com/level-1/level-2a/ + Fri, 24 Jun 2011 02:03:33 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=742 + + + + 742 + 2011-06-23 19:03:33 + 2011-06-24 02:03:33 + open + closed + level-2a + publish + 174 + 0 + page + + 0 + + + Level 2b + https://wpthemetestdata.wordpress.com/level-1/level-2b/ + Fri, 24 Jun 2011 02:04:03 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=744 + + + + 744 + 2011-06-23 19:04:03 + 2011-06-24 02:04:03 + open + closed + level-2b + publish + 174 + 0 + page + + 0 + + + Level 3a + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3a/ + Fri, 24 Jun 2011 02:04:24 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=746 + + + + 746 + 2011-06-23 19:04:24 + 2011-06-24 02:04:24 + open + closed + level-3a + publish + 173 + 0 + page + + 0 + + + Level 3b + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3b/ + Fri, 24 Jun 2011 02:04:46 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=748 + + + + 748 + 2011-06-23 19:04:46 + 2011-06-24 02:04:46 + open + closed + level-3b + publish + 173 + 0 + page + + 0 + + + Template: Excerpt (Defined) + https://wpthemetestdata.wordpress.com/2012/03/15/template-excerpt-defined/ + Thu, 15 Mar 2012 21:38:08 +0000 + themedemos + http://wptest.io/demo/?p=993 + + should be displayed in place of the user-defined excerpt in single-page views.]]> + should be displayed in place of the post content in archive-index pages. It can be longer than the automatically generated excerpts, and can have HTML tags.]]> + 993 + 2012-03-15 14:38:08 + 2012-03-15 21:38:08 + closed + closed + template-excerpt-defined + publish + 0 + 0 + post + + 0 + + + + + + + + + Template: More Tag + https://wpthemetestdata.wordpress.com/2012/03/15/template-more-tag/ + Thu, 15 Mar 2012 21:41:11 +0000 + themedemos + http://wptest.io/demo/?p=996 + + more tag. + +Right after this sentence should be a "continue reading" button of some sort on list pages of themes that show full content. It won't show on single pages or on themes showing excerpts. + + + +And this content is after the more tag. (which should be the anchor link for when the button is clicked)]]> + + 996 + 2012-03-15 14:41:11 + 2012-03-15 21:41:11 + closed + closed + template-more-tag + publish + 0 + 0 + post + + 0 + + + + + + + + + Edge Case: Nested And Mixed Lists + https://wpthemetestdata.wordpress.com/2009/05/15/edge-case-nested-and-mixed-lists/ + Fri, 15 May 2009 21:48:32 +0000 + themedemos + http://wptest.io/demo/?p=1000 + + +
  • Lists within lists do not break the ordered list numbering order
  • +
  • Your list styles go deep enough.
  • + +

    Ordered - Unordered - Ordered

    +
      +
    1. ordered item
    2. +
    3. ordered item +
        +
      • unordered
      • +
      • unordered +
          +
        1. ordered item
        2. +
        3. ordered item
        4. +
        +
      • +
      +
    4. +
    5. ordered item
    6. +
    7. ordered item
    8. +
    +

    Ordered - Unordered - Unordered

    +
      +
    1. ordered item
    2. +
    3. ordered item +
        +
      • unordered
      • +
      • unordered +
          +
        • unordered item
        • +
        • unordered item
        • +
        +
      • +
      +
    4. +
    5. ordered item
    6. +
    7. ordered item
    8. +
    +

    Unordered - Ordered - Unordered

    +
      +
    • unordered item
    • +
    • unordered item +
        +
      1. ordered
      2. +
      3. ordered +
          +
        • unordered item
        • +
        • unordered item
        • +
        +
      4. +
      +
    • +
    • unordered item
    • +
    • unordered item
    • +
    +

    Unordered - Unordered - Ordered

    +
      +
    • unordered item
    • +
    • unordered item +
        +
      • unordered
      • +
      • unordered +
          +
        1. ordered item
        2. +
        3. ordered item
        4. +
        +
      • +
      +
    • +
    • unordered item
    • +
    • unordered item
    • +
    ]]>
    + + 1000 + 2009-05-15 14:48:32 + 2009-05-15 21:48:32 + closed + closed + edge-case-nested-and-mixed-lists + publish + 0 + 0 + post + + 0 + + + + + + + +
    + + Template: Featured Image (Horizontal) + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-horizontal/ + Thu, 15 Mar 2012 22:15:12 +0000 + themedemos + http://wptest.io/demo/?p=1011 + + featured image, if the theme supports it. + +Non-square images can provide some unique styling issues. + +This post tests a horizontal featured image.]]> + + 1011 + 2012-03-15 15:15:12 + 2012-03-15 22:15:12 + closed + closed + template-featured-image-horizontal + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + + + + Template: Featured Image (Vertical) + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-vertical/ + Thu, 15 Mar 2012 22:36:32 +0000 + themedemos + http://wptest.io/demo/?p=1016 + + featured image, if the theme supports it. + +Non-square images can provide some unique styling issues. + +This post tests a vertical featured image.]]> + + 1016 + 2012-03-15 15:36:32 + 2012-03-15 22:36:32 + closed + closed + template-featured-image-vertical + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + + + + Post Format: Gallery (Tiled) + https://wpthemetestdata.wordpress.com/2010/09/09/post-format-gallery-tiled/ + Fri, 10 Sep 2010 00:23:27 +0000 + themedemos + http://wptest.io/demo/?p=1031 + + Jetpack to test. + +[gallery type="rectangular" columns="4" ids="755,757,758,760,766,763" orderby="rand"] + +This is some text after the Tiled Gallery just to make sure that everything spaces nicely.]]> + + 1031 + 2010-09-09 17:23:27 + 2010-09-10 00:23:27 + closed + closed + post-format-gallery-tiled + publish + 0 + 0 + post + + 0 + + + + + + + + + + + Page Image Alignment + https://wpthemetestdata.wordpress.com/about/page-image-alignment/ + Fri, 15 Mar 2013 23:19:23 +0000 + themedemos + http://wptest.io/demo/?page_id=1080 + + None, Left, Right, and Center. In addition, they also get the options of Thumbnail, Medium, Large & Fullsize. Be sure to try this page in RTL mode and it should look the same as LTR. +

    Image Alignment 580x300

    +The image above happens to be centered. + +Image Alignment 150x150 The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see there should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +Image Alignment 1200x400 + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 1200x400 + +And we try the large image again, with the center alignment since that sometimes is a problem. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 300x200 + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And just when you thought we were done, we're going to do them all over again with captions! + +[caption id="attachment_906" align="aligncenter" width="580"]Image Alignment 580x300 Look at 580x300 getting some caption love.[/caption] + +The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky. + +[caption id="attachment_904" align="alignleft" width="150"]Image Alignment 150x150 Bigger caption than the image usually is.[/caption] + +The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +[caption id="attachment_907" align="alignnone" width="1200"]Image Alignment 1200x400 Comment for massive image for your eyeballs.[/caption] + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. +[caption id="attachment_907" align="aligncenter" width="1200"]Image Alignment 1200x400 This massive image is centered.[/caption] + +And again with the big image centered. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +[caption id="attachment_905" align="alignright" width="300"]Image Alignment 300x200 Feels good to be right all the time.[/caption] + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! Last thing is a small image aligned right. Whatever follows should be unaffected. Image Alignment 150x150]]>
    + + 1133 + 2013-03-15 18:19:23 + 2013-03-15 23:19:23 + open + open + page-image-alignment + publish + 2 + 0 + page + + 0 +
    + + Page Markup And Formatting + https://wpthemetestdata.wordpress.com/about/page-markup-and-formatting/ + Fri, 15 Mar 2013 23:20:05 +0000 + themedemos + http://wptest.io/demo/?page_id=1083 + + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    Jane$1Because that's all Steve Jobs needed for a salary.
    John$100KFor all the blogging he does.
    Jane$100MPictures are worth a thousand words, right? So Tom x 1,000.
    Jane$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    + Robert Frost
    +
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +This tag shows strike-through text. + +Small Tag + +This tag shows smaller text. + +Strong Tag + +This tag shows bold text. + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +This rarely used tag emulates teletype text, which is usually styled like the <code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +This tag shows underlined text. + +Variable Tag + +This allows you to denote variables.]]>
    + + 1134 + 2013-03-15 18:20:05 + 2013-03-15 23:20:05 + open + open + page-markup-and-formatting + publish + 2 + 0 + page + + 0 +
    + + Template: Comments + https://wpthemetestdata.wordpress.com/2012/01/03/template-comments/ + Tue, 03 Jan 2012 17:11:37 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/comment-test/ + + +
  • Threaded comments up to 10 levels deep
  • +
  • Paginated comments (set Settings > Discussion > Break comments into pages to 5 top level comments per page)
  • +
  • Comment markup / formatting
  • +
  • Comment images
  • +
  • Comment videos
  • +
  • Author comments
  • +
  • Gravatars and default fallbacks
  • +]]>
    + + 1148 + 2012-01-03 10:11:37 + 2012-01-03 17:11:37 + open + closed + template-comments + publish + 0 + 0 + post + + 0 + + + + + + + 881 + + example@example.org + http://example.org/ + + 2012-09-03 10:18:04 + 2012-09-03 17:18:04 + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    John Saddington$1Because that's all Steve Job' needed for a salary.
    Tom McFarlin$100KFor all the blogging he does.
    Jared Erickson$100MPictures are worth a thousand words, right? So Tom x 1,000.
    Chris Ames$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    + +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    +Robert Frost
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    + +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up.]]>
    + 1 + + 0 + 0 +
    + + 899 + + fake@example.com + + + 2013-03-11 23:45:54 + 2013-03-12 04:45:54 + Gravatar associated with it. + They did not speify a website, so there should be no link to it in the comment. +]]> + 1 + + 0 + 0 + + + 900 + + example@example.org + http://example.org/ + + 2013-03-12 13:17:35 + 2013-03-12 20:17:35 + + 1 + + 0 + 0 + + + 901 + + example@example.org + http://example.org + + 2013-03-14 07:53:26 + 2013-03-14 14:53:26 + + 1 + + 0 + 0 + + + 903 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 07:56:46 + 2013-03-14 14:56:46 + + 1 + + 0 + 24783058 + + + 904 + + example@example.org + http://example.org/ + + 2013-03-14 07:57:01 + 2013-03-14 14:57:01 + + 1 + + 0 + 0 + + + 905 + + example@example.org + http://example.org/ + + 2013-03-14 08:01:21 + 2013-03-14 15:01:21 + + 1 + + 904 + 0 + + + 906 + + example@example.org + http://example.org/ + + 2013-03-14 08:02:06 + 2013-03-14 15:02:06 + + 1 + + 905 + 0 + + + 907 + + example@example.org + http://example.org/ + + 2013-03-14 08:03:22 + 2013-03-14 15:03:22 + + 1 + + 906 + 0 + + + 910 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 08:10:29 + 2013-03-14 15:10:29 + + 1 + + 907 + 24783058 + + + 911 + + example@example.org + http://example.org/ + + 2013-03-14 08:12:16 + 2013-03-14 15:12:16 + + 1 + + 910 + 0 + + + 912 + + example@example.org + http://example.org/ + + 2013-03-14 08:12:58 + 2013-03-14 15:12:58 + + 1 + + 911 + 0 + + + 913 + + example@example.org + http://example.org/ + + 2013-03-14 08:13:42 + 2013-03-14 15:13:42 + + 1 + + 912 + 0 + + + 914 + + example@example.org + http://example.org/ + + 2013-03-14 08:14:13 + 2013-03-14 15:14:13 + + 1 + + 913 + 0 + + + 915 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 08:14:47 + 2013-03-14 15:14:47 + + 1 + + 914 + 24783058 + + + 917 + + example@example.org + http://example.org/ + + 2013-03-14 09:56:43 + 2013-03-14 16:56:43 + + If the image imports... + ]]> + 1 + + 0 + 0 + + + 918 + + example@example.org + http://example.org/ + + 2013-03-14 11:23:24 + 2013-03-14 18:23:24 + + 1 + + 0 + 0 + + + 919 + + example@example.org + http://example.org/ + + 2013-03-14 11:27:54 + 2013-03-14 18:27:54 + + 1 + + 0 + 0 + + + 920 + + example@example.org + http://example.org/ + + 2013-03-14 11:30:33 + 2013-03-14 18:30:33 + + 1 + + 0 + 24783058 + + + 1015 + + auser@example.com + + + 2014-09-29 02:52:15 + 2014-09-29 09:52:15 + + 0 + + 0 + 0 + +
    + + Template: Pingbacks And Trackbacks + https://wpthemetestdata.wordpress.com/2012/01/01/template-pingbacks-an-trackbacks/ + Sun, 01 Jan 2012 17:17:18 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/many-trackbacks/ + + +
  • Above the comments
  • +
  • Below the comments
  • +
  • Included within the normal flow of comments
  • +]]>
    + + 1149 + 2012-01-01 10:17:18 + 2012-01-01 17:17:18 + closed + closed + template-pingbacks-an-trackbacks + publish + 0 + 0 + post + + 0 + + + + + + + + + 921 + + + http://tellyworth.wordpress.com/2007/11/21/ping-1/ + + 2007-11-21 11:31:12 + 2007-11-21 01:31:12 + + 1 + trackback + 0 + 0 + + + 922 + + + http://tellyworth.wordpress.com/2007/11/21/ping-2-with-a-much-longer-title-than-the-previous-ping-which-was-called-ping-1/ + + 2007-11-21 11:35:47 + 2007-11-21 01:35:47 + + 1 + trackback + 0 + 0 + + + 923 + + + http://tellyworth.wordpress.com/2007/11/21/ping-4/ + + 2007-11-21 11:39:25 + 2007-11-21 01:39:25 + + 1 + pingback + 0 + 0 + + + 924 + + + http://tellyworth.wordpress.com/2007/11/21/ping-3/ + + 2007-11-21 11:38:22 + 2007-11-21 01:38:22 + + 1 + pingback + 0 + 0 + + + 925 + + example@example.org + http://example.org/ + + 2010-06-11 15:27:04 + 2010-06-11 22:27:04 + + 1 + + 0 + 0 + +
    + + Template: Comments Disabled + https://wpthemetestdata.wordpress.com/2012/01/02/template-comments-disabled/ + Mon, 02 Jan 2012 17:21:15 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/no-comments/ + + should display pingbacks and trackbacks.]]> + + 1150 + 2012-01-02 10:21:15 + 2012-01-02 17:21:15 + closed + closed + template-comments-disabled + publish + 0 + 0 + post + + 0 + + + + + + + + Edge Case: Many Tags + https://wpthemetestdata.wordpress.com/2009/06/01/edge-case-many-tags/ + Mon, 01 Jun 2009 08:00:34 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/11/24/many-tags/ + + + + 1151 + 2009-06-01 01:00:34 + 2009-06-01 08:00:34 + closed + closed + edge-case-many-tags + publish + 0 + 0 + post + + 0' + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Edge Case: Many Categories + https://wpthemetestdata.wordpress.com/2009/07/02/edge-case-many-categories/ + Thu, 02 Jul 2009 09:00:03 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/11/24/many-categories/ + + + + 1152 + 2009-07-02 02:00:03 + 2009-07-02 09:00:03 + closed + closed + edge-case-many-categories + publish + 0 + 0 + post + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Scheduled + https://wpthemetestdata.wordpress.com/2020/01/01/scheduled/ + Wed, 01 Jan 2030 19:00:18 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=418 + + + + 1153 + 2030-01-01 12:00:18 + 2030-01-01 19:00:18 + closed + closed + scheduled + future + 0 + 0 + post + + 0 + + + + + + Post Format: Image + https://wpthemetestdata.wordpress.com/2010/08/08/post-format-image/ + Sun, 08 Aug 2010 12:00:39 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=568 + +
      + +]]>
    + + 1158 + 2010-08-08 05:00:39 + 2010-08-08 12:00:39 + closed + closed + post-format-image + publish + 0 + 0 + post + + 0 + + + + + +
    + + Post Format: Video (YouTube) + https://wpthemetestdata.wordpress.com/2010/06/02/post-format-video-youtube/ + Wed, 02 Jun 2010 09:00:58 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=582 + + WordPress Embeds.]]> + + 1161 + 2010-06-02 02:00:58 + 2010-06-02 09:00:58 + closed + closed + post-format-video-youtube + publish + 0 + 0 + post + + 0 + + + + + + + Post Format: Image (Caption) + https://wpthemetestdata.wordpress.com/2010/08/07/post-format-image-caption/ + Sat, 07 Aug 2010 13:00:19 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=674 + + Bell on Wharf Bell on wharf in San Francisco[/caption]]]> + + 1163 + 2010-08-07 06:00:19 + 2010-08-07 13:00:19 + closed + closed + post-format-image-caption + publish + 0 + 0 + post + + 0 + + + + + + + + _thumbnail_id + + + + + Draft + https://wpthemetestdata.wordpress.com/?p=1164 + Tue, 09 Apr 2013 18:20:39 +0000 + themedemos + http://wptest.io/demo/?p=922 + + + + 1164 + 2013-04-09 11:20:39 + 2013-04-09 18:20:39 + closed + closed + + draft + 0 + 0 + post + + 0 + + + + + + Template: Password Protected (the password is "enter") + https://wpthemetestdata.wordpress.com/2012/01/04/template-password-protected/ + Wed, 04 Jan 2012 16:38:05 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/test-with-secret-password/ + + + + 1168 + 2012-01-04 09:38:05 + 2012-01-04 16:38:05 + closed + closed + template-password-protected + publish + 0 + 0 + post + enter + 0 + + + + + + + 926 + + example@example.org + http://example.org/ + + 2013-03-14 11:56:08 + 2013-03-14 18:56:08 + + 1 + + 0 + 0 + + + + + <link>https://wpthemetestdata.wordpress.com/2009/09/05/edge-case-no-title/</link> + <pubDate>Sat, 05 Sep 2009 16:00:23 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2007/09/04/14/</guid> + <description/> + <content:encoded><![CDATA[This post has no title, but it still must link to the single post view somehow. + +This is typically done by placing the permalink on the post date.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1169</wp:post_id> + <wp:post_date>2009-09-05 09:00:23</wp:post_date> + <wp:post_date_gmt>2009-09-05 16:00:23</wp:post_date_gmt> + <wp:comment_status>closed</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>edge-case-no-title</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>0</wp:menu_order> + <wp:post_type>post</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="category" nicename="classic"><![CDATA[Classic]]></category> + <category domain="post_tag" nicename="edge-case"><![CDATA[edge case]]></category> + <category domain="category" nicename="edge-case-2"><![CDATA[Edge Case]]></category> + <category domain="post_tag" nicename="layout"><![CDATA[layout]]></category> + <category domain="post_tag" nicename="title"><![CDATA[title]]></category> +</item> +<item> + <title>Edge Case: No Content + https://wpthemetestdata.wordpress.com/2009/08/06/edge-case-no-content/ + Thu, 06 Aug 2009 16:39:56 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/this-post-has-no-body/ + + + + 1170 + 2009-08-06 09:39:56 + 2009-08-06 16:39:56 + closed + closed + edge-case-no-content + publish + 0 + 0 + post + + 0 + + + + + + + 927 + + example@example.org + http://example.org/ + + 2013-03-14 12:35:07 + 2013-03-14 19:35:07 + + 1 + + 0 + 0 + + + + Template: Paginated + https://wpthemetestdata.wordpress.com/2012/01/08/template-paginated/ + Sun, 08 Jan 2012 17:00:20 +0000 + themedemos + https://noeltest.wordpress.com/?p=188 + + + +Post Page 2 + + + +Post Page 3]]> + + 1171 + 2012-01-08 10:00:20 + 2012-01-08 17:00:20 + closed + closed + template-paginated + publish + 0 + 0 + post + + 0 + + + + + + + + + <![CDATA[Markup: Title <em>With</em> <b>Mark<sup>up</sup></b>]]> + https://wpthemetestdata.wordpress.com/2013/01/05/markup-title-with-markup/ + Sat, 05 Jan 2013 17:00:49 +0000 + themedemos + http://wptest.io/demo/?p=861 + + +
  • The post title renders the word "with" in italics and the word "markup" in bold (and "up" is superscript).
  • +
  • The post title markup should be removed from the browser window / tab.
  • +]]>
    + + 1173 + 2013-01-05 10:00:49 + 2013-01-05 17:00:49 + closed + closed + markup-title-with-markup + publish + 0 + 0 + post + + 0 + + + + + +
    + + Markup: Title With Special Characters ~`!@#$%^&*()-_=+{}[]/\;:'"?,.> + https://wpthemetestdata.wordpress.com/2013/01/05/title-with-special-characters/ + Sat, 05 Jan 2013 18:00:20 +0000 + themedemos + http://wptest.io/demo/?p=867 + + Latin Character Tests +This is a test to see if the fonts used in this theme support basic Latin characters. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    !"#$%&'()*
    +,-./01234
    56789:;>=<
    ?@ABCDEFGH
    IJKLMNOPQR
    STUVWXYZ[\
    ]^_`abcdef
    ghijklmnop
    qrstuvwxyz
    {|}~
    ]]>
    + + 1174 + 2013-01-05 11:00:20 + 2013-01-05 18:00:20 + closed + closed + title-with-special-characters + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Taumatawhakatangihangakoauauotamateaturipukakapikimaungahoronukupokaiwhenuakitanatahu + https://wpthemetestdata.wordpress.com/2009/10/05/title-should-not-overflow-the-content-area/ + Mon, 05 Oct 2009 19:00:59 +0000 + themedemos + http://wptest.io/demo/?p=877 + + Title should not overflow the content area + +A few things to check for: +
      +
    • Non-breaking text in the title, content, and comments should have no adverse effects on layout or functionality.
    • +
    • Check the browser window / tab title.
    • +
    • If you are a plugin or widget developer, check that this text does not break anything.
    • +
    + +The following CSS properties will help you support non-breaking text. + +
    -ms-word-wrap: break-word;
    +word-wrap: break-word;
    + ]]>
    + + 1175 + 2009-10-05 12:00:59 + 2009-10-05 19:00:59 + closed + closed + title-should-not-overflow-the-content-area + publish + 0 + 0 + post + + 0 + + + + + + + + +
    + + Markup: Text Alignment + https://wpthemetestdata.wordpress.com/2013/01/09/markup-text-alignment/ + Wed, 09 Jan 2013 16:00:39 +0000 + themedemos + http://wptest.io/demo/?p=895 + + Default +This is a paragraph. It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love. Completely neutral and not picking a side or sitting on the fence. It just is. It just freaking is. It likes where it is. It does not feel compelled to pick a side. Leave him be. It will just be better that way. Trust me. +

    Left Align

    +

    This is a paragraph. It is left aligned. Because of this, it is a bit more liberal in it's views. It's favorite color is green. Left align tends to be more eco-friendly, but it provides no concrete evidence that it really is. Even though it likes share the wealth evenly, it leaves the equal distribution up to justified alignment.

    + +

    Center Align

    +

    This is a paragraph. It is center aligned. Center is, but nature, a fence sitter. A flip flopper. It has a difficult time making up its mind. It wants to pick a side. Really, it does. It has the best intentions, but it tends to complicate matters more than help. The best you can do is try to win it over and hope for the best. I hear center align does take bribes.

    + +

    Right Align

    +

    This is a paragraph. It is right aligned. It is a bit more conservative in it's views. It's prefers to not be told what to do or how to do it. Right align totally owns a slew of guns and loves to head to the range for some practice. Which is cool and all. I mean, it's a pretty good shot from at least four or five football fields away. Dead on. So boss.

    + +

    Justify Align

    +

    This is a paragraph. It is justify aligned. It gets really mad when people associate it with Justin Timberlake. Typically, justified is pretty straight laced. It likes everything to be in it's place and not all cattywampus like the rest of the aligns. I am not saying that makes it better than the rest of the aligns, but it does tend to put off more of an elitist attitude.

    ]]>
    + + 1176 + 2013-01-09 09:00:39 + 2013-01-09 16:00:39 + closed + closed + markup-text-alignment + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Markup: Image Alignment + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/ + Fri, 11 Jan 2013 03:15:40 +0000 + themedemos + http://wptest.io/demo/?p=903 + + None, Left, Right, and Center. In addition, they also get the options of Thumbnail, Medium, Large & Fullsize. Be sure to try this page in RTL mode and it should look the same as LTR. +

    Image Alignment 580x300

    +The image above happens to be centered. + +Image Alignment 150x150 The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +Image Alignment 1200x400 + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 1200x400 + +And we try the large image again, with the center alignment since that sometimes is a problem. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 300x200 + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And just when you thought we were done, we're going to do them all over again with captions! + +[caption id="attachment_906" align="aligncenter" width="580"]Image Alignment 580x300 Look at 580x300 getting some caption love.[/caption] + +The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky. + +[caption id="attachment_904" align="alignleft" width="150"]Image Alignment 150x150 Bigger caption than the image usually is.[/caption] + +The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +[caption id="attachment_907" align="alignnone" width="1200"]Image Alignment 1200x400 Comment for massive image for your eyeballs.[/caption] + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. +[caption id="attachment_907" align="aligncenter" width="1200"]Image Alignment 1200x400 This massive image is centered.[/caption] + +And again with the big image centered. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +[caption id="attachment_905" align="alignright" width="300"]Image Alignment 300x200 Feels good to be right all the time.[/caption] + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! One last thing: The last item in this post's content is a thumbnail floated right. Make sure any elements after the content are clearing properly. + +]]>
    + + 1177 + 2013-01-10 20:15:40 + 2013-01-11 03:15:40 + closed + closed + markup-image-alignment + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + +
    + + Markup: HTML Tags and Formatting + https://wpthemetestdata.wordpress.com/2013/01/11/markup-html-tags-and-formatting/ + Sat, 12 Jan 2013 03:22:19 +0000 + themedemos + http://wptest.io/demo/?p=919 + + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    John Doe$1Because that's all Steve Jobs needed for a salary.
    Jane Doe$100KFor all the blogging she does.
    Fred Bloggs$100MPictures are worth a thousand words, right? So Jane x 1,000.
    Jane Bloggs$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    +Robert Frost
    +
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +This tag shows strike-through text. + +Small Tag + +This tag shows smaller text. + +Strong Tag + +This tag shows bold text. + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +This rarely used tag emulates teletype text, which is usually styled like the <code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +This tag shows underlined text. + +Variable Tag + +This allows you to denote variables.]]>
    + + 1178 + 2013-01-11 20:22:19 + 2013-01-12 03:22:19 + closed + closed + markup-html-tags-and-formatting + publish + 0 + 0 + post + + 0 + + + + + + + +
    + + Media: Twitter Embeds + https://wpthemetestdata.wordpress.com/2011/03/15/media-twitter-embeds/ + Tue, 15 Mar 2011 22:47:16 +0000 + themedemos + http://wptest.io/demo/?p=1027 + + Twitter Embeds feature.]]> + + 1179 + 2011-03-15 15:47:16 + 2011-03-15 22:47:16 + closed + closed + media-twitter-embeds + publish + 0 + 0 + post + + 0 + + + + + + + + _oembed_time_d01e104b758ab65a49dfdede5913069c + + + + _oembed_ac49b172e1844531a885a53eff2efd91 + ]]> + + + _oembed_time_ac49b172e1844531a885a53eff2efd91 + + + + _oembed_d01e104b758ab65a49dfdede5913069c + ]]> + + + + Template: Sticky + https://wpthemetestdata.wordpress.com/2012/01/07/template-sticky/ + Sat, 07 Jan 2012 14:07:21 +0000 + themedemos + http://wptest.io/demo/?p=1241 + + +
  • The sticky post should be distinctly recognizable in some way in comparison to normal posts. You can style the .sticky class if you are using the post_class() function to generate your post classes, which is a best practice.
  • +
  • They should show at the very top of the blog index page, even though they could be several posts back chronologically.
  • +
  • They should still show up again in their chronologically correct postion in time, but without the sticky indicator.
  • +
  • If you have a plugin or widget that lists popular posts or comments, make sure that this sticky post is not always at the top of those lists unless it really is popular.
  • +]]>
    + + 1241 + 2012-01-07 07:07:21 + 2012-01-07 14:07:21 + closed + closed + template-sticky + publish + 0 + 0 + post + + 1 + + + + +
    + + Template: Excerpt (Generated) + https://wpthemetestdata.wordpress.com/2012/03/14/template-excerpt-generated/ + Wed, 14 Mar 2012 16:49:22 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=1446 + + excerpt_length and excerpt_more, display properly.]]> + + 1446 + 2012-03-14 09:49:22 + 2012-03-14 16:49:22 + closed + closed + template-excerpt-generated + publish + 0 + 0 + post + + 0 + + + + + + + + + Block category: Common + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-common/ + Fri, 02 Nov 2018 16:20:28 +0000 + >themereviewteam + https://wpthemetestdata.wordpress.com/?p=1730 + + +

    The Common category includes the following blocks: Paragraph, image, headings, list, gallery, quote, audio, cover, video.

    + + + +

    The paragraph block is the default block type.  It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love.

    + + + +

    This paragraph is left aligned.

    + + + +

    This italic paragraph is right aligned.

    + + + +

    Neither of these paragraphs care about politics, but this one is bold, medium sized and has a drop cap.

    + + + +

    This paragraph is centered.

    + + + +

    This paragraph prefers Jazz over Justin Timberlake. It also uses the small font size.

    + + + +

    This paragraph has something important to say:  It has a large font size, which defaults to 36px.

    + + + +

    The huge text size defaults to 46px, but the size can be customized.

    + + + +

    This paragraph is colorful, with a red background and white text (maybe). Colored blocks should have a high enough contrast, so that the text is readable.

    + + + +

    Below this block, you will see a single image with a circle mask applied.

    + + + +
    Image Alignment 150x150
    + + + +

    H1 Heading

    + + + +

    H2 Heading

    + + + +

    H3 Heading

    + + + +

    H4 Heading

    + + + +
    H5 Heading
    + + + +
    H6 Heading
    + + + +

    Ordered list

    + + + +
    1. The software should be licensed under the GNU Public License.
    2. The software should be freely available to anyone to use for any purpose, and without permission.
    3. The software should be open to modifications.
      1. Any modifications should be freely distributable at no cost and without permission from its creators.
    4. The software should provide a framework for translation to make it globally accessible to speakers of all languages.
    5. The software should provide a framework for extensions so modifications and enhancements can be made without modifying core code
    + + + +

    Unordered list

    + + + +
    • One
    • Two
    • Three
      • Four
    • Five
    + + + + + + + +

    Quote

    Cite
    + + + +
    + + + +
    +

    Cover block with background image

    +
    + + + +

    The file block has a setting that lets us show or hide a download button with editable text:

    + + + + + + + + + + + +

    Video blocks have settings for showing and hiding the playback controls. Use autoplay and playback controls responsibly.

    + + + +
    This is a video block caption.
    + + + +

    The video block below is muted and has a poster image that displays before the video starts:

    + + + +
    + +]]>
    + + 1730 + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + +
    + + Block category: Formatting + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-formatting/ + Fri, 02 Nov 2018 16:41:42 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1732 + + +

    The formatting category includes the following blocks:

    + + + +
    The code block starts with
    +<!-- wp:code -->
    +<?php echo 'Hello World'; ?>
    +
    + + +

    The classic block can have almost anything in it.

    +
    +
    a heading
    + + +
    The custom HTML block lets you put HTML that isn't configured like blocks in it. (this div has a width of 45%)
    + + + +
    The preformatted block.

    The Road Not Taken

    Robert Frost
    Two roads diverged in a yellow wood,
    And sorry I could not travel both (\_/)
    And be one traveler, long I stood (='.'=)
    And looked down one as far as I could (")_(")
    To where it bent in the undergrowth;

    Then took the other, as just as fair,
    And having perhaps the better claim, |\_/|
    Because it was grassy and wanted wear; / @ @ \
    Though as for that the passing there ( > º < )
    Had worn them really about the same, `>>x<<´
    / O \
    And both that morning equally lay
    In leaves no step had trodden black.
    Oh, I kept the first for another day!
    Yet knowing how way leads on to way,
    I doubted if I should ever come back.
    I shall be telling this with a sigh
    Somewhere ages and ages hence:
    Two roads diverged in a wood, and I—
    I took the one less traveled by,
    And that has made all the difference.



    and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    + + + +

    The pull quote can be aligned or wide or neither.

    Theme Reviewer
    + + + +
    The table blockThis is the default style.
    The cell next to this is empty.
    Cell #5
    Cell #6
    + + + +
    This is the striped style.This row should have a background color.
    The cell next to this is empty.

    This table has fixed width table cells.

    Make sure that the text wraps correctly.

    + + + +
    The Verse block

    A block for haiku?
    Why not?
    Blocks for all the things!
    +]]>
    + + 1732 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Block category: Layout Elements + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-layout-elements/ + Fri, 02 Nov 2018 16:44:37 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1734 + + +
    +

    The Layout Elements category includes the following blocks: Group, Button, Columns, Media & Text, separator, spacer, read more, and page break.

    + + + +

    This group block has a light green background color.

    + + + + + + + +

    The read more block should be right below this text, but only on list pages of themes that show the full content. It won't show on the single page or on themes showing excerpts.

    +
    + + + + + + + +
    +
    +

    The columns:

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    +
    + + + +
    Boardwalk
    +

    Media &Text

    + + + +

    For displaying media and text next to each other. By default, the media is to the left.

    +
    + + + +
    Golden Gate Bridge
    +

    This time our block is full width, and the image is to the right.

    + + + +

    The background color is a pale blue. 

    +
    + + + +

    Test to make sure that the editor and the front match. To test the Stack on mobile setting, reduce the browser window width.

    + + + +

    The control these settings, the block uses the css classes "has-media-on-the-right" and "is-stacked-on-mobile".

    + + + +

    The separator has three styles: default, wide line, and dots.

    + + + +
    + + + +
    + + + +
    + + + +

    The spacer block has a default height of 100 pixels:

    + + + + + + + +

    And finally, the page break:

    + + + + + + + +

    This paragraph block is on page two, after the page break.

    + + + + +]]>
    + + 1734 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block category: Embeds + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-embeds/ + Fri, 02 Nov 2018 16:51:55 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1738 + + + +

    This post tests various embed blocks:

    + + + +
    +https://twitter.com/WordPress/status/1057136472321613824 +
    Twitter,  wide width
    + + + +
    +https://youtu.be/ex8fMxXJDJw +
    YouTube
    + + + +
    +https://www.facebook.com/6427302910/posts/10156380423617911/ +
    + + + +
    +https://www.instagram.com/p/BpmueLLgEn_/?utm_source=ig_share_sheet&igshid=1hcxphic7p9e2 +
    + + + +
    +https://wordpress.tv/2018/10/14/kjell-reigstad-allan-cole-how-we-made-our-first-gutenberg-powered-theme/ +
    WordPress TV, full width
    + + + +

    +]]>
    + + 1738 + + + + + + + 0 + 0 + + + 0 + + + + + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + + + + + + + + + + ]]> + + + + + + + +

    Many of the WordPress contribution teams have been working hard on the new WordPress editor, and the tools, services,...

    Publicerat av WordPress Måndag 3 september 2018
    ]]>
    +
    + + + + + + + ]]> + + + + + + + + ]]> + + + + + + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + + + + + + ]]> + + + + + + + +

    Many of the WordPress contribution teams have been working hard on the new WordPress editor, and the tools, services,...

    Publicerat av WordPress Måndag 3 september 2018
    ]]>
    +
    + + + + + + + ]]> + + + + + + + + ]]> + + + + + +
    + + Block category: Widgets + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-widgets/ + Fri, 02 Nov 2018 16:45:35 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1736 + + +

    The shortcode widget:

    + + + +[gallery columns=2 ids="770,771"] + + + +

    The Archive Widget:

    + + + + + +

    The same Archive widget but as a dropdown:

    + + + + + + + +

    The Category widget block has an additional option for showing category hierarchies:

    + + + + + +

    The Latest Comments widget can display or hide the avatars, the date, and the comment excerpt:

    + + + + + +

    Here is an example of the Comments widget with all the options disabled. The number of comments has been reduced to two.

    + + + + + +

    And here is the Latest Posts widget in the list view, with dates:

    + + + + + +

    Grid view, now sorted from A -Z.

    + + + + + +

    You can also change the number of columns used to display the latest posts. The block below only displays posts from the Block category:

    + + + + + +

    Search widget:

    + + + + + +

    Tag Cloud widget:

    + + + + + +

    RSS Feed widget:

    + + + + ]]>
    + + 1736 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Columns + https://wpthemetestdata.wordpress.com/2018/11/02/block-columns/ + Fri, 02 Nov 2018 12:10:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1743 + + +
    +
    +

    This page tests how the theme displays the columns block. The first block tests a two column block with paragraphs.

    +
    + + + +
    +

    This is the second column. It should align next to the first column. Reduce the browser window width to test the responsiveness.

    +
    +
    + + + +
    +
    +

    This is the second column block. It has 3 columns.

    +
    + + + +
    +

    Paragraph 2 is in the middle.

    +
    + + + +
    +

    Paragraph 3 is in the last column.

    +
    +
    + + + +
    +
    +

    The third column block has 4 columns. Make sure that all the text is visible and that it is not cut off.

    +
    + + + +
    +

    Now the columns are getting narrower.

    +
    + + + +
    +

    The margins between the columns should be wide enough,

    +
    + + + +
    +

    so that the content of the columns does not run into or overlap each other.

    +
    +
    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    + + + +
    +

    Column five.

    +
    +
    + + + +

    To change the number of columns, select the column block to open the settings panel. You can show up to 6 columns. If the theme has support for wide align, you can also set the alignments to wide and full width.

    + + + +

    Below is a column block with six columns, and no alignment:

    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    + + + +
    +

    Column five.

    +
    + + + +
    +

    Column six.

    +
    +
    + + + +

    Next is a 3 column block, with a wide alignment:

    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    +
    + + + +

    And here is a two column block with full width, and a longer text. Make sure that the text wraps correctly.

    + + + +
    +
    +

    This is column one. Sometimes, you may want to use columns to display a larger text, so, lets add some more words. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna. Praesent sit amet ligula id orci venenatis auctor. Phasellus porttitor, metus non tincidunt dapibus, orci pede pretium neque, sit amet adipiscing ipsum lectus et libero. Aenean bibendum. Curabitur mattis quam id urna. Vivamus dui. Donec nonummy lacinia lorem. Cras risus arcu, sodales ac, ultrices ac, mollis quis, justo. Sed a libero. Quisque risus erat, posuere at, tristique non, lacinia quis, eros.

    +
    + + + +
    +

    Column two. Cras volutpat, lacus quis semper pharetra, nisi enim dignissim est, et sollicitudin quam ipsum vel mi. Sed commodo urna ac urna. Nullam eu tortor. Curabitur sodales scelerisque magna. Donec ultricies tristique pede. Nullam libero. Nam sollicitudin felis vel metus. Nullam posuere molestie metus. Nullam molestie, nunc id suscipit rhoncus, felis mi vulputate lacus, a ultrices tortor dolor eget augue. Aenean ultricies felis ut turpis. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Suspendisse placerat tellus ac nulla. Proin adipiscing sem ac risus. Maecenas nisi. Cras semper.

    +
    +
    + + + +

    We can also add blocks inside columns:

    + + + +
    +
    +
    1. This is a numbered list,
    2. inside a 3 column block
    3. with a wide alignment.
    +
    + + + +
    +

    The middle column has a paragraph with an image block below.

    + + + +
    canola
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna.
    +
    + + + +
    +

    -This third column has a quote

    Theme Reviewer
    +
    +
    + + + +

    But wait there is more!  We also have a block called Media & Text, which is a two column block that helps you display media and text content next to each other, without having to first setup a column block:

    + + + +
    dsc20050813_115856_52
    +

    Media & Text

    + + + +

    A paragraph block sits ready to be used, below your headline.

    + + + +

    +
    +]]>
    + + 1743 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Block: Cover + https://wpthemetestdata.wordpress.com/2018/11/02/block-cover/ + Sat, 03 Nov 2018 12:25:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1745 + + +

    This is a left aligned cover block with a background image.

    + + + +

    The cover block lets you add text on top of images or videos.

    + + + +

    This blocktype has several alignment options, and you can also align or center the text inside the block.

    + + + +

    The background image can be fixed and you can change its opacity and add an overlay color.

    + + + +

    Make sure that the text wraps correctly over the image, and that text markup and alignments are working.

    + + + +

    The next image should have a pink overlay color, the text should be bold and aligned to the left:

    + + + +

    A center aligned cover image block, with a left aligned text.

    + + + +

    This is a full width cover block with a fixed background image with a 20% opacity.

    + + + +

    Make sure that all the text is readable.

    + + + +

    Our last cover image block has a wide width.

    + + + +

    This is a wide cover block with a video background.

    + + + +

    Compare the video and image blocks.
    This block is centered.

    + + + +

    The block below has no alignment, and the text is a link. Overlay colors must also work with video backgrounds.

    + + + + +]]>
    + + 1745 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Button + https://wpthemetestdata.wordpress.com/2018/11/02/block-button/ + Sat, 03 Nov 2018 13:20:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1747 + + +

    Button blocks are not semantically buttons, but links inside a styled div. 

    + + + +

    If you do not add a link, a link tag without an anchor will be used.

    + + + + + + + +

    Check to make sure that the text wraps correctly when the button has more than one line of text, and when it is extra long.

    + + + + + + + +

    Buttons have three styles: 

    + + + + + + + + + + + + + + + +

    If the theme has a custom color palette, test that background color and text color settings work correctly. 

    + + + + + + + +

    Now lets test how buttons display together with large texts.

    + + + +

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio.

    + + + + + + + +

    Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna. Praesent sit amet ligula id orci venenatis auctor. Phasellus porttitor, metus non tincidunt dapibus, orci pede pretium neque, sit amet adipiscing ipsum lectus et libero. Aenean bibendum. Curabitur mattis quam id urna.

    + + + + + + + +

    Vivamus dui. Donec nonummy lacinia lorem. Cras risus arcu, sodales ac, ultrices ac, mollis quis, justo. Sed a libero. Quisque risus erat, posuere at, tristique non, lacinia quis, eros.

    +]]>
    + + 1747 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Quote + https://wpthemetestdata.wordpress.com/2018/11/02/block-quote/ + Sat, 03 Nov 2018 03:05:49 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1749 + + +

    The quote block has two styles, regular:

    + + + +

    Gutenberg is more than an editor.

    The Gutenberg Team
    + + + +

    and large:

    + + + +

    Yes, it is a press, certainly, but a press from which shall flow in inexhaustible streams, the most abundant and most marvelous liquor that has ever flowed to relieve the thirst of men!


    Johannes Gutenberg
    + + + +

    The quote blocks themselves have no alignments but the text can be aligned, bold, italic, and linked:

    + + + +

    Right

    Theme Review
    + + + +

    In addition to the quote block, we also have the pull quote, with a regular and a solid color style.

    + + + +

    You can change the color of the border and the text with the regular style:

    + + + +

    In addition to the quote block, we also have the pull quote.

    Theme Reviewer
    + + + +

    Or change the background color and text color with the solid color style:

    + + + +

    a solid color style

    Theme Reviewer
    +]]>
    + + 1749 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Gallery + https://wpthemetestdata.wordpress.com/2018/11/02/block-gallery/ + Sat, 03 Nov 2018 04:34:24 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1752 + + +

    Gallery blocks have two settings: the number of columns, and whether or not images should be cropped. The default number of columns is three, and the maximum number of columns is eight.

    + + + +

    Below is a three column gallery at full width, with cropped images.

    + + + + + + + + + + + +

    Some more text for taking up space.

    + + + +

    A two column gallery, aligned to the left, linked to media file.

    + + + +

    In the editor, the image captions can be edited directly by clicking on the text.

    + + + +

    If the number of images cannot be divided into the number of columns you have selected, the default is to have the last image(s) automatically stretch to the width of your gallery.

    + + + + + + + +

    A four column gallery with a wide width:

    + + + + + + + +

    A five column gallery with normal images:

    + + + + + + + +

    This is the same gallery, but with cropped images.

    + + + + + + + +

    Six columns: does it work at all window sizes?

    + + + + + + + +

    Seven columns: how does this look on a narrow window?

    + + + + + + + +

    Eight columns:

    + + + + +]]>
    + + 1752 + + + + + + + 0 + 0 + + + 0 + + + + + + + + + +
    + + Block: Image + https://wpthemetestdata.wordpress.com/2018/11/03/block-image/ + Sat, 03 Nov 2018 15:20:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1755 + + +

    Welcome to image alignment! If you recognize this post, it is because these are blocks that have been converted from the classic Markup: Image Alignment post. The best way to demonstrate the ebb and flow of the various image positioning options is to nestle them snuggly among an ocean of words. Grab a paddle and let's get started. Be sure to try it in RTL mode. Left should stay left and right should stay right for both reading directions.

    + + + +

    On the topic of alignment, it should be noted that users can choose from the options of None, Left, Right, and Center. If the theme has added support for align wide, images can also be wide and full width. Be sure to test this page in RTL mode.

    + + + +

    In addition, they also get the options of the image dimensions 25%, 50%, 75%, 100% or a set width and height.

    + + + +
    Image Alignment 580x300
    + + + +

    The image above happens to be centered.

    + + + +
    Image Alignment 150x150
    + + + +

    The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned.

    + + + +

    As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished!

    + + + +

    And now for a massively large image. It also has no alignment.

    + + + +
    Image Alignment 1200x400
    + + + +

    The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.

    + + + +
    Image Alignment 300x200
    + + + +

    And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there… Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently.

    + + + +

    In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah… Just like that. It never felt so good to be right.

    + + + +

    And just when you thought we were done, we're going to do them all over again with captions!

    + + + +
    Image Alignment 580x300
    Look at 580x300 getting some caption love.
    + + + +

    The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky.

    + + + +
    Image Alignment 150x150
    Itty-bitty caption.
    + + + +

    The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned.

    + + + +

    As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished!

    + + + +

    And now for a massively large image. It also has no alignment.

    + + + +
    Image Alignment 1200x400
    Massive image comment for your eyeballs.
    + + + +

    The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.

    + + + +
    Image Alignment 300x200
    Feels good to be right all the time.
    + + + +

    And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there… Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently.

    + + + +

    In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah… Just like that. It never felt so good to be right.

    + + + +

    Imagine that we would find a use for the extra wide image! This image has the wide width alignment:

    + + + +
    Image Alignment 1200x4002
    + + + +

    Can we go bigger? This image has the full width alignment:

    + + + +
    Image Alignment 1200x4002
    + + + +

    And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! One last thing: The last item in this post's content is a thumbnail floated right. Make sure any elements after the content are clearing properly.

    + + + +
    +]]>
    + + 1755 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Ελληνικά-Greek + https://wpthemetestdata.wordpress.com/greek/ + Fri, 14 Feb 2020 10:31:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1809 + + Headings Επικεφαλίδες +

    Επικεφαλίδα 1 Header one

    +

    Επικεφαλίδα 2 Header two

    +

    Επικεφαλίδα 3 Header three

    +

    Επικεφαλίδα 2 Header four

    +
    Επικεφαλίδα 5 Header five
    +
    Επικεφαλίδα 6Header six
    +

    Παράθεση άλλου Blockquotes

    +Single line blockquote: Μια γραμμή +
    Πάντα να είναι περίεργος.
    +Πολλές γραμμέ με αναφορά Multi line blockquote with a cite reference: +
    Το HTML <blockquote> ElementHTML Block Quotation Element) καταδεικνύει ότι το κείμενο έχει μια παράθεση. Συνήθως οπτικοποιείται με εσοχή (δείτε Σημειώσεις για το πως να το αλλάξετε. Ίσως να δίνεται και URL πηγής με την χρήση του cite attribute, μπλα, μπλα <cite> .
    +multiple contributors - MDN HTML element reference - blockquote +

    Πίνακες Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Υπάλληλος EmployeeΜισθός Salary
    Τάδε κάποιος$1Γιατί τόσα χρειάζεται για να ζήσει
    Jane Doe$100KFor all the blogging she does.
    Fred Bloggs$100MPictures are worth a thousand words, right? So Jane x 1,000.
    Jane Bloggs$100BWith hair like that?! Enough said...
    +

    Λίστες Definition Lists

    +
    +
    Τίτλος λίστας Definition List Title
    +
    Υποδιαίρεση λίστας Definition list division.
    +
    +

    Λίστα με κουκίδες Unordered Lists (Nested)

    +
      +
    • Πρώτο στοιχείο List item one +
        +
      • Στοιχείο πρώτο List item one +
          +
        • Στοιχείο λίστα ένα List item one
        • +
        • Στοιχείο λίστας δύο List item two
        • +
        +
      • +
      • Στοιχείο δεύτερο -item two
      • +
      +
    • +
    • Στοιχειο δύο List item two
    • +
    +

    Αριθμημένη λίστα(Nested)

    +
      +
    1. Στοιχειο ξεκινά με 8-start at 8 +
        +
      1. Στοιχείο λίστας ενα List item one +
          +
        1. Στοιχείο λίστας ενα -reversed attribute
        2. +
        3. Στοιχείο λίστας δύο
        4. +
        +
      2. +
      3. Δεύτερο στοιχείο
      4. +
      +
    2. +
    3. Στοιχείο δύο
    4. +
    +

    Ετικέττες HTML Tags

    +Διεύθυνση Address Tag + +
    1 Απέραντη διαδρομή Infinite Loop +Απλωπολή , ΤΚ 95014 +Ελλάδα
    Αγκυρωση Anchor Tag (aka. Link) + +Πάραδειγμα συνδέσμου. + +Συντομογραφία Abbreviation Tag + +Η συντομογραφία κτλ σημαίνει "Και τα λοιπά". + +Ακρωνύμιο Acronym Tag + +Το ακρωνύμιο κυρ σημαίνει "Κύριος". + +Big Tag + +Αυτό είναι μεγάλο θέμα + +Cite Tag + +"Φάε το φαϊ σου" --Όλες οι μαμάδες + +Code Tag + +This tag styles blocks of code. +.post-title { +margin: 0 0 5px; +font-weight: bold; +font-size: 38px; +line-height: 1.2; +και μία γραμμή με πολύ πάρα πολύ υπερβολικά πάρα πολύ μεγάλο κείμενο που πρέπει να δούμε πως το χειρίζεται η γραμματοσειρά και αν ξεχειλίζει από τις γραμμές και δημιουργεί πρόβλημα; +} + +Διαγραφή Delete Tag + +Μπορείτε να διαγράφεται κείμενο, αλλά δεν συνιστάται. + +Έμφαση Emphasize Tag + +Θα πρέπει να κάνει ιταλικ italicize το κείμενο. + +Εισαγωγή Insert Tag + +Αυτό το tag υποδηλώνει εισηγμένο inserted κείμενο. + +Keyboard Tag + +Αυτό το ελάχιστο γνωστό κείμενο πληκτρολογίου keyboard Tag, συνήθως μορφοποιείται όμοια με το <κώδικα code> tag. + +Προδιαμορφωμένο Preformatted Tag +

    Ο Δρόμος που δεν διάλεξα - The Road Not Taken

    +
    Robert Frost
    +	 Δυο δρόμοι διασταυρώθηκαν σ' ένα χρυσαφένιο δάσος ,
    +	 Και προς λύπη μου και τους δυο τα πόδια μου να ταξιδέψουν δεν μπορούσαν
    +	 Κι επί μακρόν εστάθηκα , καθώς ένας ήμουν ταξιδευτής μονάχος ,
    +	 κι έστρεψα το βλέμμα μου στον πρώτο όσο να χαθεί στο βάθος
    +	 μέχρι εκεί που χάνονταν στα άγρια χόρτα που βλαστούσαν.
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	και μία μακριά, πάρα πολύ μακριά, υπερβολικά μακροσκελής δίχως νόημα πρόταση για να δούμε πως το χειρίζεται το θέμα εμφάνισης και αν αναδιπλώνεται, κρύβεται ή ξεχειλίζει;
    +
    +Quote Tag for short, inline quotes + +Προγραμματιστές, προγραμματιστές, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +Αυτή η ετικέτα είναι με διαγράμμιση strike-through κείμενο text. + +Μικρά Small Tag + +Αυτή η ετικέτα είναι μικρότερο smaller κείμενο text. + +Strong Tag + +Αυτή η ετικέτα δείχνει έντονο bold κείμενο text. + +Subscript Tag + +Getting our science styling on with H2 δύοO, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2 δύο, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +Αυτή η ετικέτα δείχνει τυλετυπος teletype κείμενο, which is usually styled like the <κώδικα code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +Αυτή η ετικέτα δείχνει υπογράμμιση underlined text. + +Variable Tag + +Αυτή η ετικέτα δείχνει παράμετροι variables.]]>
    + + 1809 + + + + + + + 0 + 0 + + + 0 + + + + + + + + +
    + + Επίπεδο 2 -Second Greek level + https://wpthemetestdata.wordpress.com//greek/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-2/ + Fri, 14 Feb 2020 10:31:47 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1811 + + + + 1811 + + + + + + + 1809 + 0 + + + 0 + + + + + + + + + + + Επίπεδο 3 + https://wpthemetestdata.wordpress.com/greek/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-2/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-3/ + Fri, 14 Feb 2020 10:32:50 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1813 + + + + 1813 + + + + + + + 1811 + 0 + + + 0 + + + + + + + + + + + <![CDATA[WP 6.1 Font size scale]]> + https://wpthemetestdata.wordpress.com/wp-6-1-font-size-scale/ + Mon, 16 Jan 2023 07:08:31 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-font-size-scale/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Small H2 Heading

    + + + +

    Medium H2 Heading

    + + + +

    Large H2 Heading

    + + + +

    Extra Large H2 Heading

    + + + +

    Small paragraph

    + + + +

    Medium paragraph

    + + + +

    Large paragraph

    + + + +

    Extra Large paragraph

    +]]> +
    + + 163 + + + + + + + + + 0 + 0 + + + 0 + + + + + + +
    + + <![CDATA[WP 6.1 spacing presets]]> + https://wpthemetestdata.wordpress.com/wp-6-1-spacing-presets/ + Mon, 16 Jan 2023 06:56:53 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-spacing-presets/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    On this page, some group blocks have border or background color set to increase visibility.

    + + + +
    +

    This group has a no background color and no additional spacing set.

    +
    + + + +
    +

    This group has a background color but no additional spacing set.

    +
    + + + +
    +

    This group has a 1px border and padding preset 1

    +
    + + + +
    +

    This group has padding preset 1

    +
    + + + +
    +

    This group has a 1px border and padding preset 2

    +
    + + + +
    +

    This group has a background color and padding preset 3

    +
    + + + +
    +

    This group has a background color and padding preset 4

    +
    + + + +
    +

    This group has a background color and padding preset 5

    +
    + + + +
    +

    This group has a background color and padding preset 6

    +
    + + + +
    +

    This group has a background color and padding preset 7

    +
    + + + +
    +

    This group has padding preset 7

    +
    + + + +
    +

    This group has a background color and margin preset 1

    +
    + + + +
    +

    This group has a background color and margin preset 2

    +
    + + + +
    +

    This group has a background color and margin preset 3

    +
    + + + +
    +

    This group has a background color and margin preset 4

    +
    + + + +
    +

    This group has a background color and margin preset 5

    +
    + + + +
    +

    This group has a background color and margin preset 6

    +
    + + + +
    +

    This group has a background color and margin preset 7

    +
    + + + +
    +

    This group has a 1px border, padding preset 4 and margin preset 4

    +
    + + + +
    +

    This group has padding preset 4 and margin preset 4

    +
    +]]>
    + + 150 + + + + + + + + + 0 + 0 + + + 0 + + + + + + +
    + + <![CDATA[WP 6.1 Theme block category]]> + https://wpthemetestdata.wordpress.com/wp-6-1-theme-block-category/ + Fri, 13 Jan 2023 18:38:05 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-theme-block-category/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Navigation block with page list:

    + + + + + + + +

    Site logo:

    + + + + + +

    Site title:

    + + + + + +

    Tagline block:

    + + + + + +

    Query loop "Title & Date" variation:

    + + + +
    + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Title & Excerpt" variation:

    + + + +
    + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Title, Date & Excerpt" variation:

    + + + +
    + + + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Image, Date & Title" variation:

    + + + +
    + + + + + + + + + + + + + + + + + +

    + +
    + + + +

    Avatar block:

    + + + + + +

    Post title block:

    + + + + + +

    Post excerpt:

    + + + + + +

    Post featured image:

    + + + + + +

    Post author:

    + + + + + +

    Post date:

    + + + + + +

    Categories:

    + + + + + +

    Tags:

    + + + + + +

    Next post & previous post:

    + + + + + + + +

    Read More:

    + + + + + +

    Comments block:

    + + + +
    + + + +
    +
    + + + +
    + + +
    + +
    + + + + +
    +
    + + + + + + + + + + + + + + +

    Post comments form block:

    +
    + + + + + +

    Login/out:

    + + + + + + + + + + + +

    Author biography block:

    + + + + + + + + + +

    Term description, archive title, search results title can not be shown on single posts.

    +]]>
    + + 51 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + + + + 2 + + + https://wpthemetestdata.wordpress.com/ + + + + + + + 0 + 0 + +
    + + <![CDATA[WP 6.1 Widgets block category]]> + https://wpthemetestdata.wordpress.com/wp-6-1-widgets-block-category/ + Fri, 13 Jan 2023 18:22:21 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-widgets-block-category/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Archives block:

    + + + + + + + +

    Categories list:

    + + + + + +

    Custom HTML:

    + + + + test + + + +

    Latest comments:

    + + + + + +

    Latest posts:

    + + + + + +

    Page list block:

    + + + + + +

    RSS block:

    + + + + + + + + + + + + + + + +

    Shortcode block:

    + + + + + +

    Social links:

    + + + + + + + + + + + + + + + +

    Tag cloud:

    + + + + + +

    +]]>
    + + 34 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Design category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-design-category-blocks/ + Fri, 13 Jan 2023 18:03:23 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-design-category-blocks/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + + + + + +
    +
    +

    One single column inside a columns block.

    +
    +
    + + + +
    +
    +

    Column one. The background color is on the single column.

    +
    + + + +
    +

    Column two

    +
    +
    + + + +
    +
    +

    Column one. The background color is on the parent columns block.

    +
    + + + +
    +

    Column two

    +
    + + + +
    +

    Column three

    +
    +
    + + + +
    +

    Group with paragraph inside. Below are the group block variations:

    +
    + + + +
    +

    Row

    + + + +

    Row

    +
    + + + +
    +

    Stack

    + + + +

    Stack

    +
    + + + +

    More block:

    + + + + + + + +

    Page break:

    + + + + + + + +

    Separators:

    + + + +

    Default style, no alignment:

    + + + +
    + + + +

    Default style, wide alignment:

    + + + +
    + + + +

    Default style, full width:

    + + + +
    + + + +

    Default style, align center:

    + + + +
    + + + +

    Wide style, no alignment:

    + + + +
    + + + +

    Wide style, wide alignment:

    + + + +
    + + + +

    Wide style, full width:

    + + + +
    + + + +

    Wide style, align center:

    + + + +
    + + + +

    Dotted style, no alignment:

    + + + +
    + + + +

    Dotted style, wide alignment:

    + + + +
    + + + +

    Dotted style, full width:

    + + + +
    + + + +

    Dotted style, align center:

    + + + +
    + + + +

    Spacer:

    + + + + +]]>
    + + 24 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Media category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-media-category-blocks/ + Fri, 13 Jan 2023 18:02:28 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-media-category-blocks/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Image block:

    + + + +
    dsc20050727_091048_222
    + + + +

    Gallery:

    + + + + + + + +

    Audio:

    + + + +
    + + + +

    Cover:

    + + + +
    Wind Farm
    +

    Write title...

    +
    + + + +
    +

    Fixed background

    +
    + + + +
    +

    Repeated background

    +
    + + + +
    +

    Fixed and Repeated background

    +
    + + + +
    dsc20050727_091048_222
    +

    Duotone

    +
    + + + +
    Rain Ripples
    +

    Top left

    +
    + + + +
    Rain Ripples
    +

    Top center

    +
    + + + +
    Rain Ripples
    +

    Top right

    +
    + + + +
    Rain Ripples
    +

    Center left

    +
    + + + +
    Rain Ripples
    +

    Center right

    +
    + + + +
    Rain Ripples
    +

    Bottom left

    +
    + + + +
    Rain Ripples
    +

    Bottom center

    +
    + + + +
    Rain Ripples
    +

    Bottom right

    +
    + + + + + + + +
    Boardwalk
    +

    This is the Media & Text block with an image on the left.

    +
    + + + +
    Image Alignment 1200x4002
    +

    This is the Media & Text block with a cropped image on the left

    +
    + + + +
    +

    This is the Media & Text block with a video the right.

    +
    + + + +
    +]]>
    + + 21 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Text category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-text-category-blocks/ + Fri, 13 Jan 2023 17:46:19 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-text-category-blocks + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Paragraph

    + + + +

    H1 Heading

    + + + +

    H2 Heading

    + + + +

    H3 Heading

    + + + +

    H4 Heading

    + + + +
    H5 Heading
    + + + +
    H6 Heading
    + + + +
      +
    • List
    • + + + +
    • List
    • +
    + + + +
      +
    1. List
    2. + + + +
    3. List
    4. +
    + + + +
      +
    1. List +
        +
      • List
      • +
      +
    2. +
    + + + +
    +

    Quote block

    +citation
    + + +

    classic block

    + + +
    code block
    + + + +
    Preformatted block
    + + + +

    Pull quote

    Citation
    + + + +
    table celltable cell two
    table cell threetable cell four
    Table caption
    + + + +
    header label oneheader label two
    table celltable cell two
    table cell threetable cell four
    footer label onefooter label two
    Table caption
    + + + +
    Verse block
    +]]>
    + + 8 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + +
    + + Keyboard navigation + https://wpthemetestdata.wordpress.com/2018/10/20/keyboard-navigation/ + Sun, 21 Oct 2018 03:03:48 +0000 + + https://wpthemetestdata.wordpress.com/?p=1724 + + +

    There are many different ways to use the web besides a mouse and a pair of eyes. Users navigate for example with a keyboard only or with their voice.

    + + + +

    All the functionality, including menus, links and forms should work using a keyboard only. This is essential for all assistive technology to work properly. The only way to test this, at the moment, is manually. The best time to test this is during development.

    + + + +

    How to keyboard test:

    + + + +

    Tab through your pages, links and forms to do the following tests:

    + + + +
    • Confirm that all links can be reached and activated via keyboard, including any in dropdown submenus.
    • Confirm that all links get a visible focus indicator (e.g., a border highlight).
    • Confirm that all visually hidden links (e.g. skip links) become visible when in focus.
    • Confirm that all form input fields and buttons can be accessed and used via keyboard.
    • Confirm that all interactions, buttons, and other controls can be triggered via keyboard — any action you can complete with a mouse must also be performable via keyboard.
    • Confirm that focus doesn’t move in unexpected ways around the page.
    • Confirm that using shift+tab to move backwards works as well.
    + + + +

    Resources

    + + + + +]]>
    + + 1724 + + + + + + + 0 + 0 + + + + 0 +
    + + About The Tests + https://wpthemetestdata.wordpress.com/about/ + Mon, 26 Jul 2010 02:40:01 +0000 + themedemos + https://wpthemetestdata.wordpress.com/about/ + + WordPress Theme Development Resources + +
      +
    1. See the WordPress Theme Developer Handbook for examples of best practices.
    2. +
    3. See the WordPress Code Reference for more information about WordPress' functions, classes, methods, and hooks.
    4. +
    5. See Theme Unit Test for a robust test suite for your Theme and get the latest version of the test data you see here.
    6. +
    7. See Releasing Your Theme for a guide to submitting your Theme to the Theme Directory.
    8. +
    ]]>
    + + 2 + 2010-07-25 19:40:01 + 2010-07-26 02:40:01 + closed + closed + about + publish + 0 + 1 + page + + 0 +
    + + Lorem Ipsum + https://wpthemetestdata.wordpress.com/lorem-ipsum/ + Tue, 04 Sep 2007 16:52:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/lorem-ipsum/ + + + + 146 + 2007-09-04 09:52:50 + 2007-09-04 16:52:50 + closed + closed + lorem-ipsum + publish + 0 + 7 + page + + 0 + + + Page with comments + https://wpthemetestdata.wordpress.com/about/page-with-comments/ + Tue, 04 Sep 2007 17:47:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/page-with-comments/ + + + + 155 + 2007-09-04 10:47:47 + 2007-09-04 17:47:47 + open + closed + page-with-comments + publish + 2 + 3 + page + + 0 + + 167 + + anon@example.com + + + 2007-09-04 10:49:28 + 2007-09-04 00:49:28 + + 1 + + 0 + 0 + + + 168 + + tellyworth+test2@example.com + + + 2007-09-04 10:49:03 + 2007-09-04 00:49:03 + + 1 + + 0 + 0 + + + 169 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2007-09-04 10:48:51 + 2007-09-04 17:48:51 + + 1 + + 0 + 0 + + + 1017 + + themereviewteam@gmail.com + + + 2014-12-10 01:56:24 + 2014-12-10 08:56:24 + + 0 + + 168 + 0 + + + + Page with comments disabled + https://wpthemetestdata.wordpress.com/about/page-with-comments-disabled/ + Tue, 04 Sep 2007 17:48:10 +0000 + themedemos + https://wpthemetestdata.wordpress.com/page-with-comments-disabled/ + + + + 156 + 2007-09-04 10:48:10 + 2007-09-04 17:48:10 + closed + closed + page-with-comments-disabled + publish + 2 + 4 + page + + 0 + + + Level 3 + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3/ + Tue, 11 Dec 2007 06:23:16 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-3/ + + + + 172 + 2007-12-11 16:23:16 + 2007-12-11 06:23:16 + closed + closed + level-3 + publish + 173 + 0 + page + + 0 + + + Level 2 + https://wpthemetestdata.wordpress.com/level-1/level-2/ + Tue, 11 Dec 2007 06:23:33 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-2/ + + + + 173 + 2007-12-11 16:23:33 + 2007-12-11 06:23:33 + closed + closed + level-2 + publish + 174 + 0 + page + + 0 + + + Level 1 + https://wpthemetestdata.wordpress.com/level-1/ + Tue, 11 Dec 2007 23:25:40 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-1/ + + + + 174 + 2007-12-11 16:25:40 + 2007-12-11 23:25:40 + closed + closed + level-1 + publish + 0 + 5 + page + + 0 + + + Clearing Floats + https://wpthemetestdata.wordpress.com/about/clearing-floats/ + Sun, 01 Aug 2010 16:42:26 +0000 + themedemos + https://wpthemetestdata.wordpress.com/ + + This is the second page]]> + + 501 + 2010-08-01 09:42:26 + 2010-08-01 16:42:26 + closed + closed + clearing-floats + publish + 2 + 2 + page + + 0 + + + canola2 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/canola2/ + Mon, 16 Jun 2008 13:17:54 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/canola2.jpg + + + + 611 + 2008-06-16 06:17:54 + 2008-06-16 13:17:54 + open + closed + canola2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/canola2.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + dsc20050727_091048_222 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050727_091048_222/ + Mon, 16 Jun 2008 13:20:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050727_091048_222.jpg + + + + 616 + 2008-06-16 06:20:37 + 2008-06-16 13:20:37 + open + closed + dsc20050727_091048_222 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050727_091048_222.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + dsc20050813_115856_52 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050813_115856_52/ + Mon, 16 Jun 2008 13:20:57 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050813_115856_52.jpg + + + + 617 + 2008-06-16 06:20:57 + 2008-06-16 13:20:57 + open + closed + dsc20050813_115856_52 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050813_115856_52.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Front Page + https://wpthemetestdata.wordpress.com/front-page/ + Sat, 21 May 2011 01:49:43 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=701 + + + + 701 + 2011-05-20 18:49:43 + 2011-05-21 01:49:43 + open + closed + front-page + publish + 0 + 0 + page + + 0 + + + a Blog page + https://wpthemetestdata.wordpress.com/blog/ + Sat, 21 May 2011 01:51:43 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=703 + + + + 703 + 2011-05-20 18:51:43 + 2011-05-21 01:51:43 + open + closed + blog + publish + 0 + 0 + page + + 0 + + 1016 + + example@example.com + + + 2014-11-29 21:03:05 + 2014-11-30 04:03:05 + + 0 + + 0 + 0 + + + + Bell on Wharf + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/100_5478/ + Mon, 16 Jun 2008 21:34:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/100_5478.jpg + + + + 754 + 2008-06-16 14:34:50 + 2008-06-16 21:34:50 + open + closed + 100_5478 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/100_5478.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Golden Gate Bridge + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/100_5540/ + Mon, 16 Jun 2008 21:35:55 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/100_5540.jpg + + + + 755 + 2008-06-16 14:35:55 + 2008-06-16 21:35:55 + open + closed + 100_5540 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/100_5540.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sunburst Over River + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/cep00032/ + Mon, 16 Jun 2008 21:41:24 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/cep00032.jpg + + + + 756 + 2008-06-16 14:41:24 + 2008-06-16 21:41:24 + open + closed + cep00032 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/cep00032.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Boardwalk + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dcp_2082/ + Mon, 16 Jun 2008 21:41:27 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dcp_2082.jpg + + + + 757 + 2008-06-16 14:41:27 + 2008-06-16 21:41:27 + open + closed + dcp_2082 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dcp_2082.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Yachtsody in Blue + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc03149/ + Mon, 16 Jun 2008 21:41:33 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc03149.jpg + + + + 758 + 2008-06-16 14:41:33 + 2008-06-16 21:41:33 + open + closed + dsc03149 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc03149.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Rain Ripples + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc04563/ + Mon, 16 Jun 2008 21:41:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc04563.jpg + + + + 759 + 2008-06-16 14:41:37 + 2008-06-16 21:41:37 + open + closed + dsc04563 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc04563.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sydney Harbor Bridge + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc09114/ + Mon, 16 Jun 2008 21:41:41 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc09114.jpg + + + + 760 + 2008-06-16 14:41:41 + 2008-06-16 21:41:41 + open + closed + dsc09114 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc09114.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Wind Farm + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050102_192118_51/ + Mon, 16 Jun 2008 21:41:42 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050102_192118_51.jpg + + + + 761 + 2008-06-16 14:41:42 + 2008-06-16 21:41:42 + open + closed + dsc20050102_192118_51 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050102_192118_51.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Antique Farm Machinery + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20051220_160808_102/ + Mon, 16 Jun 2008 21:41:45 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_160808_102.jpg + + + + 762 + 2008-06-16 14:41:45 + 2008-06-16 21:41:45 + open + closed + dsc20051220_160808_102 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_160808_102.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Rusty Rail + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20051220_173257_119/ + Mon, 16 Jun 20081 21:47:17 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_173257_119.jpg + + + + 764 + 2008-06-16 14:47:17 + 2008-06-16 21:47:17 + open + closed + dsc20051220_173257_119 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_173257_119.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sea and Rocks + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dscn3316/ + Mon, 16 Jun 2008 21:47:20 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dscn3316.jpg + + + + 765 + 2008-06-16 14:47:20 + 2008-06-16 21:47:20 + open + closed + dscn3316 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dscn3316.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Big Sur + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/michelle_049/ + Mon, 16 Jun 2008 21:47:23 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/michelle_049.jpg + + + + 766 + 2008-06-16 14:47:23 + 2008-06-16 21:47:23 + open + closed + michelle_049 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/michelle_049.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Windmill + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dcf-1-0/ + Mon, 16 Jun 2008 21:47:26 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/windmill.jpg + + + + 767 + 2008-06-16 14:47:26 + 2008-06-16 21:47:26 + open + closed + dcf-1-0 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/windmill.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Huatulco Coastline + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/alas-i-have-found-my-shangri-la/ + Mon, 16 Jun 2008 21:49:48 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0513-1.jpg + + + + 768 + 2008-06-16 14:49:48 + 2008-06-16 21:49:48 + open + closed + alas-i-have-found-my-shangri-la + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0513-1.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Brazil Beach + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_0747/ + Mon, 16 Jun 2008 21:50:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0747.jpg + + + + 769 + 2008-06-16 14:50:37 + 2008-06-16 21:50:37 + open + closed + img_0747 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0747.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Huatulco Coastline + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_0767/ + Mon, 16 Jun 2008 21:51:19 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0767.jpg + + + + 770 + 2008-06-16 14:51:19 + 2008-06-16 21:51:19 + open + closed + img_0767 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0767.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Boat Barco Texture + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_8399/ + Mon, 16 Jun 2008 21:51:57 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_8399.jpg + + + + 771 + 2008-06-16 14:51:57 + 2008-06-16 21:51:57 + open + closed + img_8399 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_8399.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Resinous + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20040724_152504_532-2/ + Mon, 04 Jun 2012 18:36:56 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg + + + + 807 + 2012-06-04 11:36:56 + 2012-06-04 18:36:56 + open + closed + dsc20040724_152504_532-2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg + + _attachment_original_parent_id + + + + + St. Louis Blues + https://wpthemetestdata.wordpress.com/2010/07/02/post-format-audio/originaldixielandjazzbandwithalbernard-stlouisblues/ + Mon, 16 Jun 2008 16:49:29 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3 + + + + 821 + 2008-06-16 09:49:29 + 2008-06-16 16:49:29 + open + closed + originaldixielandjazzbandwithalbernard-stlouisblues + inherit + 587 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3 + + + OLYMPUS DIGITAL CAMERA + https://wpthemetestdata.wordpress.com/about/clearing-floats/olympus-digital-camera/ + Thu, 05 Aug 2010 18:07:34 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2010/08/manhattansummer.jpg + + + + 827 + 2010-08-05 11:07:34 + 2010-08-05 18:07:34 + open + closed + olympus-digital-camera + inherit + 501 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2010/08/manhattansummer.jpg + + + Image Alignment 580x300 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-580x300/ + Fri, 15 Mar 2013 00:44:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg + + + + 967 + 2013-03-14 19:44:50 + 2013-03-15 00:44:50 + open + open + image-alignment-580x300 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Image Alignment 150x150 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-150x150/ + Fri, 15 Mar 2013 00:44:49 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg + + + + 968 + 2013-03-14 19:44:49 + 2013-03-15 00:44:49 + open + open + image-alignment-150x150 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Horizontal Featured Image + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-horizontal/featured-image-horizontal-2/ + Fri, 15 Mar 2013 20:40:38 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-horizontal.jpg + + + + 1022 + 2013-03-15 15:40:38 + 2013-03-15 20:40:38 + open + open + featured-image-horizontal-2 + inherit + 1011 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-horizontal.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + I Am Worth Loving Wallpaper + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/soworthloving-wallpaper/ + Thu, 14 Mar 2013 14:58:24 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/soworthloving-wallpaper.jpg + + + + 1023 + 2013-03-14 09:58:24 + 2013-03-14 14:58:24 + open + open + soworthloving-wallpaper + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/soworthloving-wallpaper.jpg + + _wp_attachment_image_alt + + + + + Image Alignment 300x200 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-300x200/ + Fri, 15 Mar 2013 00:44:49 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg + + + + 1025 + 2013-03-14 19:44:49 + 2013-03-15 00:44:49 + open + open + image-alignment-300x200 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Vertical Featured Image + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-vertical/featured-image-vertical-2/ + Fri, 15 Mar 2013 20:41:09 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-vertical.jpg + + + + 1027 + 2013-03-15 15:41:09 + 2013-03-15 20:41:09 + open + open + featured-image-vertical-2 + inherit + 1016 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-vertical.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Image Alignment 1200x4002 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-1200x4002/ + Fri, 15 Mar 2013 00:44:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg + + + + 1029 + 2013-03-14 19:44:50 + 2013-03-15 00:44:50 + open + open + image-alignment-1200x4002 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Unicorn Wallpaper + https://wpthemetestdata.wordpress.com/2010/08/08/post-format-image/unicorn-wallpaper/ + Fri, 14 Dec 2012 03:10:39 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2012/12/unicorn-wallpaper.jpg + + + + 1045 + 2012-12-13 22:10:39 + 2012-12-14 03:10:39 + open + open + unicorn-wallpaper + inherit + 1158 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2012/12/unicorn-wallpaper.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Pages + https://wpthemetestdata.wordpress.com/2013/04/09/pages/ + Tue, 09 Apr 2013 13:37:45 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/pages + + + + 1100 + 2013-04-09 06:37:45 + 2013-04-09 13:37:45 + open + closed + pages + publish + 0 + 2 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Categories + https://wpthemetestdata.wordpress.com/2013/04/09/categories/ + Tue, 09 Apr 2013 13:37:45 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/categories + + + + 1101 + 2013-04-09 06:37:45 + 2013-04-09 13:37:45 + open + closed + categories + publish + 0 + 10 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1112/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1112</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test markup tags and styles.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1112</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1112</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>21</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[4675]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1115/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1115</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test post formats.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1115</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1115</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>24</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[44090582]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1118/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1118</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test unpublished posts.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1118</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1118</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>28</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[54090]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>Depth + https://wpthemetestdata.wordpress.com/2013/04/09/depth/ + Tue, 09 Apr 2013 13:37:46 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/depth + + + + 1119 + 2013-04-09 06:37:46 + 2013-04-09 13:37:46 + open + closed + depth + publish + 0 + 29 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 01 + https://wpthemetestdata.wordpress.com/2013/04/09/level-01/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-01 + + + + 1120 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-01 + publish + 0 + 30 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 02 + https://wpthemetestdata.wordpress.com/2013/04/09/level-02/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-02 + + + + 1121 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-02 + publish + 0 + 31 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 03 + https://wpthemetestdata.wordpress.com/2013/04/09/level-03/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-03 + + + + 1122 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-03 + publish + 0 + 32 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 04 + https://wpthemetestdata.wordpress.com/2013/04/09/level-04/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-04 + + + + 1123 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-04 + publish + 0 + 33 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 05 + https://wpthemetestdata.wordpress.com/2013/04/09/level-05/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-05 + + + + 1124 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-05 + publish + 0 + 34 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 06 + https://wpthemetestdata.wordpress.com/2013/04/09/level-06/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-06 + + + + 1125 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-06 + publish + 0 + 35 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 07 + https://wpthemetestdata.wordpress.com/2013/04/09/level-07/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-07 + + + + 1126 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-07 + publish + 0 + 36 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 08 + https://wpthemetestdata.wordpress.com/2013/04/09/level-08/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-08 + + + + 1127 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-08 + publish + 0 + 37 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 09 + https://wpthemetestdata.wordpress.com/2013/04/09/level-09/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-09 + + + + 1128 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-09 + publish + 0 + 38 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 10 + https://wpthemetestdata.wordpress.com/2013/04/09/level-10/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-10 + + + + 1129 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-10 + publish + 0 + 39 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Advanced + https://wpthemetestdata.wordpress.com/2013/04/09/advanced/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/advanced + + + + 1130 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + advanced + publish + 0 + 40 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu Description + https://wpthemetestdata.wordpress.com/2013/04/09/menu-description/ + Tue, 09 Apr 2013 13:37:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-description + + + + 1142 + 2013-04-09 06:37:50 + 2013-04-09 13:37:50 + open + closed + menu-description + publish + 0 + 44 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu Title Attribute + https://wpthemetestdata.wordpress.com/2013/04/09/menu-title-attribute/ + Tue, 09 Apr 2013 13:37:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-title-attribute + + + + 1143 + 2013-04-09 06:37:50 + 2013-04-09 13:37:50 + open + closed + menu-title-attribute + publish + 0 + 41 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu CSS Class + https://wpthemetestdata.wordpress.com/2013/04/09/menu-css-class/ + Tue, 09 Apr 2013 13:37:51 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-css-class + + + + 1144 + 2013-04-09 06:37:51 + 2013-04-09 13:37:51 + open + closed + menu-css-class + publish + 0 + 42 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + New Window / Tab + https://wpthemetestdata.wordpress.com/2013/04/09/new-window-tab/ + Tue, 09 Apr 2013 13:37:51 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/new-window-tab + + + + 1145 + 2013-04-09 06:37:51 + 2013-04-09 13:37:51 + open + closed + new-window-tab + publish + 0 + 43 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1263/</link> + <pubDate>Tue, 09 Apr 2013 13:38:00 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1263</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1263</wp:post_id> + <wp:post_date>2013-04-09 06:38:00</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:38:00</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1263</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1100]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1264/</link> + <pubDate>Tue, 09 Apr 2013 13:38:01 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1264</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1264</wp:post_id> + <wp:post_date>2013-04-09 06:38:01</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:38:01</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1264</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1100]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>twitter.com + https://wpthemetestdata.wordpress.com/2018/10/20/twitter-com/ + Sun, 21 Oct 2018 02:57:33 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/twitter-com/ + + + + 1719 + + + + + + + 0 + 1 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + facebook.com + https://wpthemetestdata.wordpress.com/2018/10/20/facebook-com/ + Sun, 21 Oct 2018 02:57:35 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/facebook-com/ + + + + 1720 + + + + + + + 0 + 2 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + github.com + https://wpthemetestdata.wordpress.com/2018/10/20/github-com/ + Sun, 21 Oct 2018 02:57:37 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/github-com + + + + 1721 + + + + + + + 0 + 3 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + instagram.com + https://wpthemetestdata.wordpress.com/2018/10/20/instagram-com + Sun, 21 Oct 2018 02:57:41 +000 + themereviewteam> + https://wpthemetestdata.wordpress.com/2018/10/20/instagram-com + + + + 1723 + + + + + + + 0 + 5 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + linkedin.com + https://wpthemetestdata.wordpress.com/2018/10/20/linkedin-com/ + Sun, 21 Oct 2018 02:57:39 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/linkedin-com/ + + + + 1722 + + + + + + + 0 + 4 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + triforce-wallpaper + https://wpthemetestdata.wordpress.com/2010/08/07/post-format-image-caption/triforce-wallpaper/ + Tue, 17 Aug 2010 20:17:31 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2010/08/triforce-wallpaper.jpg + + + + 1628 + 2010-08-17 13:17:31 + 2010-08-17 20:17:31 + open + closed + triforce-wallpaper + inherit + 1163 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2010/08/triforce-wallpaper.jpg + + + + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1636/</link> + <pubDate>Tue, 07 May 2013 19:54:30 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1636</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1636</wp:post_id> + <wp:post_date>2013-05-07 12:54:30</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:30</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1636</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1637/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1637</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1637</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1637</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1638/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1638</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1638</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1638</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1639/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1639</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1639</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1639</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1640/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1640</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1640</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1640</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1641/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1641</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1641</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1641</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1643/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1643</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1643</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1643</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1644/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1644</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1644</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1644</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[701]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1645/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1645</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1645</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1645</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1646/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1646</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1646</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1646</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1647/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1647</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1647</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1647</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1648/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1648</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1648</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1648</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1649/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1649</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1649</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1649</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1650/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1650</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1650</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1650</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1651/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1651</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1651</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1651</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>10</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[174]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1652/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1652</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1652</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1652</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>11</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[173]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1653/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1653</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1653</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1653</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>12</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[172]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1654/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1654</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1654</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1654</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>13</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[746]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1655/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1655</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1655</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1655</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>14</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[748]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1656/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1656</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1656</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1656</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>15</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[742]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1657/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1657</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1657</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1657</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>16</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[744]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1658/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1658</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1658</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1658</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>17</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1659/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1659</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1659</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1659</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>18</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[733]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1660/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1660</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1660</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1660</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>19</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[735]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1643/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1643</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1643</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1643</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1644/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1644</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1644</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1644</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[701]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1645/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1645</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1645</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1645</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1646/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1646</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1646</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1646</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1647/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1647</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1647</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1647</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1648/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1648</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1648</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1648</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1649/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1649</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1649</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1649</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1650/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1650</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1650</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1650</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1651/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1651</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1651</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1651</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>10</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[174]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1652/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1652</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1652</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1652</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>11</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[173]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1653/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1653</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1653</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1653</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>12</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[172]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1654/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1654</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1654</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1654</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>13</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[746]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1655/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1655</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1655</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1655</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>14</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[748]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1656/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1656</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1656</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1656</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>15</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[742]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1657/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1657</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1657</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1657</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>16</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[744]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1658/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1658</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1658</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1658</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>17</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1659/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1659</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1659</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1659</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>18</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[733]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1660/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1660</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1660</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1660</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>19</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[735]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>dsc20040724_152504_532 + https://wpthemetestdata.wordpress.com/?attachment_id=1686 + Wed, 18 Sep 2013 21:37:05 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20040724_152504_532.jpg + + + + 1686 + 2013-09-18 14:37:05 + 2013-09-18 21:37:05 + open + closed + dsc20040724_152504_532 + inherit + 0 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20040724_152504_532.jpg + + + dsc20050604_133440_34211 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050604_133440_34211/ + Wed, 18 Sep 2013 21:37:07 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20050604_133440_34211.jpg + + + + 1687 + 2013-09-18 14:37:07 + 2013-09-18 21:37:07 + open + closed + dsc20050604_133440_34211 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20050604_133440_34211.jpg + + + 2014-slider-mobile-behavior + https://wpthemetestdata.wordpress.com/?attachment_id=1690 + Wed, 04 Dec 2013 18:08:29 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/12/2014-slider-mobile-behavior.mov + + + + 1690 + 2013-12-04 11:08:29 + 2013-12-04 18:08:29 + open + closed + 2014-slider-mobile-behavior + inherit + 0 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/12/2014-slider-mobile-behavior.mov + + + dsc20050315_145007_132 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050315_145007_132-2/ + Sun, 05 Jan 2014 18:45:21 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2014/01/dsc20050315_145007_132.jpg + + + + 1691 + 2014-01-05 11:45:21 + 2014-01-05 18:45:21 + open + closed + dsc20050315_145007_132-2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2014/01/dsc20050315_145007_132.jpg + + + spectacles + https://wpthemetestdata.wordpress.com/about/clearing-floats/spectacles-2/ + Sun, 05 Jan 2014 18:45:36 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2014/01/spectacles.gif + + + + 1692 + 2014-01-05 11:45:36 + 2014-01-05 18:45:36 + open + closed + spectacles-2 + inherit + 501 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2014/01/spectacles.gif + + + Post Format: Standard + https://wpthemetestdata.wordpress.com/2010/10/05/post-format-standard/ + Tue, 05 Oct 2010 07:27:25 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=358 + + + +Mrs. Darling first heard of Peter when she was tidying up her children's minds. It is the nightly custom of every good mother after her children are asleep to rummage in their minds and put things straight for next morning, repacking into their proper places the many articles that have wandered during the day. + +If you could keep awake (but of course you can't) you would see your own mother doing this, and you would find it very interesting to watch her. It is quite like tidying up drawers. You would see her on her knees, I expect, lingering humorously over some of your contents, wondering where on earth you had picked this thing up, making discoveries sweet and not so sweet, pressing this to her cheek as if it were as nice as a kitten, and hurriedly stowing that out of sight. When you wake in the morning, the naughtiness and evil passions with which you went to bed have been folded up small and placed at the bottom of your mind and on the top, beautifully aired, are spread out your prettier thoughts, ready for you to put on. + +I don't know whether you have ever seen a map of a person's mind. Doctors sometimes draw maps of other parts of you, and your own map can become intensely interesting, but catch them trying to draw a map of a child's mind, which is not only confused, but keeps going round all the time. There are zigzag lines on it, just like your temperature on a card, and these are probably roads in the island, for the Neverland is always more or less an island, with astonishing splashes of colour here and there, and coral reefs and rakish-looking craft in the offing, and savages and lonely lairs, and gnomes who are mostly tailors, and caves through which a river runs, and princes with six elder brothers, and a hut fast going to decay, and one very small old lady with a hooked nose. It would be an easy map if that were all, but there is also first day at school, religion, fathers, the round pond, needle-work, murders, hangings, verbs that take the dative, chocolate pudding day, getting into braces, say ninety-nine, three-pence for pulling out your tooth yourself, and so on, and either these are part of the island or they are another map showing through, and it is all rather confusing, especially as nothing will stand still. + +Of course the Neverlands vary a good deal. John's, for instance, had a lagoon with flamingoes flying over it at which John was shooting, while Michael, who was very small, had a flamingo with lagoons flying over it. John lived in a boat turned upside down on the sands, Michael in a wigwam, Wendy in a house of leaves deftly sewn together. John had no friends, Michael had friends at night, Wendy had a pet wolf forsaken by its parents, but on the whole the Neverlands have a family resemblance, and if they stood still in a row you could say of them that they have each other's nose, and so forth. On these magic shores children at play are for ever beaching their coracles [simple boat]. We too have been there; we can still hear the sound of the surf, though we shall land no more. + +Of all delectable islands the Neverland is the snuggest and most compact, not large and sprawly, you know, with tedious distances between one adventure and another, but nicely crammed. When you play at it by day with the chairs and table-cloth, it is not in the least alarming, but in the two minutes before you go to sleep it becomes very real. That is why there are night-lights. + +Occasionally in her travels through her children's minds Mrs. Darling found things she could not understand, and of these quite the most perplexing was the word Peter. She knew of no Peter, and yet he was here and there in John and Michael's minds, while Wendy's began to be scrawled all over with him. The name stood out in bolder letters than any of the other words, and as Mrs. Darling gazed she felt that it had an oddly cocky appearance.]]> + + 358 + 2010-10-05 00:27:25 + 2010-10-05 07:27:25 + closed + closed + post-format-standard + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Gallery + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/ + Fri, 10 Sep 2010 14:24:14 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=555 + + + +You can use this page to test the Theme's handling of the gallery shortcode, including the columns parameter, from 1 to 9 columns. Themes are only required to support the default setting (3 columns), so this page is entirely optional. +

    One Column

    +[gallery columns="1"] +

    Two Columns

    +[gallery columns="2"] +

    Three Columns

    +[gallery columns="3"] +

    Four Columns

    +[gallery columns="4"] +

    Five Columns

    +[gallery columns="5"] +

    Six Columns

    +[gallery columns="6"] +

    Seven Columns

    +[gallery columns="7"] +

    Eight Columns

    +[gallery columns="8"] +

    Nine Columns

    +[gallery columns="9"]]]>
    + + 555 + 2010-09-10 07:24:14 + 2010-09-10 14:24:14 + closed + closed + post-format-gallery + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Post Format: Aside + https://wpthemetestdata.wordpress.com/2010/05/09/post-format-aside/ + Sun, 09 May 2010 14:51:54 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=559 + + + + 559 + 2010-05-09 07:51:54 + 2010-05-09 14:51:54 + closed + closed + post-format-aside + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Chat + https://wpthemetestdata.wordpress.com/2010/01/08/post-format-chat/ + Fri, 08 Jan 2010 14:59:31 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=562 + + + + 562 + 2010-01-08 07:59:31 + 2010-01-08 14:59:31 + closed + closed + post-format-chat + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Link + https://wpthemetestdata.wordpress.com/2010/03/07/post-format-link/ + Sun, 07 Mar 2010 15:06:53 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=565 + + The WordPress Theme Review Team Website]]> + + 565 + 2010-03-07 08:06:53 + 2010-03-07 15:06:53 + closed + closed + post-format-link + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Image (Linked) + https://wpthemetestdata.wordpress.com/2010/08/06/post-format-image-linked/ + Fri, 06 Aug 2010 15:09:39 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=568 + + chunk of resinous blackboy husk[/caption] +]]> + + 568 + 2010-08-06 08:09:39 + 2010-08-06 15:09:39 + closed + closed + post-format-image-linked + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Quote + https://wpthemetestdata.wordpress.com/2010/02/05/post-format-quote/ + Fri, 05 Feb 2010 15:13:15 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=575 + + Only one thing is impossible for God: To find any sense in any copyright law on the planet. +Mark Twain]]> + + 575 + 2010-02-05 08:13:15 + 2010-02-05 15:13:15 + closed + closed + post-format-quote + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Status + https://wpthemetestdata.wordpress.com/2010/04/04/post-format-status/ + Sun, 04 Apr 2010 15:21:24 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=579 + + + + 579 + 2010-04-04 08:21:24 + 2010-04-04 15:21:24 + closed + closed + post-format-status + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Video (WordPress.tv) + https://wpthemetestdata.wordpress.com/2010/06/03/post-format-video-wordpresstv/ + Thu, 03 Jun 2010 15:25:58 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=582 + + instructions in the Codex.]]> + + 582 + 2010-06-03 08:25:58 + 2010-06-03 15:25:58 + closed + closed + post-format-video-wordpresstv + publish + 0 + 0 + post + + 0 + + + + + + + + + _oembed_4321638fc1a6fee26443f7fe8a70a871 + ]]> + + + _oembed_29351fff85c1be1d1e9a965a0332a861 + ]]> + + + _oembed_9fcc86d7d9398ff736577f922307f64d + ]]> + + + _oembed_366237792d32461d0052efb2edec37f5 + ]]> + + + _oembed_37fdfe862c13c46a93be2921279bf675 + ]]> + + + + Post Format: Audio + https://wpthemetestdata.wordpress.com/2010/07/02/post-format-audio/ + Fri, 02 Jul 2010 15:36:44 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=587 + + St. Louis Blues + +Audio shortcode: + +[audio https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3]]]> + + 587 + 2010-07-02 08:36:44 + 2010-07-02 15:36:44 + closed + closed + post-format-audio + publish + 0 + 0 + post + + 0 + + + + + + + + enclosure + + + + + Page A + https://wpthemetestdata.wordpress.com/page-a/ + Fri, 24 Jun 2011 01:38:52 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=733 + + + + 733 + 2011-06-23 18:38:52 + 2011-06-24 01:38:52 + open + closed + page-a + publish + 0 + 10 + page + + 0 + + + Page B + https://wpthemetestdata.wordpress.com/page-b/ + Fri, 24 Jun 2011 01:39:14 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=735 + + + + 735 + 2011-06-23 18:39:14 + 2011-06-24 01:39:14 + open + closed + page-b + publish + 0 + 11 + page + + 0 + + + Level 2a + https://wpthemetestdata.wordpress.com/level-1/level-2a/ + Fri, 24 Jun 2011 02:03:33 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=742 + + + + 742 + 2011-06-23 19:03:33 + 2011-06-24 02:03:33 + open + closed + level-2a + publish + 174 + 0 + page + + 0 + + + Level 2b + https://wpthemetestdata.wordpress.com/level-1/level-2b/ + Fri, 24 Jun 2011 02:04:03 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=744 + + + + 744 + 2011-06-23 19:04:03 + 2011-06-24 02:04:03 + open + closed + level-2b + publish + 174 + 0 + page + + 0 + + + Level 3a + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3a/ + Fri, 24 Jun 2011 02:04:24 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=746 + + + + 746 + 2011-06-23 19:04:24 + 2011-06-24 02:04:24 + open + closed + level-3a + publish + 173 + 0 + page + + 0 + + + Level 3b + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3b/ + Fri, 24 Jun 2011 02:04:46 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=748 + + + + 748 + 2011-06-23 19:04:46 + 2011-06-24 02:04:46 + open + closed + level-3b + publish + 173 + 0 + page + + 0 + + + Template: Excerpt (Defined) + https://wpthemetestdata.wordpress.com/2012/03/15/template-excerpt-defined/ + Thu, 15 Mar 2012 21:38:08 +0000 + themedemos + http://wptest.io/demo/?p=993 + + should be displayed in place of the user-defined excerpt in single-page views.]]> + should be displayed in place of the post content in archive-index pages. It can be longer than the automatically generated excerpts, and can have HTML tags.]]> + 993 + 2012-03-15 14:38:08 + 2012-03-15 21:38:08 + closed + closed + template-excerpt-defined + publish + 0 + 0 + post + + 0 + + + + + + + + + Template: More Tag + https://wpthemetestdata.wordpress.com/2012/03/15/template-more-tag/ + Thu, 15 Mar 2012 21:41:11 +0000 + themedemos + http://wptest.io/demo/?p=996 + + more tag. + +Right after this sentence should be a "continue reading" button of some sort on list pages of themes that show full content. It won't show on single pages or on themes showing excerpts. + + + +And this content is after the more tag. (which should be the anchor link for when the button is clicked)]]> + + 996 + 2012-03-15 14:41:11 + 2012-03-15 21:41:11 + closed + closed + template-more-tag + publish + 0 + 0 + post + + 0 + + + + + + + + + Edge Case: Nested And Mixed Lists + https://wpthemetestdata.wordpress.com/2009/05/15/edge-case-nested-and-mixed-lists/ + Fri, 15 May 2009 21:48:32 +0000 + themedemos + http://wptest.io/demo/?p=1000 + + +
  • Lists within lists do not break the ordered list numbering order
  • +
  • Your list styles go deep enough.
  • + +

    Ordered - Unordered - Ordered

    +
      +
    1. ordered item
    2. +
    3. ordered item +
        +
      • unordered
      • +
      • unordered +
          +
        1. ordered item
        2. +
        3. ordered item
        4. +
        +
      • +
      +
    4. +
    5. ordered item
    6. +
    7. ordered item
    8. +
    +

    Ordered - Unordered - Unordered

    +
      +
    1. ordered item
    2. +
    3. ordered item +
        +
      • unordered
      • +
      • unordered +
          +
        • unordered item
        • +
        • unordered item
        • +
        +
      • +
      +
    4. +
    5. ordered item
    6. +
    7. ordered item
    8. +
    +

    Unordered - Ordered - Unordered

    +
      +
    • unordered item
    • +
    • unordered item +
        +
      1. ordered
      2. +
      3. ordered +
          +
        • unordered item
        • +
        • unordered item
        • +
        +
      4. +
      +
    • +
    • unordered item
    • +
    • unordered item
    • +
    +

    Unordered - Unordered - Ordered

    +
      +
    • unordered item
    • +
    • unordered item +
        +
      • unordered
      • +
      • unordered +
          +
        1. ordered item
        2. +
        3. ordered item
        4. +
        +
      • +
      +
    • +
    • unordered item
    • +
    • unordered item
    • +
    ]]>
    + + 1000 + 2009-05-15 14:48:32 + 2009-05-15 21:48:32 + closed + closed + edge-case-nested-and-mixed-lists + publish + 0 + 0 + post + + 0 + + + + + + + +
    + + Template: Featured Image (Horizontal) + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-horizontal/ + Thu, 15 Mar 2012 22:15:12 +0000 + themedemos + http://wptest.io/demo/?p=1011 + + featured image, if the theme supports it. + +Non-square images can provide some unique styling issues. + +This post tests a horizontal featured image.]]> + + 1011 + 2012-03-15 15:15:12 + 2012-03-15 22:15:12 + closed + closed + template-featured-image-horizontal + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + + + + Template: Featured Image (Vertical) + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-vertical/ + Thu, 15 Mar 2012 22:36:32 +0000 + themedemos + http://wptest.io/demo/?p=1016 + + featured image, if the theme supports it. + +Non-square images can provide some unique styling issues. + +This post tests a vertical featured image.]]> + + 1016 + 2012-03-15 15:36:32 + 2012-03-15 22:36:32 + closed + closed + template-featured-image-vertical + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + + + + Post Format: Gallery (Tiled) + https://wpthemetestdata.wordpress.com/2010/09/09/post-format-gallery-tiled/ + Fri, 10 Sep 2010 00:23:27 +0000 + themedemos + http://wptest.io/demo/?p=1031 + + Jetpack to test. + +[gallery type="rectangular" columns="4" ids="755,757,758,760,766,763" orderby="rand"] + +This is some text after the Tiled Gallery just to make sure that everything spaces nicely.]]> + + 1031 + 2010-09-09 17:23:27 + 2010-09-10 00:23:27 + closed + closed + post-format-gallery-tiled + publish + 0 + 0 + post + + 0 + + + + + + + + + + + Page Image Alignment + https://wpthemetestdata.wordpress.com/about/page-image-alignment/ + Fri, 15 Mar 2013 23:19:23 +0000 + themedemos + http://wptest.io/demo/?page_id=1080 + + None, Left, Right, and Center. In addition, they also get the options of Thumbnail, Medium, Large & Fullsize. Be sure to try this page in RTL mode and it should look the same as LTR. +

    Image Alignment 580x300

    +The image above happens to be centered. + +Image Alignment 150x150 The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see there should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +Image Alignment 1200x400 + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 1200x400 + +And we try the large image again, with the center alignment since that sometimes is a problem. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 300x200 + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And just when you thought we were done, we're going to do them all over again with captions! + +[caption id="attachment_906" align="aligncenter" width="580"]Image Alignment 580x300 Look at 580x300 getting some caption love.[/caption] + +The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky. + +[caption id="attachment_904" align="alignleft" width="150"]Image Alignment 150x150 Bigger caption than the image usually is.[/caption] + +The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +[caption id="attachment_907" align="alignnone" width="1200"]Image Alignment 1200x400 Comment for massive image for your eyeballs.[/caption] + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. +[caption id="attachment_907" align="aligncenter" width="1200"]Image Alignment 1200x400 This massive image is centered.[/caption] + +And again with the big image centered. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +[caption id="attachment_905" align="alignright" width="300"]Image Alignment 300x200 Feels good to be right all the time.[/caption] + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! Last thing is a small image aligned right. Whatever follows should be unaffected. Image Alignment 150x150]]>
    + + 1133 + 2013-03-15 18:19:23 + 2013-03-15 23:19:23 + open + open + page-image-alignment + publish + 2 + 0 + page + + 0 +
    + + Page Markup And Formatting + https://wpthemetestdata.wordpress.com/about/page-markup-and-formatting/ + Fri, 15 Mar 2013 23:20:05 +0000 + themedemos + http://wptest.io/demo/?page_id=1083 + + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    Jane$1Because that's all Steve Jobs needed for a salary.
    John$100KFor all the blogging he does.
    Jane$100MPictures are worth a thousand words, right? So Tom x 1,000.
    Jane$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    + Robert Frost
    +
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +This tag shows strike-through text. + +Small Tag + +This tag shows smaller text. + +Strong Tag + +This tag shows bold text. + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +This rarely used tag emulates teletype text, which is usually styled like the <code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +This tag shows underlined text. + +Variable Tag + +This allows you to denote variables.]]>
    + + 1134 + 2013-03-15 18:20:05 + 2013-03-15 23:20:05 + open + open + page-markup-and-formatting + publish + 2 + 0 + page + + 0 +
    + + Template: Comments + https://wpthemetestdata.wordpress.com/2012/01/03/template-comments/ + Tue, 03 Jan 2012 17:11:37 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/comment-test/ + + +
  • Threaded comments up to 10 levels deep
  • +
  • Paginated comments (set Settings > Discussion > Break comments into pages to 5 top level comments per page)
  • +
  • Comment markup / formatting
  • +
  • Comment images
  • +
  • Comment videos
  • +
  • Author comments
  • +
  • Gravatars and default fallbacks
  • +]]>
    + + 1148 + 2012-01-03 10:11:37 + 2012-01-03 17:11:37 + open + closed + template-comments + publish + 0 + 0 + post + + 0 + + + + + + + 881 + + example@example.org + http://example.org/ + + 2012-09-03 10:18:04 + 2012-09-03 17:18:04 + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    John Saddington$1Because that's all Steve Job' needed for a salary.
    Tom McFarlin$100KFor all the blogging he does.
    Jared Erickson$100MPictures are worth a thousand words, right? So Tom x 1,000.
    Chris Ames$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    + +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    +Robert Frost
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    + +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up.]]>
    + 1 + + 0 + 0 +
    + + 899 + + fake@example.com + + + 2013-03-11 23:45:54 + 2013-03-12 04:45:54 + Gravatar associated with it. + They did not speify a website, so there should be no link to it in the comment. +]]> + 1 + + 0 + 0 + + + 900 + + example@example.org + http://example.org/ + + 2013-03-12 13:17:35 + 2013-03-12 20:17:35 + + 1 + + 0 + 0 + + + 901 + + example@example.org + http://example.org + + 2013-03-14 07:53:26 + 2013-03-14 14:53:26 + + 1 + + 0 + 0 + + + 903 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 07:56:46 + 2013-03-14 14:56:46 + + 1 + + 0 + 24783058 + + + 904 + + example@example.org + http://example.org/ + + 2013-03-14 07:57:01 + 2013-03-14 14:57:01 + + 1 + + 0 + 0 + + + 905 + + example@example.org + http://example.org/ + + 2013-03-14 08:01:21 + 2013-03-14 15:01:21 + + 1 + + 904 + 0 + + + 906 + + example@example.org + http://example.org/ + + 2013-03-14 08:02:06 + 2013-03-14 15:02:06 + + 1 + + 905 + 0 + + + 907 + + example@example.org + http://example.org/ + + 2013-03-14 08:03:22 + 2013-03-14 15:03:22 + + 1 + + 906 + 0 + + + 910 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 08:10:29 + 2013-03-14 15:10:29 + + 1 + + 907 + 24783058 + + + 911 + + example@example.org + http://example.org/ + + 2013-03-14 08:12:16 + 2013-03-14 15:12:16 + + 1 + + 910 + 0 + + + 912 + + example@example.org + http://example.org/ + + 2013-03-14 08:12:58 + 2013-03-14 15:12:58 + + 1 + + 911 + 0 + + + 913 + + example@example.org + http://example.org/ + + 2013-03-14 08:13:42 + 2013-03-14 15:13:42 + + 1 + + 912 + 0 + + + 914 + + example@example.org + http://example.org/ + + 2013-03-14 08:14:13 + 2013-03-14 15:14:13 + + 1 + + 913 + 0 + + + 915 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 08:14:47 + 2013-03-14 15:14:47 + + 1 + + 914 + 24783058 + + + 917 + + example@example.org + http://example.org/ + + 2013-03-14 09:56:43 + 2013-03-14 16:56:43 + + If the image imports... + ]]> + 1 + + 0 + 0 + + + 918 + + example@example.org + http://example.org/ + + 2013-03-14 11:23:24 + 2013-03-14 18:23:24 + + 1 + + 0 + 0 + + + 919 + + example@example.org + http://example.org/ + + 2013-03-14 11:27:54 + 2013-03-14 18:27:54 + + 1 + + 0 + 0 + + + 920 + + example@example.org + http://example.org/ + + 2013-03-14 11:30:33 + 2013-03-14 18:30:33 + + 1 + + 0 + 24783058 + + + 1015 + + auser@example.com + + + 2014-09-29 02:52:15 + 2014-09-29 09:52:15 + + 0 + + 0 + 0 + +
    + + Template: Pingbacks And Trackbacks + https://wpthemetestdata.wordpress.com/2012/01/01/template-pingbacks-an-trackbacks/ + Sun, 01 Jan 2012 17:17:18 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/many-trackbacks/ + + +
  • Above the comments
  • +
  • Below the comments
  • +
  • Included within the normal flow of comments
  • +]]>
    + + 1149 + 2012-01-01 10:17:18 + 2012-01-01 17:17:18 + closed + closed + template-pingbacks-an-trackbacks + publish + 0 + 0 + post + + 0 + + + + + + + + + 921 + + + http://tellyworth.wordpress.com/2007/11/21/ping-1/ + + 2007-11-21 11:31:12 + 2007-11-21 01:31:12 + + 1 + trackback + 0 + 0 + + + 922 + + + http://tellyworth.wordpress.com/2007/11/21/ping-2-with-a-much-longer-title-than-the-previous-ping-which-was-called-ping-1/ + + 2007-11-21 11:35:47 + 2007-11-21 01:35:47 + + 1 + trackback + 0 + 0 + + + 923 + + + http://tellyworth.wordpress.com/2007/11/21/ping-4/ + + 2007-11-21 11:39:25 + 2007-11-21 01:39:25 + + 1 + pingback + 0 + 0 + + + 924 + + + http://tellyworth.wordpress.com/2007/11/21/ping-3/ + + 2007-11-21 11:38:22 + 2007-11-21 01:38:22 + + 1 + pingback + 0 + 0 + + + 925 + + example@example.org + http://example.org/ + + 2010-06-11 15:27:04 + 2010-06-11 22:27:04 + + 1 + + 0 + 0 + +
    + + Template: Comments Disabled + https://wpthemetestdata.wordpress.com/2012/01/02/template-comments-disabled/ + Mon, 02 Jan 2012 17:21:15 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/no-comments/ + + should display pingbacks and trackbacks.]]> + + 1150 + 2012-01-02 10:21:15 + 2012-01-02 17:21:15 + closed + closed + template-comments-disabled + publish + 0 + 0 + post + + 0 + + + + + + + + Edge Case: Many Tags + https://wpthemetestdata.wordpress.com/2009/06/01/edge-case-many-tags/ + Mon, 01 Jun 2009 08:00:34 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/11/24/many-tags/ + + + + 1151 + 2009-06-01 01:00:34 + 2009-06-01 08:00:34 + closed + closed + edge-case-many-tags + publish + 0 + 0 + post + + 0' + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Edge Case: Many Categories + https://wpthemetestdata.wordpress.com/2009/07/02/edge-case-many-categories/ + Thu, 02 Jul 2009 09:00:03 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/11/24/many-categories/ + + + + 1152 + 2009-07-02 02:00:03 + 2009-07-02 09:00:03 + closed + closed + edge-case-many-categories + publish + 0 + 0 + post + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Scheduled + https://wpthemetestdata.wordpress.com/2020/01/01/scheduled/ + Wed, 01 Jan 2030 19:00:18 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=418 + + + + 1153 + 2030-01-01 12:00:18 + 2030-01-01 19:00:18 + closed + closed + scheduled + future + 0 + 0 + post + + 0 + + + + + + Post Format: Image + https://wpthemetestdata.wordpress.com/2010/08/08/post-format-image/ + Sun, 08 Aug 2010 12:00:39 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=568 + +
      + +]]>
    + + 1158 + 2010-08-08 05:00:39 + 2010-08-08 12:00:39 + closed + closed + post-format-image + publish + 0 + 0 + post + + 0 + + + + + +
    + + Post Format: Video (YouTube) + https://wpthemetestdata.wordpress.com/2010/06/02/post-format-video-youtube/ + Wed, 02 Jun 2010 09:00:58 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=582 + + WordPress Embeds.]]> + + 1161 + 2010-06-02 02:00:58 + 2010-06-02 09:00:58 + closed + closed + post-format-video-youtube + publish + 0 + 0 + post + + 0 + + + + + + + Post Format: Image (Caption) + https://wpthemetestdata.wordpress.com/2010/08/07/post-format-image-caption/ + Sat, 07 Aug 2010 13:00:19 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=674 + + Bell on Wharf Bell on wharf in San Francisco[/caption]]]> + + 1163 + 2010-08-07 06:00:19 + 2010-08-07 13:00:19 + closed + closed + post-format-image-caption + publish + 0 + 0 + post + + 0 + + + + + + + + _thumbnail_id + + + + + Draft + https://wpthemetestdata.wordpress.com/?p=1164 + Tue, 09 Apr 2013 18:20:39 +0000 + themedemos + http://wptest.io/demo/?p=922 + + + + 1164 + 2013-04-09 11:20:39 + 2013-04-09 18:20:39 + closed + closed + + draft + 0 + 0 + post + + 0 + + + + + + Template: Password Protected (the password is "enter") + https://wpthemetestdata.wordpress.com/2012/01/04/template-password-protected/ + Wed, 04 Jan 2012 16:38:05 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/test-with-secret-password/ + + + + 1168 + 2012-01-04 09:38:05 + 2012-01-04 16:38:05 + closed + closed + template-password-protected + publish + 0 + 0 + post + enter + 0 + + + + + + + 926 + + example@example.org + http://example.org/ + + 2013-03-14 11:56:08 + 2013-03-14 18:56:08 + + 1 + + 0 + 0 + + + + + <link>https://wpthemetestdata.wordpress.com/2009/09/05/edge-case-no-title/</link> + <pubDate>Sat, 05 Sep 2009 16:00:23 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2007/09/04/14/</guid> + <description/> + <content:encoded><![CDATA[This post has no title, but it still must link to the single post view somehow. + +This is typically done by placing the permalink on the post date.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1169</wp:post_id> + <wp:post_date>2009-09-05 09:00:23</wp:post_date> + <wp:post_date_gmt>2009-09-05 16:00:23</wp:post_date_gmt> + <wp:comment_status>closed</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>edge-case-no-title</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>0</wp:menu_order> + <wp:post_type>post</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="category" nicename="classic"><![CDATA[Classic]]></category> + <category domain="post_tag" nicename="edge-case"><![CDATA[edge case]]></category> + <category domain="category" nicename="edge-case-2"><![CDATA[Edge Case]]></category> + <category domain="post_tag" nicename="layout"><![CDATA[layout]]></category> + <category domain="post_tag" nicename="title"><![CDATA[title]]></category> +</item> +<item> + <title>Edge Case: No Content + https://wpthemetestdata.wordpress.com/2009/08/06/edge-case-no-content/ + Thu, 06 Aug 2009 16:39:56 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/this-post-has-no-body/ + + + + 1170 + 2009-08-06 09:39:56 + 2009-08-06 16:39:56 + closed + closed + edge-case-no-content + publish + 0 + 0 + post + + 0 + + + + + + + 927 + + example@example.org + http://example.org/ + + 2013-03-14 12:35:07 + 2013-03-14 19:35:07 + + 1 + + 0 + 0 + + + + Template: Paginated + https://wpthemetestdata.wordpress.com/2012/01/08/template-paginated/ + Sun, 08 Jan 2012 17:00:20 +0000 + themedemos + https://noeltest.wordpress.com/?p=188 + + + +Post Page 2 + + + +Post Page 3]]> + + 1171 + 2012-01-08 10:00:20 + 2012-01-08 17:00:20 + closed + closed + template-paginated + publish + 0 + 0 + post + + 0 + + + + + + + + + <![CDATA[Markup: Title <em>With</em> <b>Mark<sup>up</sup></b>]]> + https://wpthemetestdata.wordpress.com/2013/01/05/markup-title-with-markup/ + Sat, 05 Jan 2013 17:00:49 +0000 + themedemos + http://wptest.io/demo/?p=861 + + +
  • The post title renders the word "with" in italics and the word "markup" in bold (and "up" is superscript).
  • +
  • The post title markup should be removed from the browser window / tab.
  • +]]>
    + + 1173 + 2013-01-05 10:00:49 + 2013-01-05 17:00:49 + closed + closed + markup-title-with-markup + publish + 0 + 0 + post + + 0 + + + + + +
    + + Markup: Title With Special Characters ~`!@#$%^&*()-_=+{}[]/\;:'"?,.> + https://wpthemetestdata.wordpress.com/2013/01/05/title-with-special-characters/ + Sat, 05 Jan 2013 18:00:20 +0000 + themedemos + http://wptest.io/demo/?p=867 + + Latin Character Tests +This is a test to see if the fonts used in this theme support basic Latin characters. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    !"#$%&'()*
    +,-./01234
    56789:;>=<
    ?@ABCDEFGH
    IJKLMNOPQR
    STUVWXYZ[\
    ]^_`abcdef
    ghijklmnop
    qrstuvwxyz
    {|}~
    ]]>
    + + 1174 + 2013-01-05 11:00:20 + 2013-01-05 18:00:20 + closed + closed + title-with-special-characters + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Taumatawhakatangihangakoauauotamateaturipukakapikimaungahoronukupokaiwhenuakitanatahu + https://wpthemetestdata.wordpress.com/2009/10/05/title-should-not-overflow-the-content-area/ + Mon, 05 Oct 2009 19:00:59 +0000 + themedemos + http://wptest.io/demo/?p=877 + + Title should not overflow the content area + +A few things to check for: +
      +
    • Non-breaking text in the title, content, and comments should have no adverse effects on layout or functionality.
    • +
    • Check the browser window / tab title.
    • +
    • If you are a plugin or widget developer, check that this text does not break anything.
    • +
    + +The following CSS properties will help you support non-breaking text. + +
    -ms-word-wrap: break-word;
    +word-wrap: break-word;
    + ]]>
    + + 1175 + 2009-10-05 12:00:59 + 2009-10-05 19:00:59 + closed + closed + title-should-not-overflow-the-content-area + publish + 0 + 0 + post + + 0 + + + + + + + + +
    + + Markup: Text Alignment + https://wpthemetestdata.wordpress.com/2013/01/09/markup-text-alignment/ + Wed, 09 Jan 2013 16:00:39 +0000 + themedemos + http://wptest.io/demo/?p=895 + + Default +This is a paragraph. It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love. Completely neutral and not picking a side or sitting on the fence. It just is. It just freaking is. It likes where it is. It does not feel compelled to pick a side. Leave him be. It will just be better that way. Trust me. +

    Left Align

    +

    This is a paragraph. It is left aligned. Because of this, it is a bit more liberal in it's views. It's favorite color is green. Left align tends to be more eco-friendly, but it provides no concrete evidence that it really is. Even though it likes share the wealth evenly, it leaves the equal distribution up to justified alignment.

    + +

    Center Align

    +

    This is a paragraph. It is center aligned. Center is, but nature, a fence sitter. A flip flopper. It has a difficult time making up its mind. It wants to pick a side. Really, it does. It has the best intentions, but it tends to complicate matters more than help. The best you can do is try to win it over and hope for the best. I hear center align does take bribes.

    + +

    Right Align

    +

    This is a paragraph. It is right aligned. It is a bit more conservative in it's views. It's prefers to not be told what to do or how to do it. Right align totally owns a slew of guns and loves to head to the range for some practice. Which is cool and all. I mean, it's a pretty good shot from at least four or five football fields away. Dead on. So boss.

    + +

    Justify Align

    +

    This is a paragraph. It is justify aligned. It gets really mad when people associate it with Justin Timberlake. Typically, justified is pretty straight laced. It likes everything to be in it's place and not all cattywampus like the rest of the aligns. I am not saying that makes it better than the rest of the aligns, but it does tend to put off more of an elitist attitude.

    ]]>
    + + 1176 + 2013-01-09 09:00:39 + 2013-01-09 16:00:39 + closed + closed + markup-text-alignment + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Markup: Image Alignment + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/ + Fri, 11 Jan 2013 03:15:40 +0000 + themedemos + http://wptest.io/demo/?p=903 + + None, Left, Right, and Center. In addition, they also get the options of Thumbnail, Medium, Large & Fullsize. Be sure to try this page in RTL mode and it should look the same as LTR. +

    Image Alignment 580x300

    +The image above happens to be centered. + +Image Alignment 150x150 The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +Image Alignment 1200x400 + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 1200x400 + +And we try the large image again, with the center alignment since that sometimes is a problem. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 300x200 + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And just when you thought we were done, we're going to do them all over again with captions! + +[caption id="attachment_906" align="aligncenter" width="580"]Image Alignment 580x300 Look at 580x300 getting some caption love.[/caption] + +The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky. + +[caption id="attachment_904" align="alignleft" width="150"]Image Alignment 150x150 Bigger caption than the image usually is.[/caption] + +The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +[caption id="attachment_907" align="alignnone" width="1200"]Image Alignment 1200x400 Comment for massive image for your eyeballs.[/caption] + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. +[caption id="attachment_907" align="aligncenter" width="1200"]Image Alignment 1200x400 This massive image is centered.[/caption] + +And again with the big image centered. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +[caption id="attachment_905" align="alignright" width="300"]Image Alignment 300x200 Feels good to be right all the time.[/caption] + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! One last thing: The last item in this post's content is a thumbnail floated right. Make sure any elements after the content are clearing properly. + +]]>
    + + 1177 + 2013-01-10 20:15:40 + 2013-01-11 03:15:40 + closed + closed + markup-image-alignment + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + +
    + + Markup: HTML Tags and Formatting + https://wpthemetestdata.wordpress.com/2013/01/11/markup-html-tags-and-formatting/ + Sat, 12 Jan 2013 03:22:19 +0000 + themedemos + http://wptest.io/demo/?p=919 + + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    John Doe$1Because that's all Steve Jobs needed for a salary.
    Jane Doe$100KFor all the blogging she does.
    Fred Bloggs$100MPictures are worth a thousand words, right? So Jane x 1,000.
    Jane Bloggs$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    +Robert Frost
    +
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +This tag shows strike-through text. + +Small Tag + +This tag shows smaller text. + +Strong Tag + +This tag shows bold text. + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +This rarely used tag emulates teletype text, which is usually styled like the <code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +This tag shows underlined text. + +Variable Tag + +This allows you to denote variables.]]>
    + + 1178 + 2013-01-11 20:22:19 + 2013-01-12 03:22:19 + closed + closed + markup-html-tags-and-formatting + publish + 0 + 0 + post + + 0 + + + + + + + +
    + + Media: Twitter Embeds + https://wpthemetestdata.wordpress.com/2011/03/15/media-twitter-embeds/ + Tue, 15 Mar 2011 22:47:16 +0000 + themedemos + http://wptest.io/demo/?p=1027 + + Twitter Embeds feature.]]> + + 1179 + 2011-03-15 15:47:16 + 2011-03-15 22:47:16 + closed + closed + media-twitter-embeds + publish + 0 + 0 + post + + 0 + + + + + + + + _oembed_time_d01e104b758ab65a49dfdede5913069c + + + + _oembed_ac49b172e1844531a885a53eff2efd91 + ]]> + + + _oembed_time_ac49b172e1844531a885a53eff2efd91 + + + + _oembed_d01e104b758ab65a49dfdede5913069c + ]]> + + + + Template: Sticky + https://wpthemetestdata.wordpress.com/2012/01/07/template-sticky/ + Sat, 07 Jan 2012 14:07:21 +0000 + themedemos + http://wptest.io/demo/?p=1241 + + +
  • The sticky post should be distinctly recognizable in some way in comparison to normal posts. You can style the .sticky class if you are using the post_class() function to generate your post classes, which is a best practice.
  • +
  • They should show at the very top of the blog index page, even though they could be several posts back chronologically.
  • +
  • They should still show up again in their chronologically correct postion in time, but without the sticky indicator.
  • +
  • If you have a plugin or widget that lists popular posts or comments, make sure that this sticky post is not always at the top of those lists unless it really is popular.
  • +]]>
    + + 1241 + 2012-01-07 07:07:21 + 2012-01-07 14:07:21 + closed + closed + template-sticky + publish + 0 + 0 + post + + 1 + + + + +
    + + Template: Excerpt (Generated) + https://wpthemetestdata.wordpress.com/2012/03/14/template-excerpt-generated/ + Wed, 14 Mar 2012 16:49:22 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=1446 + + excerpt_length and excerpt_more, display properly.]]> + + 1446 + 2012-03-14 09:49:22 + 2012-03-14 16:49:22 + closed + closed + template-excerpt-generated + publish + 0 + 0 + post + + 0 + + + + + + + + + Block category: Common + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-common/ + Fri, 02 Nov 2018 16:20:28 +0000 + >themereviewteam + https://wpthemetestdata.wordpress.com/?p=1730 + + +

    The Common category includes the following blocks: Paragraph, image, headings, list, gallery, quote, audio, cover, video.

    + + + +

    The paragraph block is the default block type.  It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love.

    + + + +

    This paragraph is left aligned.

    + + + +

    This italic paragraph is right aligned.

    + + + +

    Neither of these paragraphs care about politics, but this one is bold, medium sized and has a drop cap.

    + + + +

    This paragraph is centered.

    + + + +

    This paragraph prefers Jazz over Justin Timberlake. It also uses the small font size.

    + + + +

    This paragraph has something important to say:  It has a large font size, which defaults to 36px.

    + + + +

    The huge text size defaults to 46px, but the size can be customized.

    + + + +

    This paragraph is colorful, with a red background and white text (maybe). Colored blocks should have a high enough contrast, so that the text is readable.

    + + + +

    Below this block, you will see a single image with a circle mask applied.

    + + + +
    Image Alignment 150x150
    + + + +

    H1 Heading

    + + + +

    H2 Heading

    + + + +

    H3 Heading

    + + + +

    H4 Heading

    + + + +
    H5 Heading
    + + + +
    H6 Heading
    + + + +

    Ordered list

    + + + +
    1. The software should be licensed under the GNU Public License.
    2. The software should be freely available to anyone to use for any purpose, and without permission.
    3. The software should be open to modifications.
      1. Any modifications should be freely distributable at no cost and without permission from its creators.
    4. The software should provide a framework for translation to make it globally accessible to speakers of all languages.
    5. The software should provide a framework for extensions so modifications and enhancements can be made without modifying core code
    + + + +

    Unordered list

    + + + +
    • One
    • Two
    • Three
      • Four
    • Five
    + + + + + + + +

    Quote

    Cite
    + + + +
    + + + +
    +

    Cover block with background image

    +
    + + + +

    The file block has a setting that lets us show or hide a download button with editable text:

    + + + + + + + + + + + +

    Video blocks have settings for showing and hiding the playback controls. Use autoplay and playback controls responsibly.

    + + + +
    This is a video block caption.
    + + + +

    The video block below is muted and has a poster image that displays before the video starts:

    + + + +
    + +]]>
    + + 1730 + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + +
    + + Block category: Formatting + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-formatting/ + Fri, 02 Nov 2018 16:41:42 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1732 + + +

    The formatting category includes the following blocks:

    + + + +
    The code block starts with
    +<!-- wp:code -->
    +<?php echo 'Hello World'; ?>
    +
    + + +

    The classic block can have almost anything in it.

    +
    +
    a heading
    + + +
    The custom HTML block lets you put HTML that isn't configured like blocks in it. (this div has a width of 45%)
    + + + +
    The preformatted block.

    The Road Not Taken

    Robert Frost
    Two roads diverged in a yellow wood,
    And sorry I could not travel both (\_/)
    And be one traveler, long I stood (='.'=)
    And looked down one as far as I could (")_(")
    To where it bent in the undergrowth;

    Then took the other, as just as fair,
    And having perhaps the better claim, |\_/|
    Because it was grassy and wanted wear; / @ @ \
    Though as for that the passing there ( > º < )
    Had worn them really about the same, `>>x<<´
    / O \
    And both that morning equally lay
    In leaves no step had trodden black.
    Oh, I kept the first for another day!
    Yet knowing how way leads on to way,
    I doubted if I should ever come back.
    I shall be telling this with a sigh
    Somewhere ages and ages hence:
    Two roads diverged in a wood, and I—
    I took the one less traveled by,
    And that has made all the difference.



    and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    + + + +

    The pull quote can be aligned or wide or neither.

    Theme Reviewer
    + + + +
    The table blockThis is the default style.
    The cell next to this is empty.
    Cell #5
    Cell #6
    + + + +
    This is the striped style.This row should have a background color.
    The cell next to this is empty.

    This table has fixed width table cells.

    Make sure that the text wraps correctly.

    + + + +
    The Verse block

    A block for haiku?
    Why not?
    Blocks for all the things!
    +]]>
    + + 1732 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Block category: Layout Elements + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-layout-elements/ + Fri, 02 Nov 2018 16:44:37 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1734 + + +
    +

    The Layout Elements category includes the following blocks: Group, Button, Columns, Media & Text, separator, spacer, read more, and page break.

    + + + +

    This group block has a light green background color.

    + + + + + + + +

    The read more block should be right below this text, but only on list pages of themes that show the full content. It won't show on the single page or on themes showing excerpts.

    +
    + + + + + + + +
    +
    +

    The columns:

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    +
    + + + +
    Boardwalk
    +

    Media &Text

    + + + +

    For displaying media and text next to each other. By default, the media is to the left.

    +
    + + + +
    Golden Gate Bridge
    +

    This time our block is full width, and the image is to the right.

    + + + +

    The background color is a pale blue. 

    +
    + + + +

    Test to make sure that the editor and the front match. To test the Stack on mobile setting, reduce the browser window width.

    + + + +

    The control these settings, the block uses the css classes "has-media-on-the-right" and "is-stacked-on-mobile".

    + + + +

    The separator has three styles: default, wide line, and dots.

    + + + +
    + + + +
    + + + +
    + + + +

    The spacer block has a default height of 100 pixels:

    + + + + + + + +

    And finally, the page break:

    + + + + + + + +

    This paragraph block is on page two, after the page break.

    + + + + +]]>
    + + 1734 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block category: Embeds + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-embeds/ + Fri, 02 Nov 2018 16:51:55 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1738 + + + +

    This post tests various embed blocks:

    + + + +
    +https://twitter.com/WordPress/status/1057136472321613824 +
    Twitter,  wide width
    + + + +
    +https://youtu.be/ex8fMxXJDJw +
    YouTube
    + + + +
    +https://www.facebook.com/6427302910/posts/10156380423617911/ +
    + + + +
    +https://www.instagram.com/p/BpmueLLgEn_/?utm_source=ig_share_sheet&igshid=1hcxphic7p9e2 +
    + + + +
    +https://wordpress.tv/2018/10/14/kjell-reigstad-allan-cole-how-we-made-our-first-gutenberg-powered-theme/ +
    WordPress TV, full width
    + + + +

    +]]>
    + + 1738 + + + + + + + 0 + 0 + + + 0 + + + + + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + + + + + + + + + + ]]> + + + + + + + +

    Many of the WordPress contribution teams have been working hard on the new WordPress editor, and the tools, services,...

    Publicerat av WordPress Måndag 3 september 2018
    ]]>
    +
    + + + + + + + ]]> + + + + + + + + ]]> + + + + + + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + + + + + + ]]> + + + + + + + +

    Many of the WordPress contribution teams have been working hard on the new WordPress editor, and the tools, services,...

    Publicerat av WordPress Måndag 3 september 2018
    ]]>
    +
    + + + + + + + ]]> + + + + + + + + ]]> + + + + + +
    + + Block category: Widgets + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-widgets/ + Fri, 02 Nov 2018 16:45:35 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1736 + + +

    The shortcode widget:

    + + + +[gallery columns=2 ids="770,771"] + + + +

    The Archive Widget:

    + + + + + +

    The same Archive widget but as a dropdown:

    + + + + + + + +

    The Category widget block has an additional option for showing category hierarchies:

    + + + + + +

    The Latest Comments widget can display or hide the avatars, the date, and the comment excerpt:

    + + + + + +

    Here is an example of the Comments widget with all the options disabled. The number of comments has been reduced to two.

    + + + + + +

    And here is the Latest Posts widget in the list view, with dates:

    + + + + + +

    Grid view, now sorted from A -Z.

    + + + + + +

    You can also change the number of columns used to display the latest posts. The block below only displays posts from the Block category:

    + + + + + +

    Search widget:

    + + + + + +

    Tag Cloud widget:

    + + + + + +

    RSS Feed widget:

    + + + + ]]>
    + + 1736 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Columns + https://wpthemetestdata.wordpress.com/2018/11/02/block-columns/ + Fri, 02 Nov 2018 12:10:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1743 + + +
    +
    +

    This page tests how the theme displays the columns block. The first block tests a two column block with paragraphs.

    +
    + + + +
    +

    This is the second column. It should align next to the first column. Reduce the browser window width to test the responsiveness.

    +
    +
    + + + +
    +
    +

    This is the second column block. It has 3 columns.

    +
    + + + +
    +

    Paragraph 2 is in the middle.

    +
    + + + +
    +

    Paragraph 3 is in the last column.

    +
    +
    + + + +
    +
    +

    The third column block has 4 columns. Make sure that all the text is visible and that it is not cut off.

    +
    + + + +
    +

    Now the columns are getting narrower.

    +
    + + + +
    +

    The margins between the columns should be wide enough,

    +
    + + + +
    +

    so that the content of the columns does not run into or overlap each other.

    +
    +
    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    + + + +
    +

    Column five.

    +
    +
    + + + +

    To change the number of columns, select the column block to open the settings panel. You can show up to 6 columns. If the theme has support for wide align, you can also set the alignments to wide and full width.

    + + + +

    Below is a column block with six columns, and no alignment:

    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    + + + +
    +

    Column five.

    +
    + + + +
    +

    Column six.

    +
    +
    + + + +

    Next is a 3 column block, with a wide alignment:

    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    +
    + + + +

    And here is a two column block with full width, and a longer text. Make sure that the text wraps correctly.

    + + + +
    +
    +

    This is column one. Sometimes, you may want to use columns to display a larger text, so, lets add some more words. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna. Praesent sit amet ligula id orci venenatis auctor. Phasellus porttitor, metus non tincidunt dapibus, orci pede pretium neque, sit amet adipiscing ipsum lectus et libero. Aenean bibendum. Curabitur mattis quam id urna. Vivamus dui. Donec nonummy lacinia lorem. Cras risus arcu, sodales ac, ultrices ac, mollis quis, justo. Sed a libero. Quisque risus erat, posuere at, tristique non, lacinia quis, eros.

    +
    + + + +
    +

    Column two. Cras volutpat, lacus quis semper pharetra, nisi enim dignissim est, et sollicitudin quam ipsum vel mi. Sed commodo urna ac urna. Nullam eu tortor. Curabitur sodales scelerisque magna. Donec ultricies tristique pede. Nullam libero. Nam sollicitudin felis vel metus. Nullam posuere molestie metus. Nullam molestie, nunc id suscipit rhoncus, felis mi vulputate lacus, a ultrices tortor dolor eget augue. Aenean ultricies felis ut turpis. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Suspendisse placerat tellus ac nulla. Proin adipiscing sem ac risus. Maecenas nisi. Cras semper.

    +
    +
    + + + +

    We can also add blocks inside columns:

    + + + +
    +
    +
    1. This is a numbered list,
    2. inside a 3 column block
    3. with a wide alignment.
    +
    + + + +
    +

    The middle column has a paragraph with an image block below.

    + + + +
    canola
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna.
    +
    + + + +
    +

    -This third column has a quote

    Theme Reviewer
    +
    +
    + + + +

    But wait there is more!  We also have a block called Media & Text, which is a two column block that helps you display media and text content next to each other, without having to first setup a column block:

    + + + +
    dsc20050813_115856_52
    +

    Media & Text

    + + + +

    A paragraph block sits ready to be used, below your headline.

    + + + +

    +
    +]]>
    + + 1743 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Block: Cover + https://wpthemetestdata.wordpress.com/2018/11/02/block-cover/ + Sat, 03 Nov 2018 12:25:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1745 + + +

    This is a left aligned cover block with a background image.

    + + + +

    The cover block lets you add text on top of images or videos.

    + + + +

    This blocktype has several alignment options, and you can also align or center the text inside the block.

    + + + +

    The background image can be fixed and you can change its opacity and add an overlay color.

    + + + +

    Make sure that the text wraps correctly over the image, and that text markup and alignments are working.

    + + + +

    The next image should have a pink overlay color, the text should be bold and aligned to the left:

    + + + +

    A center aligned cover image block, with a left aligned text.

    + + + +

    This is a full width cover block with a fixed background image with a 20% opacity.

    + + + +

    Make sure that all the text is readable.

    + + + +

    Our last cover image block has a wide width.

    + + + +

    This is a wide cover block with a video background.

    + + + +

    Compare the video and image blocks.
    This block is centered.

    + + + +

    The block below has no alignment, and the text is a link. Overlay colors must also work with video backgrounds.

    + + + + +]]>
    + + 1745 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Button + https://wpthemetestdata.wordpress.com/2018/11/02/block-button/ + Sat, 03 Nov 2018 13:20:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1747 + + +

    Button blocks are not semantically buttons, but links inside a styled div. 

    + + + +

    If you do not add a link, a link tag without an anchor will be used.

    + + + + + + + +

    Check to make sure that the text wraps correctly when the button has more than one line of text, and when it is extra long.

    + + + + + + + +

    Buttons have three styles: 

    + + + + + + + + + + + + + + + +

    If the theme has a custom color palette, test that background color and text color settings work correctly. 

    + + + + + + + +

    Now lets test how buttons display together with large texts.

    + + + +

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio.

    + + + + + + + +

    Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna. Praesent sit amet ligula id orci venenatis auctor. Phasellus porttitor, metus non tincidunt dapibus, orci pede pretium neque, sit amet adipiscing ipsum lectus et libero. Aenean bibendum. Curabitur mattis quam id urna.

    + + + + + + + +

    Vivamus dui. Donec nonummy lacinia lorem. Cras risus arcu, sodales ac, ultrices ac, mollis quis, justo. Sed a libero. Quisque risus erat, posuere at, tristique non, lacinia quis, eros.

    +]]>
    + + 1747 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Quote + https://wpthemetestdata.wordpress.com/2018/11/02/block-quote/ + Sat, 03 Nov 2018 03:05:49 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1749 + + +

    The quote block has two styles, regular:

    + + + +

    Gutenberg is more than an editor.

    The Gutenberg Team
    + + + +

    and large:

    + + + +

    Yes, it is a press, certainly, but a press from which shall flow in inexhaustible streams, the most abundant and most marvelous liquor that has ever flowed to relieve the thirst of men!


    Johannes Gutenberg
    + + + +

    The quote blocks themselves have no alignments but the text can be aligned, bold, italic, and linked:

    + + + +

    Right

    Theme Review
    + + + +

    In addition to the quote block, we also have the pull quote, with a regular and a solid color style.

    + + + +

    You can change the color of the border and the text with the regular style:

    + + + +

    In addition to the quote block, we also have the pull quote.

    Theme Reviewer
    + + + +

    Or change the background color and text color with the solid color style:

    + + + +

    a solid color style

    Theme Reviewer
    +]]>
    + + 1749 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Gallery + https://wpthemetestdata.wordpress.com/2018/11/02/block-gallery/ + Sat, 03 Nov 2018 04:34:24 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1752 + + +

    Gallery blocks have two settings: the number of columns, and whether or not images should be cropped. The default number of columns is three, and the maximum number of columns is eight.

    + + + +

    Below is a three column gallery at full width, with cropped images.

    + + + + + + + + + + + +

    Some more text for taking up space.

    + + + +

    A two column gallery, aligned to the left, linked to media file.

    + + + +

    In the editor, the image captions can be edited directly by clicking on the text.

    + + + +

    If the number of images cannot be divided into the number of columns you have selected, the default is to have the last image(s) automatically stretch to the width of your gallery.

    + + + + + + + +

    A four column gallery with a wide width:

    + + + + + + + +

    A five column gallery with normal images:

    + + + + + + + +

    This is the same gallery, but with cropped images.

    + + + + + + + +

    Six columns: does it work at all window sizes?

    + + + + + + + +

    Seven columns: how does this look on a narrow window?

    + + + + + + + +

    Eight columns:

    + + + + +]]>
    + + 1752 + + + + + + + 0 + 0 + + + 0 + + + + + + + + + +
    + + Block: Image + https://wpthemetestdata.wordpress.com/2018/11/03/block-image/ + Sat, 03 Nov 2018 15:20:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1755 + + +

    Welcome to image alignment! If you recognize this post, it is because these are blocks that have been converted from the classic Markup: Image Alignment post. The best way to demonstrate the ebb and flow of the various image positioning options is to nestle them snuggly among an ocean of words. Grab a paddle and let's get started. Be sure to try it in RTL mode. Left should stay left and right should stay right for both reading directions.

    + + + +

    On the topic of alignment, it should be noted that users can choose from the options of None, Left, Right, and Center. If the theme has added support for align wide, images can also be wide and full width. Be sure to test this page in RTL mode.

    + + + +

    In addition, they also get the options of the image dimensions 25%, 50%, 75%, 100% or a set width and height.

    + + + +
    Image Alignment 580x300
    + + + +

    The image above happens to be centered.

    + + + +
    Image Alignment 150x150
    + + + +

    The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned.

    + + + +

    As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished!

    + + + +

    And now for a massively large image. It also has no alignment.

    + + + +
    Image Alignment 1200x400
    + + + +

    The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.

    + + + +
    Image Alignment 300x200
    + + + +

    And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there… Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently.

    + + + +

    In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah… Just like that. It never felt so good to be right.

    + + + +

    And just when you thought we were done, we're going to do them all over again with captions!

    + + + +
    Image Alignment 580x300
    Look at 580x300 getting some caption love.
    + + + +

    The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky.

    + + + +
    Image Alignment 150x150
    Itty-bitty caption.
    + + + +

    The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned.

    + + + +

    As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished!

    + + + +

    And now for a massively large image. It also has no alignment.

    + + + +
    Image Alignment 1200x400
    Massive image comment for your eyeballs.
    + + + +

    The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.

    + + + +
    Image Alignment 300x200
    Feels good to be right all the time.
    + + + +

    And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there… Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently.

    + + + +

    In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah… Just like that. It never felt so good to be right.

    + + + +

    Imagine that we would find a use for the extra wide image! This image has the wide width alignment:

    + + + +
    Image Alignment 1200x4002
    + + + +

    Can we go bigger? This image has the full width alignment:

    + + + +
    Image Alignment 1200x4002
    + + + +

    And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! One last thing: The last item in this post's content is a thumbnail floated right. Make sure any elements after the content are clearing properly.

    + + + +
    +]]>
    + + 1755 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Ελληνικά-Greek + https://wpthemetestdata.wordpress.com/greek/ + Fri, 14 Feb 2020 10:31:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1809 + + Headings Επικεφαλίδες +

    Επικεφαλίδα 1 Header one

    +

    Επικεφαλίδα 2 Header two

    +

    Επικεφαλίδα 3 Header three

    +

    Επικεφαλίδα 2 Header four

    +
    Επικεφαλίδα 5 Header five
    +
    Επικεφαλίδα 6Header six
    +

    Παράθεση άλλου Blockquotes

    +Single line blockquote: Μια γραμμή +
    Πάντα να είναι περίεργος.
    +Πολλές γραμμέ με αναφορά Multi line blockquote with a cite reference: +
    Το HTML <blockquote> ElementHTML Block Quotation Element) καταδεικνύει ότι το κείμενο έχει μια παράθεση. Συνήθως οπτικοποιείται με εσοχή (δείτε Σημειώσεις για το πως να το αλλάξετε. Ίσως να δίνεται και URL πηγής με την χρήση του cite attribute, μπλα, μπλα <cite> .
    +multiple contributors - MDN HTML element reference - blockquote +

    Πίνακες Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Υπάλληλος EmployeeΜισθός Salary
    Τάδε κάποιος$1Γιατί τόσα χρειάζεται για να ζήσει
    Jane Doe$100KFor all the blogging she does.
    Fred Bloggs$100MPictures are worth a thousand words, right? So Jane x 1,000.
    Jane Bloggs$100BWith hair like that?! Enough said...
    +

    Λίστες Definition Lists

    +
    +
    Τίτλος λίστας Definition List Title
    +
    Υποδιαίρεση λίστας Definition list division.
    +
    +

    Λίστα με κουκίδες Unordered Lists (Nested)

    +
      +
    • Πρώτο στοιχείο List item one +
        +
      • Στοιχείο πρώτο List item one +
          +
        • Στοιχείο λίστα ένα List item one
        • +
        • Στοιχείο λίστας δύο List item two
        • +
        +
      • +
      • Στοιχείο δεύτερο -item two
      • +
      +
    • +
    • Στοιχειο δύο List item two
    • +
    +

    Αριθμημένη λίστα(Nested)

    +
      +
    1. Στοιχειο ξεκινά με 8-start at 8 +
        +
      1. Στοιχείο λίστας ενα List item one +
          +
        1. Στοιχείο λίστας ενα -reversed attribute
        2. +
        3. Στοιχείο λίστας δύο
        4. +
        +
      2. +
      3. Δεύτερο στοιχείο
      4. +
      +
    2. +
    3. Στοιχείο δύο
    4. +
    +

    Ετικέττες HTML Tags

    +Διεύθυνση Address Tag + +
    1 Απέραντη διαδρομή Infinite Loop +Απλωπολή , ΤΚ 95014 +Ελλάδα
    Αγκυρωση Anchor Tag (aka. Link) + +Πάραδειγμα συνδέσμου. + +Συντομογραφία Abbreviation Tag + +Η συντομογραφία κτλ σημαίνει "Και τα λοιπά". + +Ακρωνύμιο Acronym Tag + +Το ακρωνύμιο κυρ σημαίνει "Κύριος". + +Big Tag + +Αυτό είναι μεγάλο θέμα + +Cite Tag + +"Φάε το φαϊ σου" --Όλες οι μαμάδες + +Code Tag + +This tag styles blocks of code. +.post-title { +margin: 0 0 5px; +font-weight: bold; +font-size: 38px; +line-height: 1.2; +και μία γραμμή με πολύ πάρα πολύ υπερβολικά πάρα πολύ μεγάλο κείμενο που πρέπει να δούμε πως το χειρίζεται η γραμματοσειρά και αν ξεχειλίζει από τις γραμμές και δημιουργεί πρόβλημα; +} + +Διαγραφή Delete Tag + +Μπορείτε να διαγράφεται κείμενο, αλλά δεν συνιστάται. + +Έμφαση Emphasize Tag + +Θα πρέπει να κάνει ιταλικ italicize το κείμενο. + +Εισαγωγή Insert Tag + +Αυτό το tag υποδηλώνει εισηγμένο inserted κείμενο. + +Keyboard Tag + +Αυτό το ελάχιστο γνωστό κείμενο πληκτρολογίου keyboard Tag, συνήθως μορφοποιείται όμοια με το <κώδικα code> tag. + +Προδιαμορφωμένο Preformatted Tag +

    Ο Δρόμος που δεν διάλεξα - The Road Not Taken

    +
    Robert Frost
    +	 Δυο δρόμοι διασταυρώθηκαν σ' ένα χρυσαφένιο δάσος ,
    +	 Και προς λύπη μου και τους δυο τα πόδια μου να ταξιδέψουν δεν μπορούσαν
    +	 Κι επί μακρόν εστάθηκα , καθώς ένας ήμουν ταξιδευτής μονάχος ,
    +	 κι έστρεψα το βλέμμα μου στον πρώτο όσο να χαθεί στο βάθος
    +	 μέχρι εκεί που χάνονταν στα άγρια χόρτα που βλαστούσαν.
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	και μία μακριά, πάρα πολύ μακριά, υπερβολικά μακροσκελής δίχως νόημα πρόταση για να δούμε πως το χειρίζεται το θέμα εμφάνισης και αν αναδιπλώνεται, κρύβεται ή ξεχειλίζει;
    +
    +Quote Tag for short, inline quotes + +Προγραμματιστές, προγραμματιστές, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +Αυτή η ετικέτα είναι με διαγράμμιση strike-through κείμενο text. + +Μικρά Small Tag + +Αυτή η ετικέτα είναι μικρότερο smaller κείμενο text. + +Strong Tag + +Αυτή η ετικέτα δείχνει έντονο bold κείμενο text. + +Subscript Tag + +Getting our science styling on with H2 δύοO, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2 δύο, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +Αυτή η ετικέτα δείχνει τυλετυπος teletype κείμενο, which is usually styled like the <κώδικα code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +Αυτή η ετικέτα δείχνει υπογράμμιση underlined text. + +Variable Tag + +Αυτή η ετικέτα δείχνει παράμετροι variables.]]>
    + + 1809 + + + + + + + 0 + 0 + + + 0 + + + + + + + + +
    + + Επίπεδο 2 -Second Greek level + https://wpthemetestdata.wordpress.com//greek/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-2/ + Fri, 14 Feb 2020 10:31:47 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1811 + + + + 1811 + + + + + + + 1809 + 0 + + + 0 + + + + + + + + + + + Επίπεδο 3 + https://wpthemetestdata.wordpress.com/greek/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-2/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-3/ + Fri, 14 Feb 2020 10:32:50 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1813 + + + + 1813 + + + + + + + 1811 + 0 + + + 0 + + + + + + + + + + + <![CDATA[WP 6.1 Font size scale]]> + https://wpthemetestdata.wordpress.com/wp-6-1-font-size-scale/ + Mon, 16 Jan 2023 07:08:31 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-font-size-scale/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Small H2 Heading

    + + + +

    Medium H2 Heading

    + + + +

    Large H2 Heading

    + + + +

    Extra Large H2 Heading

    + + + +

    Small paragraph

    + + + +

    Medium paragraph

    + + + +

    Large paragraph

    + + + +

    Extra Large paragraph

    +]]> +
    + + 163 + + + + + + + + + 0 + 0 + + + 0 + + + + + + +
    + + <![CDATA[WP 6.1 spacing presets]]> + https://wpthemetestdata.wordpress.com/wp-6-1-spacing-presets/ + Mon, 16 Jan 2023 06:56:53 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-spacing-presets/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    On this page, some group blocks have border or background color set to increase visibility.

    + + + +
    +

    This group has a no background color and no additional spacing set.

    +
    + + + +
    +

    This group has a background color but no additional spacing set.

    +
    + + + +
    +

    This group has a 1px border and padding preset 1

    +
    + + + +
    +

    This group has padding preset 1

    +
    + + + +
    +

    This group has a 1px border and padding preset 2

    +
    + + + +
    +

    This group has a background color and padding preset 3

    +
    + + + +
    +

    This group has a background color and padding preset 4

    +
    + + + +
    +

    This group has a background color and padding preset 5

    +
    + + + +
    +

    This group has a background color and padding preset 6

    +
    + + + +
    +

    This group has a background color and padding preset 7

    +
    + + + +
    +

    This group has padding preset 7

    +
    + + + +
    +

    This group has a background color and margin preset 1

    +
    + + + +
    +

    This group has a background color and margin preset 2

    +
    + + + +
    +

    This group has a background color and margin preset 3

    +
    + + + +
    +

    This group has a background color and margin preset 4

    +
    + + + +
    +

    This group has a background color and margin preset 5

    +
    + + + +
    +

    This group has a background color and margin preset 6

    +
    + + + +
    +

    This group has a background color and margin preset 7

    +
    + + + +
    +

    This group has a 1px border, padding preset 4 and margin preset 4

    +
    + + + +
    +

    This group has padding preset 4 and margin preset 4

    +
    +]]>
    + + 150 + + + + + + + + + 0 + 0 + + + 0 + + + + + + +
    + + <![CDATA[WP 6.1 Theme block category]]> + https://wpthemetestdata.wordpress.com/wp-6-1-theme-block-category/ + Fri, 13 Jan 2023 18:38:05 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-theme-block-category/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Navigation block with page list:

    + + + + + + + +

    Site logo:

    + + + + + +

    Site title:

    + + + + + +

    Tagline block:

    + + + + + +

    Query loop "Title & Date" variation:

    + + + +
    + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Title & Excerpt" variation:

    + + + +
    + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Title, Date & Excerpt" variation:

    + + + +
    + + + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Image, Date & Title" variation:

    + + + +
    + + + + + + + + + + + + + + + + + +

    + +
    + + + +

    Avatar block:

    + + + + + +

    Post title block:

    + + + + + +

    Post excerpt:

    + + + + + +

    Post featured image:

    + + + + + +

    Post author:

    + + + + + +

    Post date:

    + + + + + +

    Categories:

    + + + + + +

    Tags:

    + + + + + +

    Next post & previous post:

    + + + + + + + +

    Read More:

    + + + + + +

    Comments block:

    + + + +
    + + + +
    +
    + + + +
    + + +
    + +
    + + + + +
    +
    + + + + + + + + + + + + + + +

    Post comments form block:

    +
    + + + + + +

    Login/out:

    + + + + + + + + + + + +

    Author biography block:

    + + + + + + + + + +

    Term description, archive title, search results title can not be shown on single posts.

    +]]>
    + + 51 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + + + + 2 + + + https://wpthemetestdata.wordpress.com/ + + + + + + + 0 + 0 + +
    + + <![CDATA[WP 6.1 Widgets block category]]> + https://wpthemetestdata.wordpress.com/wp-6-1-widgets-block-category/ + Fri, 13 Jan 2023 18:22:21 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-widgets-block-category/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Archives block:

    + + + + + + + +

    Categories list:

    + + + + + +

    Custom HTML:

    + + + + test + + + +

    Latest comments:

    + + + + + +

    Latest posts:

    + + + + + +

    Page list block:

    + + + + + +

    RSS block:

    + + + + + + + + + + + + + + + +

    Shortcode block:

    + + + + + +

    Social links:

    + + + + + + + + + + + + + + + +

    Tag cloud:

    + + + + + +

    +]]>
    + + 34 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Design category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-design-category-blocks/ + Fri, 13 Jan 2023 18:03:23 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-design-category-blocks/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + + + + + +
    +
    +

    One single column inside a columns block.

    +
    +
    + + + +
    +
    +

    Column one. The background color is on the single column.

    +
    + + + +
    +

    Column two

    +
    +
    + + + +
    +
    +

    Column one. The background color is on the parent columns block.

    +
    + + + +
    +

    Column two

    +
    + + + +
    +

    Column three

    +
    +
    + + + +
    +

    Group with paragraph inside. Below are the group block variations:

    +
    + + + +
    +

    Row

    + + + +

    Row

    +
    + + + +
    +

    Stack

    + + + +

    Stack

    +
    + + + +

    More block:

    + + + + + + + +

    Page break:

    + + + + + + + +

    Separators:

    + + + +

    Default style, no alignment:

    + + + +
    + + + +

    Default style, wide alignment:

    + + + +
    + + + +

    Default style, full width:

    + + + +
    + + + +

    Default style, align center:

    + + + +
    + + + +

    Wide style, no alignment:

    + + + +
    + + + +

    Wide style, wide alignment:

    + + + +
    + + + +

    Wide style, full width:

    + + + +
    + + + +

    Wide style, align center:

    + + + +
    + + + +

    Dotted style, no alignment:

    + + + +
    + + + +

    Dotted style, wide alignment:

    + + + +
    + + + +

    Dotted style, full width:

    + + + +
    + + + +

    Dotted style, align center:

    + + + +
    + + + +

    Spacer:

    + + + + +]]>
    + + 24 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Media category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-media-category-blocks/ + Fri, 13 Jan 2023 18:02:28 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-media-category-blocks/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Image block:

    + + + +
    dsc20050727_091048_222
    + + + +

    Gallery:

    + + + + + + + +

    Audio:

    + + + +
    + + + +

    Cover:

    + + + +
    Wind Farm
    +

    Write title...

    +
    + + + +
    +

    Fixed background

    +
    + + + +
    +

    Repeated background

    +
    + + + +
    +

    Fixed and Repeated background

    +
    + + + +
    dsc20050727_091048_222
    +

    Duotone

    +
    + + + +
    Rain Ripples
    +

    Top left

    +
    + + + +
    Rain Ripples
    +

    Top center

    +
    + + + +
    Rain Ripples
    +

    Top right

    +
    + + + +
    Rain Ripples
    +

    Center left

    +
    + + + +
    Rain Ripples
    +

    Center right

    +
    + + + +
    Rain Ripples
    +

    Bottom left

    +
    + + + +
    Rain Ripples
    +

    Bottom center

    +
    + + + +
    Rain Ripples
    +

    Bottom right

    +
    + + + + + + + +
    Boardwalk
    +

    This is the Media & Text block with an image on the left.

    +
    + + + +
    Image Alignment 1200x4002
    +

    This is the Media & Text block with a cropped image on the left

    +
    + + + +
    +

    This is the Media & Text block with a video the right.

    +
    + + + +
    +]]>
    + + 21 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Text category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-text-category-blocks/ + Fri, 13 Jan 2023 17:46:19 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-text-category-blocks + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Paragraph

    + + + +

    H1 Heading

    + + + +

    H2 Heading

    + + + +

    H3 Heading

    + + + +

    H4 Heading

    + + + +
    H5 Heading
    + + + +
    H6 Heading
    + + + +
      +
    • List
    • + + + +
    • List
    • +
    + + + +
      +
    1. List
    2. + + + +
    3. List
    4. +
    + + + +
      +
    1. List +
        +
      • List
      • +
      +
    2. +
    + + + +
    +

    Quote block

    +citation
    + + +

    classic block

    + + +
    code block
    + + + +
    Preformatted block
    + + + +

    Pull quote

    Citation
    + + + +
    table celltable cell two
    table cell threetable cell four
    Table caption
    + + + +
    header label oneheader label two
    table celltable cell two
    table cell threetable cell four
    footer label onefooter label two
    Table caption
    + + + +
    Verse block
    +]]>
    + + 8 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + +
    + + Keyboard navigation + https://wpthemetestdata.wordpress.com/2018/10/20/keyboard-navigation/ + Sun, 21 Oct 2018 03:03:48 +0000 + + https://wpthemetestdata.wordpress.com/?p=1724 + + +

    There are many different ways to use the web besides a mouse and a pair of eyes. Users navigate for example with a keyboard only or with their voice.

    + + + +

    All the functionality, including menus, links and forms should work using a keyboard only. This is essential for all assistive technology to work properly. The only way to test this, at the moment, is manually. The best time to test this is during development.

    + + + +

    How to keyboard test:

    + + + +

    Tab through your pages, links and forms to do the following tests:

    + + + +
    • Confirm that all links can be reached and activated via keyboard, including any in dropdown submenus.
    • Confirm that all links get a visible focus indicator (e.g., a border highlight).
    • Confirm that all visually hidden links (e.g. skip links) become visible when in focus.
    • Confirm that all form input fields and buttons can be accessed and used via keyboard.
    • Confirm that all interactions, buttons, and other controls can be triggered via keyboard — any action you can complete with a mouse must also be performable via keyboard.
    • Confirm that focus doesn’t move in unexpected ways around the page.
    • Confirm that using shift+tab to move backwards works as well.
    + + + +

    Resources

    + + + + +]]>
    + + 1724 + + + + + + + 0 + 0 + + + + 0 +
    + + About The Tests + https://wpthemetestdata.wordpress.com/about/ + Mon, 26 Jul 2010 02:40:01 +0000 + themedemos + https://wpthemetestdata.wordpress.com/about/ + + WordPress Theme Development Resources + +
      +
    1. See the WordPress Theme Developer Handbook for examples of best practices.
    2. +
    3. See the WordPress Code Reference for more information about WordPress' functions, classes, methods, and hooks.
    4. +
    5. See Theme Unit Test for a robust test suite for your Theme and get the latest version of the test data you see here.
    6. +
    7. See Releasing Your Theme for a guide to submitting your Theme to the Theme Directory.
    8. +
    ]]>
    + + 2 + 2010-07-25 19:40:01 + 2010-07-26 02:40:01 + closed + closed + about + publish + 0 + 1 + page + + 0 +
    + + Lorem Ipsum + https://wpthemetestdata.wordpress.com/lorem-ipsum/ + Tue, 04 Sep 2007 16:52:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/lorem-ipsum/ + + + + 146 + 2007-09-04 09:52:50 + 2007-09-04 16:52:50 + closed + closed + lorem-ipsum + publish + 0 + 7 + page + + 0 + + + Page with comments + https://wpthemetestdata.wordpress.com/about/page-with-comments/ + Tue, 04 Sep 2007 17:47:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/page-with-comments/ + + + + 155 + 2007-09-04 10:47:47 + 2007-09-04 17:47:47 + open + closed + page-with-comments + publish + 2 + 3 + page + + 0 + + 167 + + anon@example.com + + + 2007-09-04 10:49:28 + 2007-09-04 00:49:28 + + 1 + + 0 + 0 + + + 168 + + tellyworth+test2@example.com + + + 2007-09-04 10:49:03 + 2007-09-04 00:49:03 + + 1 + + 0 + 0 + + + 169 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2007-09-04 10:48:51 + 2007-09-04 17:48:51 + + 1 + + 0 + 0 + + + 1017 + + themereviewteam@gmail.com + + + 2014-12-10 01:56:24 + 2014-12-10 08:56:24 + + 0 + + 168 + 0 + + + + Page with comments disabled + https://wpthemetestdata.wordpress.com/about/page-with-comments-disabled/ + Tue, 04 Sep 2007 17:48:10 +0000 + themedemos + https://wpthemetestdata.wordpress.com/page-with-comments-disabled/ + + + + 156 + 2007-09-04 10:48:10 + 2007-09-04 17:48:10 + closed + closed + page-with-comments-disabled + publish + 2 + 4 + page + + 0 + + + Level 3 + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3/ + Tue, 11 Dec 2007 06:23:16 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-3/ + + + + 172 + 2007-12-11 16:23:16 + 2007-12-11 06:23:16 + closed + closed + level-3 + publish + 173 + 0 + page + + 0 + + + Level 2 + https://wpthemetestdata.wordpress.com/level-1/level-2/ + Tue, 11 Dec 2007 06:23:33 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-2/ + + + + 173 + 2007-12-11 16:23:33 + 2007-12-11 06:23:33 + closed + closed + level-2 + publish + 174 + 0 + page + + 0 + + + Level 1 + https://wpthemetestdata.wordpress.com/level-1/ + Tue, 11 Dec 2007 23:25:40 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-1/ + + + + 174 + 2007-12-11 16:25:40 + 2007-12-11 23:25:40 + closed + closed + level-1 + publish + 0 + 5 + page + + 0 + + + Clearing Floats + https://wpthemetestdata.wordpress.com/about/clearing-floats/ + Sun, 01 Aug 2010 16:42:26 +0000 + themedemos + https://wpthemetestdata.wordpress.com/ + + This is the second page]]> + + 501 + 2010-08-01 09:42:26 + 2010-08-01 16:42:26 + closed + closed + clearing-floats + publish + 2 + 2 + page + + 0 + + + canola2 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/canola2/ + Mon, 16 Jun 2008 13:17:54 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/canola2.jpg + + + + 611 + 2008-06-16 06:17:54 + 2008-06-16 13:17:54 + open + closed + canola2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/canola2.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + dsc20050727_091048_222 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050727_091048_222/ + Mon, 16 Jun 2008 13:20:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050727_091048_222.jpg + + + + 616 + 2008-06-16 06:20:37 + 2008-06-16 13:20:37 + open + closed + dsc20050727_091048_222 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050727_091048_222.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + dsc20050813_115856_52 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050813_115856_52/ + Mon, 16 Jun 2008 13:20:57 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050813_115856_52.jpg + + + + 617 + 2008-06-16 06:20:57 + 2008-06-16 13:20:57 + open + closed + dsc20050813_115856_52 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050813_115856_52.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Front Page + https://wpthemetestdata.wordpress.com/front-page/ + Sat, 21 May 2011 01:49:43 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=701 + + + + 701 + 2011-05-20 18:49:43 + 2011-05-21 01:49:43 + open + closed + front-page + publish + 0 + 0 + page + + 0 + + + a Blog page + https://wpthemetestdata.wordpress.com/blog/ + Sat, 21 May 2011 01:51:43 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=703 + + + + 703 + 2011-05-20 18:51:43 + 2011-05-21 01:51:43 + open + closed + blog + publish + 0 + 0 + page + + 0 + + 1016 + + example@example.com + + + 2014-11-29 21:03:05 + 2014-11-30 04:03:05 + + 0 + + 0 + 0 + + + + Bell on Wharf + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/100_5478/ + Mon, 16 Jun 2008 21:34:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/100_5478.jpg + + + + 754 + 2008-06-16 14:34:50 + 2008-06-16 21:34:50 + open + closed + 100_5478 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/100_5478.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Golden Gate Bridge + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/100_5540/ + Mon, 16 Jun 2008 21:35:55 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/100_5540.jpg + + + + 755 + 2008-06-16 14:35:55 + 2008-06-16 21:35:55 + open + closed + 100_5540 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/100_5540.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sunburst Over River + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/cep00032/ + Mon, 16 Jun 2008 21:41:24 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/cep00032.jpg + + + + 756 + 2008-06-16 14:41:24 + 2008-06-16 21:41:24 + open + closed + cep00032 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/cep00032.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Boardwalk + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dcp_2082/ + Mon, 16 Jun 2008 21:41:27 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dcp_2082.jpg + + + + 757 + 2008-06-16 14:41:27 + 2008-06-16 21:41:27 + open + closed + dcp_2082 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dcp_2082.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Yachtsody in Blue + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc03149/ + Mon, 16 Jun 2008 21:41:33 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc03149.jpg + + + + 758 + 2008-06-16 14:41:33 + 2008-06-16 21:41:33 + open + closed + dsc03149 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc03149.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Rain Ripples + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc04563/ + Mon, 16 Jun 2008 21:41:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc04563.jpg + + + + 759 + 2008-06-16 14:41:37 + 2008-06-16 21:41:37 + open + closed + dsc04563 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc04563.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sydney Harbor Bridge + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc09114/ + Mon, 16 Jun 2008 21:41:41 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc09114.jpg + + + + 760 + 2008-06-16 14:41:41 + 2008-06-16 21:41:41 + open + closed + dsc09114 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc09114.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Wind Farm + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050102_192118_51/ + Mon, 16 Jun 2008 21:41:42 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050102_192118_51.jpg + + + + 761 + 2008-06-16 14:41:42 + 2008-06-16 21:41:42 + open + closed + dsc20050102_192118_51 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050102_192118_51.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Antique Farm Machinery + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20051220_160808_102/ + Mon, 16 Jun 2008 21:41:45 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_160808_102.jpg + + + + 762 + 2008-06-16 14:41:45 + 2008-06-16 21:41:45 + open + closed + dsc20051220_160808_102 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_160808_102.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Rusty Rail + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20051220_173257_119/ + Mon, 16 Jun 20081 21:47:17 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_173257_119.jpg + + + + 764 + 2008-06-16 14:47:17 + 2008-06-16 21:47:17 + open + closed + dsc20051220_173257_119 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_173257_119.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sea and Rocks + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dscn3316/ + Mon, 16 Jun 2008 21:47:20 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dscn3316.jpg + + + + 765 + 2008-06-16 14:47:20 + 2008-06-16 21:47:20 + open + closed + dscn3316 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dscn3316.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Big Sur + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/michelle_049/ + Mon, 16 Jun 2008 21:47:23 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/michelle_049.jpg + + + + 766 + 2008-06-16 14:47:23 + 2008-06-16 21:47:23 + open + closed + michelle_049 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/michelle_049.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Windmill + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dcf-1-0/ + Mon, 16 Jun 2008 21:47:26 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/windmill.jpg + + + + 767 + 2008-06-16 14:47:26 + 2008-06-16 21:47:26 + open + closed + dcf-1-0 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/windmill.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Huatulco Coastline + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/alas-i-have-found-my-shangri-la/ + Mon, 16 Jun 2008 21:49:48 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0513-1.jpg + + + + 768 + 2008-06-16 14:49:48 + 2008-06-16 21:49:48 + open + closed + alas-i-have-found-my-shangri-la + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0513-1.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Brazil Beach + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_0747/ + Mon, 16 Jun 2008 21:50:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0747.jpg + + + + 769 + 2008-06-16 14:50:37 + 2008-06-16 21:50:37 + open + closed + img_0747 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0747.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Huatulco Coastline + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_0767/ + Mon, 16 Jun 2008 21:51:19 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0767.jpg + + + + 770 + 2008-06-16 14:51:19 + 2008-06-16 21:51:19 + open + closed + img_0767 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0767.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Boat Barco Texture + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_8399/ + Mon, 16 Jun 2008 21:51:57 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_8399.jpg + + + + 771 + 2008-06-16 14:51:57 + 2008-06-16 21:51:57 + open + closed + img_8399 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_8399.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Resinous + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20040724_152504_532-2/ + Mon, 04 Jun 2012 18:36:56 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg + + + + 807 + 2012-06-04 11:36:56 + 2012-06-04 18:36:56 + open + closed + dsc20040724_152504_532-2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg + + _attachment_original_parent_id + + + + + St. Louis Blues + https://wpthemetestdata.wordpress.com/2010/07/02/post-format-audio/originaldixielandjazzbandwithalbernard-stlouisblues/ + Mon, 16 Jun 2008 16:49:29 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3 + + + + 821 + 2008-06-16 09:49:29 + 2008-06-16 16:49:29 + open + closed + originaldixielandjazzbandwithalbernard-stlouisblues + inherit + 587 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3 + + + OLYMPUS DIGITAL CAMERA + https://wpthemetestdata.wordpress.com/about/clearing-floats/olympus-digital-camera/ + Thu, 05 Aug 2010 18:07:34 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2010/08/manhattansummer.jpg + + + + 827 + 2010-08-05 11:07:34 + 2010-08-05 18:07:34 + open + closed + olympus-digital-camera + inherit + 501 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2010/08/manhattansummer.jpg + + + Image Alignment 580x300 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-580x300/ + Fri, 15 Mar 2013 00:44:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg + + + + 967 + 2013-03-14 19:44:50 + 2013-03-15 00:44:50 + open + open + image-alignment-580x300 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Image Alignment 150x150 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-150x150/ + Fri, 15 Mar 2013 00:44:49 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg + + + + 968 + 2013-03-14 19:44:49 + 2013-03-15 00:44:49 + open + open + image-alignment-150x150 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Horizontal Featured Image + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-horizontal/featured-image-horizontal-2/ + Fri, 15 Mar 2013 20:40:38 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-horizontal.jpg + + + + 1022 + 2013-03-15 15:40:38 + 2013-03-15 20:40:38 + open + open + featured-image-horizontal-2 + inherit + 1011 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-horizontal.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + I Am Worth Loving Wallpaper + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/soworthloving-wallpaper/ + Thu, 14 Mar 2013 14:58:24 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/soworthloving-wallpaper.jpg + + + + 1023 + 2013-03-14 09:58:24 + 2013-03-14 14:58:24 + open + open + soworthloving-wallpaper + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/soworthloving-wallpaper.jpg + + _wp_attachment_image_alt + + + + + Image Alignment 300x200 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-300x200/ + Fri, 15 Mar 2013 00:44:49 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg + + + + 1025 + 2013-03-14 19:44:49 + 2013-03-15 00:44:49 + open + open + image-alignment-300x200 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Vertical Featured Image + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-vertical/featured-image-vertical-2/ + Fri, 15 Mar 2013 20:41:09 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-vertical.jpg + + + + 1027 + 2013-03-15 15:41:09 + 2013-03-15 20:41:09 + open + open + featured-image-vertical-2 + inherit + 1016 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-vertical.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Image Alignment 1200x4002 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-1200x4002/ + Fri, 15 Mar 2013 00:44:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg + + + + 1029 + 2013-03-14 19:44:50 + 2013-03-15 00:44:50 + open + open + image-alignment-1200x4002 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Unicorn Wallpaper + https://wpthemetestdata.wordpress.com/2010/08/08/post-format-image/unicorn-wallpaper/ + Fri, 14 Dec 2012 03:10:39 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2012/12/unicorn-wallpaper.jpg + + + + 1045 + 2012-12-13 22:10:39 + 2012-12-14 03:10:39 + open + open + unicorn-wallpaper + inherit + 1158 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2012/12/unicorn-wallpaper.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Pages + https://wpthemetestdata.wordpress.com/2013/04/09/pages/ + Tue, 09 Apr 2013 13:37:45 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/pages + + + + 1100 + 2013-04-09 06:37:45 + 2013-04-09 13:37:45 + open + closed + pages + publish + 0 + 2 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Categories + https://wpthemetestdata.wordpress.com/2013/04/09/categories/ + Tue, 09 Apr 2013 13:37:45 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/categories + + + + 1101 + 2013-04-09 06:37:45 + 2013-04-09 13:37:45 + open + closed + categories + publish + 0 + 10 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1112/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1112</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test markup tags and styles.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1112</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1112</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>21</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[4675]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1115/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1115</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test post formats.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1115</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1115</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>24</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[44090582]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1118/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1118</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test unpublished posts.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1118</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1118</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>28</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[54090]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>Depth + https://wpthemetestdata.wordpress.com/2013/04/09/depth/ + Tue, 09 Apr 2013 13:37:46 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/depth + + + + 1119 + 2013-04-09 06:37:46 + 2013-04-09 13:37:46 + open + closed + depth + publish + 0 + 29 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 01 + https://wpthemetestdata.wordpress.com/2013/04/09/level-01/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-01 + + + + 1120 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-01 + publish + 0 + 30 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 02 + https://wpthemetestdata.wordpress.com/2013/04/09/level-02/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-02 + + + + 1121 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-02 + publish + 0 + 31 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 03 + https://wpthemetestdata.wordpress.com/2013/04/09/level-03/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-03 + + + + 1122 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-03 + publish + 0 + 32 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 04 + https://wpthemetestdata.wordpress.com/2013/04/09/level-04/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-04 + + + + 1123 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-04 + publish + 0 + 33 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 05 + https://wpthemetestdata.wordpress.com/2013/04/09/level-05/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-05 + + + + 1124 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-05 + publish + 0 + 34 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 06 + https://wpthemetestdata.wordpress.com/2013/04/09/level-06/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-06 + + + + 1125 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-06 + publish + 0 + 35 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 07 + https://wpthemetestdata.wordpress.com/2013/04/09/level-07/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-07 + + + + 1126 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-07 + publish + 0 + 36 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 08 + https://wpthemetestdata.wordpress.com/2013/04/09/level-08/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-08 + + + + 1127 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-08 + publish + 0 + 37 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 09 + https://wpthemetestdata.wordpress.com/2013/04/09/level-09/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-09 + + + + 1128 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-09 + publish + 0 + 38 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 10 + https://wpthemetestdata.wordpress.com/2013/04/09/level-10/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-10 + + + + 1129 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-10 + publish + 0 + 39 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Advanced + https://wpthemetestdata.wordpress.com/2013/04/09/advanced/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/advanced + + + + 1130 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + advanced + publish + 0 + 40 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu Description + https://wpthemetestdata.wordpress.com/2013/04/09/menu-description/ + Tue, 09 Apr 2013 13:37:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-description + + + + 1142 + 2013-04-09 06:37:50 + 2013-04-09 13:37:50 + open + closed + menu-description + publish + 0 + 44 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu Title Attribute + https://wpthemetestdata.wordpress.com/2013/04/09/menu-title-attribute/ + Tue, 09 Apr 2013 13:37:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-title-attribute + + + + 1143 + 2013-04-09 06:37:50 + 2013-04-09 13:37:50 + open + closed + menu-title-attribute + publish + 0 + 41 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu CSS Class + https://wpthemetestdata.wordpress.com/2013/04/09/menu-css-class/ + Tue, 09 Apr 2013 13:37:51 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-css-class + + + + 1144 + 2013-04-09 06:37:51 + 2013-04-09 13:37:51 + open + closed + menu-css-class + publish + 0 + 42 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + New Window / Tab + https://wpthemetestdata.wordpress.com/2013/04/09/new-window-tab/ + Tue, 09 Apr 2013 13:37:51 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/new-window-tab + + + + 1145 + 2013-04-09 06:37:51 + 2013-04-09 13:37:51 + open + closed + new-window-tab + publish + 0 + 43 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1263/</link> + <pubDate>Tue, 09 Apr 2013 13:38:00 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1263</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1263</wp:post_id> + <wp:post_date>2013-04-09 06:38:00</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:38:00</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1263</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1100]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1264/</link> + <pubDate>Tue, 09 Apr 2013 13:38:01 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1264</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1264</wp:post_id> + <wp:post_date>2013-04-09 06:38:01</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:38:01</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1264</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1100]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>twitter.com + https://wpthemetestdata.wordpress.com/2018/10/20/twitter-com/ + Sun, 21 Oct 2018 02:57:33 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/twitter-com/ + + + + 1719 + + + + + + + 0 + 1 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + facebook.com + https://wpthemetestdata.wordpress.com/2018/10/20/facebook-com/ + Sun, 21 Oct 2018 02:57:35 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/facebook-com/ + + + + 1720 + + + + + + + 0 + 2 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + github.com + https://wpthemetestdata.wordpress.com/2018/10/20/github-com/ + Sun, 21 Oct 2018 02:57:37 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/github-com + + + + 1721 + + + + + + + 0 + 3 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + instagram.com + https://wpthemetestdata.wordpress.com/2018/10/20/instagram-com + Sun, 21 Oct 2018 02:57:41 +000 + themereviewteam> + https://wpthemetestdata.wordpress.com/2018/10/20/instagram-com + + + + 1723 + + + + + + + 0 + 5 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + linkedin.com + https://wpthemetestdata.wordpress.com/2018/10/20/linkedin-com/ + Sun, 21 Oct 2018 02:57:39 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/linkedin-com/ + + + + 1722 + + + + + + + 0 + 4 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + triforce-wallpaper + https://wpthemetestdata.wordpress.com/2010/08/07/post-format-image-caption/triforce-wallpaper/ + Tue, 17 Aug 2010 20:17:31 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2010/08/triforce-wallpaper.jpg + + + + 1628 + 2010-08-17 13:17:31 + 2010-08-17 20:17:31 + open + closed + triforce-wallpaper + inherit + 1163 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2010/08/triforce-wallpaper.jpg + + + + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1636/</link> + <pubDate>Tue, 07 May 2013 19:54:30 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1636</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1636</wp:post_id> + <wp:post_date>2013-05-07 12:54:30</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:30</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1636</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1637/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1637</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1637</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1637</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1638/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1638</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1638</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1638</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1639/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1639</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1639</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1639</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1640/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1640</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1640</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1640</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1641/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1641</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1641</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1641</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1643/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1643</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1643</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1643</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1644/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1644</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1644</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1644</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[701]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1645/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1645</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1645</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1645</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1646/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1646</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1646</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1646</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1647/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1647</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1647</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1647</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1648/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1648</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1648</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1648</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1649/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1649</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1649</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1649</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1650/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1650</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1650</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1650</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1651/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1651</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1651</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1651</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>10</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[174]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1652/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1652</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1652</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1652</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>11</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[173]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1653/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1653</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1653</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1653</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>12</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[172]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1654/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1654</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1654</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1654</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>13</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[746]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1655/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1655</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1655</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1655</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>14</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[748]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1656/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1656</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1656</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1656</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>15</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[742]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1657/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1657</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1657</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1657</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>16</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[744]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1658/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1658</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1658</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1658</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>17</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1659/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1659</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1659</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1659</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>18</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[733]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1660/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1660</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1660</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1660</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>19</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[735]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1643/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1643</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1643</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1643</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1644/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1644</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1644</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1644</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[701]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1645/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1645</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1645</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1645</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1646/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1646</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1646</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1646</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1647/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1647</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1647</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1647</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1648/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1648</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1648</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1648</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1649/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1649</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1649</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1649</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1650/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1650</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1650</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1650</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1651/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1651</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1651</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1651</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>10</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[174]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1652/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1652</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1652</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1652</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>11</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[173]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1653/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1653</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1653</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1653</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>12</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[172]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1654/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1654</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1654</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1654</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>13</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[746]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1655/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1655</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1655</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1655</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>14</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[748]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1656/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1656</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1656</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1656</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>15</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[742]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1657/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1657</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1657</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1657</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>16</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[744]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1658/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1658</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1658</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1658</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>17</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1659/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1659</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1659</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1659</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>18</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[733]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1660/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1660</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1660</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1660</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>19</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[735]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>dsc20040724_152504_532 + https://wpthemetestdata.wordpress.com/?attachment_id=1686 + Wed, 18 Sep 2013 21:37:05 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20040724_152504_532.jpg + + + + 1686 + 2013-09-18 14:37:05 + 2013-09-18 21:37:05 + open + closed + dsc20040724_152504_532 + inherit + 0 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20040724_152504_532.jpg + + + dsc20050604_133440_34211 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050604_133440_34211/ + Wed, 18 Sep 2013 21:37:07 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20050604_133440_34211.jpg + + + + 1687 + 2013-09-18 14:37:07 + 2013-09-18 21:37:07 + open + closed + dsc20050604_133440_34211 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20050604_133440_34211.jpg + + + 2014-slider-mobile-behavior + https://wpthemetestdata.wordpress.com/?attachment_id=1690 + Wed, 04 Dec 2013 18:08:29 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/12/2014-slider-mobile-behavior.mov + + + + 1690 + 2013-12-04 11:08:29 + 2013-12-04 18:08:29 + open + closed + 2014-slider-mobile-behavior + inherit + 0 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/12/2014-slider-mobile-behavior.mov + + + dsc20050315_145007_132 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050315_145007_132-2/ + Sun, 05 Jan 2014 18:45:21 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2014/01/dsc20050315_145007_132.jpg + + + + 1691 + 2014-01-05 11:45:21 + 2014-01-05 18:45:21 + open + closed + dsc20050315_145007_132-2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2014/01/dsc20050315_145007_132.jpg + + + spectacles + https://wpthemetestdata.wordpress.com/about/clearing-floats/spectacles-2/ + Sun, 05 Jan 2014 18:45:36 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2014/01/spectacles.gif + + + + 1692 + 2014-01-05 11:45:36 + 2014-01-05 18:45:36 + open + closed + spectacles-2 + inherit + 501 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2014/01/spectacles.gif + + + Post Format: Standard + https://wpthemetestdata.wordpress.com/2010/10/05/post-format-standard/ + Tue, 05 Oct 2010 07:27:25 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=358 + + + +Mrs. Darling first heard of Peter when she was tidying up her children's minds. It is the nightly custom of every good mother after her children are asleep to rummage in their minds and put things straight for next morning, repacking into their proper places the many articles that have wandered during the day. + +If you could keep awake (but of course you can't) you would see your own mother doing this, and you would find it very interesting to watch her. It is quite like tidying up drawers. You would see her on her knees, I expect, lingering humorously over some of your contents, wondering where on earth you had picked this thing up, making discoveries sweet and not so sweet, pressing this to her cheek as if it were as nice as a kitten, and hurriedly stowing that out of sight. When you wake in the morning, the naughtiness and evil passions with which you went to bed have been folded up small and placed at the bottom of your mind and on the top, beautifully aired, are spread out your prettier thoughts, ready for you to put on. + +I don't know whether you have ever seen a map of a person's mind. Doctors sometimes draw maps of other parts of you, and your own map can become intensely interesting, but catch them trying to draw a map of a child's mind, which is not only confused, but keeps going round all the time. There are zigzag lines on it, just like your temperature on a card, and these are probably roads in the island, for the Neverland is always more or less an island, with astonishing splashes of colour here and there, and coral reefs and rakish-looking craft in the offing, and savages and lonely lairs, and gnomes who are mostly tailors, and caves through which a river runs, and princes with six elder brothers, and a hut fast going to decay, and one very small old lady with a hooked nose. It would be an easy map if that were all, but there is also first day at school, religion, fathers, the round pond, needle-work, murders, hangings, verbs that take the dative, chocolate pudding day, getting into braces, say ninety-nine, three-pence for pulling out your tooth yourself, and so on, and either these are part of the island or they are another map showing through, and it is all rather confusing, especially as nothing will stand still. + +Of course the Neverlands vary a good deal. John's, for instance, had a lagoon with flamingoes flying over it at which John was shooting, while Michael, who was very small, had a flamingo with lagoons flying over it. John lived in a boat turned upside down on the sands, Michael in a wigwam, Wendy in a house of leaves deftly sewn together. John had no friends, Michael had friends at night, Wendy had a pet wolf forsaken by its parents, but on the whole the Neverlands have a family resemblance, and if they stood still in a row you could say of them that they have each other's nose, and so forth. On these magic shores children at play are for ever beaching their coracles [simple boat]. We too have been there; we can still hear the sound of the surf, though we shall land no more. + +Of all delectable islands the Neverland is the snuggest and most compact, not large and sprawly, you know, with tedious distances between one adventure and another, but nicely crammed. When you play at it by day with the chairs and table-cloth, it is not in the least alarming, but in the two minutes before you go to sleep it becomes very real. That is why there are night-lights. + +Occasionally in her travels through her children's minds Mrs. Darling found things she could not understand, and of these quite the most perplexing was the word Peter. She knew of no Peter, and yet he was here and there in John and Michael's minds, while Wendy's began to be scrawled all over with him. The name stood out in bolder letters than any of the other words, and as Mrs. Darling gazed she felt that it had an oddly cocky appearance.]]> + + 358 + 2010-10-05 00:27:25 + 2010-10-05 07:27:25 + closed + closed + post-format-standard + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Gallery + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/ + Fri, 10 Sep 2010 14:24:14 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=555 + + + +You can use this page to test the Theme's handling of the gallery shortcode, including the columns parameter, from 1 to 9 columns. Themes are only required to support the default setting (3 columns), so this page is entirely optional. +

    One Column

    +[gallery columns="1"] +

    Two Columns

    +[gallery columns="2"] +

    Three Columns

    +[gallery columns="3"] +

    Four Columns

    +[gallery columns="4"] +

    Five Columns

    +[gallery columns="5"] +

    Six Columns

    +[gallery columns="6"] +

    Seven Columns

    +[gallery columns="7"] +

    Eight Columns

    +[gallery columns="8"] +

    Nine Columns

    +[gallery columns="9"]]]>
    + + 555 + 2010-09-10 07:24:14 + 2010-09-10 14:24:14 + closed + closed + post-format-gallery + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Post Format: Aside + https://wpthemetestdata.wordpress.com/2010/05/09/post-format-aside/ + Sun, 09 May 2010 14:51:54 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=559 + + + + 559 + 2010-05-09 07:51:54 + 2010-05-09 14:51:54 + closed + closed + post-format-aside + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Chat + https://wpthemetestdata.wordpress.com/2010/01/08/post-format-chat/ + Fri, 08 Jan 2010 14:59:31 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=562 + + + + 562 + 2010-01-08 07:59:31 + 2010-01-08 14:59:31 + closed + closed + post-format-chat + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Link + https://wpthemetestdata.wordpress.com/2010/03/07/post-format-link/ + Sun, 07 Mar 2010 15:06:53 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=565 + + The WordPress Theme Review Team Website]]> + + 565 + 2010-03-07 08:06:53 + 2010-03-07 15:06:53 + closed + closed + post-format-link + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Image (Linked) + https://wpthemetestdata.wordpress.com/2010/08/06/post-format-image-linked/ + Fri, 06 Aug 2010 15:09:39 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=568 + + chunk of resinous blackboy husk[/caption] +]]> + + 568 + 2010-08-06 08:09:39 + 2010-08-06 15:09:39 + closed + closed + post-format-image-linked + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Quote + https://wpthemetestdata.wordpress.com/2010/02/05/post-format-quote/ + Fri, 05 Feb 2010 15:13:15 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=575 + + Only one thing is impossible for God: To find any sense in any copyright law on the planet. +Mark Twain]]> + + 575 + 2010-02-05 08:13:15 + 2010-02-05 15:13:15 + closed + closed + post-format-quote + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Status + https://wpthemetestdata.wordpress.com/2010/04/04/post-format-status/ + Sun, 04 Apr 2010 15:21:24 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=579 + + + + 579 + 2010-04-04 08:21:24 + 2010-04-04 15:21:24 + closed + closed + post-format-status + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Video (WordPress.tv) + https://wpthemetestdata.wordpress.com/2010/06/03/post-format-video-wordpresstv/ + Thu, 03 Jun 2010 15:25:58 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=582 + + instructions in the Codex.]]> + + 582 + 2010-06-03 08:25:58 + 2010-06-03 15:25:58 + closed + closed + post-format-video-wordpresstv + publish + 0 + 0 + post + + 0 + + + + + + + + + _oembed_4321638fc1a6fee26443f7fe8a70a871 + ]]> + + + _oembed_29351fff85c1be1d1e9a965a0332a861 + ]]> + + + _oembed_9fcc86d7d9398ff736577f922307f64d + ]]> + + + _oembed_366237792d32461d0052efb2edec37f5 + ]]> + + + _oembed_37fdfe862c13c46a93be2921279bf675 + ]]> + + + + Post Format: Audio + https://wpthemetestdata.wordpress.com/2010/07/02/post-format-audio/ + Fri, 02 Jul 2010 15:36:44 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=587 + + St. Louis Blues + +Audio shortcode: + +[audio https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3]]]> + + 587 + 2010-07-02 08:36:44 + 2010-07-02 15:36:44 + closed + closed + post-format-audio + publish + 0 + 0 + post + + 0 + + + + + + + + enclosure + + + + + Page A + https://wpthemetestdata.wordpress.com/page-a/ + Fri, 24 Jun 2011 01:38:52 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=733 + + + + 733 + 2011-06-23 18:38:52 + 2011-06-24 01:38:52 + open + closed + page-a + publish + 0 + 10 + page + + 0 + + + Page B + https://wpthemetestdata.wordpress.com/page-b/ + Fri, 24 Jun 2011 01:39:14 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=735 + + + + 735 + 2011-06-23 18:39:14 + 2011-06-24 01:39:14 + open + closed + page-b + publish + 0 + 11 + page + + 0 + + + Level 2a + https://wpthemetestdata.wordpress.com/level-1/level-2a/ + Fri, 24 Jun 2011 02:03:33 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=742 + + + + 742 + 2011-06-23 19:03:33 + 2011-06-24 02:03:33 + open + closed + level-2a + publish + 174 + 0 + page + + 0 + + + Level 2b + https://wpthemetestdata.wordpress.com/level-1/level-2b/ + Fri, 24 Jun 2011 02:04:03 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=744 + + + + 744 + 2011-06-23 19:04:03 + 2011-06-24 02:04:03 + open + closed + level-2b + publish + 174 + 0 + page + + 0 + + + Level 3a + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3a/ + Fri, 24 Jun 2011 02:04:24 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=746 + + + + 746 + 2011-06-23 19:04:24 + 2011-06-24 02:04:24 + open + closed + level-3a + publish + 173 + 0 + page + + 0 + + + Level 3b + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3b/ + Fri, 24 Jun 2011 02:04:46 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=748 + + + + 748 + 2011-06-23 19:04:46 + 2011-06-24 02:04:46 + open + closed + level-3b + publish + 173 + 0 + page + + 0 + + + Template: Excerpt (Defined) + https://wpthemetestdata.wordpress.com/2012/03/15/template-excerpt-defined/ + Thu, 15 Mar 2012 21:38:08 +0000 + themedemos + http://wptest.io/demo/?p=993 + + should be displayed in place of the user-defined excerpt in single-page views.]]> + should be displayed in place of the post content in archive-index pages. It can be longer than the automatically generated excerpts, and can have HTML tags.]]> + 993 + 2012-03-15 14:38:08 + 2012-03-15 21:38:08 + closed + closed + template-excerpt-defined + publish + 0 + 0 + post + + 0 + + + + + + + + + Template: More Tag + https://wpthemetestdata.wordpress.com/2012/03/15/template-more-tag/ + Thu, 15 Mar 2012 21:41:11 +0000 + themedemos + http://wptest.io/demo/?p=996 + + more tag. + +Right after this sentence should be a "continue reading" button of some sort on list pages of themes that show full content. It won't show on single pages or on themes showing excerpts. + + + +And this content is after the more tag. (which should be the anchor link for when the button is clicked)]]> + + 996 + 2012-03-15 14:41:11 + 2012-03-15 21:41:11 + closed + closed + template-more-tag + publish + 0 + 0 + post + + 0 + + + + + + + + + Edge Case: Nested And Mixed Lists + https://wpthemetestdata.wordpress.com/2009/05/15/edge-case-nested-and-mixed-lists/ + Fri, 15 May 2009 21:48:32 +0000 + themedemos + http://wptest.io/demo/?p=1000 + + +
  • Lists within lists do not break the ordered list numbering order
  • +
  • Your list styles go deep enough.
  • + +

    Ordered - Unordered - Ordered

    +
      +
    1. ordered item
    2. +
    3. ordered item +
        +
      • unordered
      • +
      • unordered +
          +
        1. ordered item
        2. +
        3. ordered item
        4. +
        +
      • +
      +
    4. +
    5. ordered item
    6. +
    7. ordered item
    8. +
    +

    Ordered - Unordered - Unordered

    +
      +
    1. ordered item
    2. +
    3. ordered item +
        +
      • unordered
      • +
      • unordered +
          +
        • unordered item
        • +
        • unordered item
        • +
        +
      • +
      +
    4. +
    5. ordered item
    6. +
    7. ordered item
    8. +
    +

    Unordered - Ordered - Unordered

    +
      +
    • unordered item
    • +
    • unordered item +
        +
      1. ordered
      2. +
      3. ordered +
          +
        • unordered item
        • +
        • unordered item
        • +
        +
      4. +
      +
    • +
    • unordered item
    • +
    • unordered item
    • +
    +

    Unordered - Unordered - Ordered

    +
      +
    • unordered item
    • +
    • unordered item +
        +
      • unordered
      • +
      • unordered +
          +
        1. ordered item
        2. +
        3. ordered item
        4. +
        +
      • +
      +
    • +
    • unordered item
    • +
    • unordered item
    • +
    ]]>
    + + 1000 + 2009-05-15 14:48:32 + 2009-05-15 21:48:32 + closed + closed + edge-case-nested-and-mixed-lists + publish + 0 + 0 + post + + 0 + + + + + + + +
    + + Template: Featured Image (Horizontal) + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-horizontal/ + Thu, 15 Mar 2012 22:15:12 +0000 + themedemos + http://wptest.io/demo/?p=1011 + + featured image, if the theme supports it. + +Non-square images can provide some unique styling issues. + +This post tests a horizontal featured image.]]> + + 1011 + 2012-03-15 15:15:12 + 2012-03-15 22:15:12 + closed + closed + template-featured-image-horizontal + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + + + + Template: Featured Image (Vertical) + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-vertical/ + Thu, 15 Mar 2012 22:36:32 +0000 + themedemos + http://wptest.io/demo/?p=1016 + + featured image, if the theme supports it. + +Non-square images can provide some unique styling issues. + +This post tests a vertical featured image.]]> + + 1016 + 2012-03-15 15:36:32 + 2012-03-15 22:36:32 + closed + closed + template-featured-image-vertical + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + + + + Post Format: Gallery (Tiled) + https://wpthemetestdata.wordpress.com/2010/09/09/post-format-gallery-tiled/ + Fri, 10 Sep 2010 00:23:27 +0000 + themedemos + http://wptest.io/demo/?p=1031 + + Jetpack to test. + +[gallery type="rectangular" columns="4" ids="755,757,758,760,766,763" orderby="rand"] + +This is some text after the Tiled Gallery just to make sure that everything spaces nicely.]]> + + 1031 + 2010-09-09 17:23:27 + 2010-09-10 00:23:27 + closed + closed + post-format-gallery-tiled + publish + 0 + 0 + post + + 0 + + + + + + + + + + + Page Image Alignment + https://wpthemetestdata.wordpress.com/about/page-image-alignment/ + Fri, 15 Mar 2013 23:19:23 +0000 + themedemos + http://wptest.io/demo/?page_id=1080 + + None, Left, Right, and Center. In addition, they also get the options of Thumbnail, Medium, Large & Fullsize. Be sure to try this page in RTL mode and it should look the same as LTR. +

    Image Alignment 580x300

    +The image above happens to be centered. + +Image Alignment 150x150 The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see there should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +Image Alignment 1200x400 + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 1200x400 + +And we try the large image again, with the center alignment since that sometimes is a problem. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 300x200 + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And just when you thought we were done, we're going to do them all over again with captions! + +[caption id="attachment_906" align="aligncenter" width="580"]Image Alignment 580x300 Look at 580x300 getting some caption love.[/caption] + +The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky. + +[caption id="attachment_904" align="alignleft" width="150"]Image Alignment 150x150 Bigger caption than the image usually is.[/caption] + +The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +[caption id="attachment_907" align="alignnone" width="1200"]Image Alignment 1200x400 Comment for massive image for your eyeballs.[/caption] + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. +[caption id="attachment_907" align="aligncenter" width="1200"]Image Alignment 1200x400 This massive image is centered.[/caption] + +And again with the big image centered. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +[caption id="attachment_905" align="alignright" width="300"]Image Alignment 300x200 Feels good to be right all the time.[/caption] + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! Last thing is a small image aligned right. Whatever follows should be unaffected. Image Alignment 150x150]]>
    + + 1133 + 2013-03-15 18:19:23 + 2013-03-15 23:19:23 + open + open + page-image-alignment + publish + 2 + 0 + page + + 0 +
    + + Page Markup And Formatting + https://wpthemetestdata.wordpress.com/about/page-markup-and-formatting/ + Fri, 15 Mar 2013 23:20:05 +0000 + themedemos + http://wptest.io/demo/?page_id=1083 + + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    Jane$1Because that's all Steve Jobs needed for a salary.
    John$100KFor all the blogging he does.
    Jane$100MPictures are worth a thousand words, right? So Tom x 1,000.
    Jane$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    + Robert Frost
    +
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +This tag shows strike-through text. + +Small Tag + +This tag shows smaller text. + +Strong Tag + +This tag shows bold text. + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +This rarely used tag emulates teletype text, which is usually styled like the <code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +This tag shows underlined text. + +Variable Tag + +This allows you to denote variables.]]>
    + + 1134 + 2013-03-15 18:20:05 + 2013-03-15 23:20:05 + open + open + page-markup-and-formatting + publish + 2 + 0 + page + + 0 +
    + + Template: Comments + https://wpthemetestdata.wordpress.com/2012/01/03/template-comments/ + Tue, 03 Jan 2012 17:11:37 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/comment-test/ + + +
  • Threaded comments up to 10 levels deep
  • +
  • Paginated comments (set Settings > Discussion > Break comments into pages to 5 top level comments per page)
  • +
  • Comment markup / formatting
  • +
  • Comment images
  • +
  • Comment videos
  • +
  • Author comments
  • +
  • Gravatars and default fallbacks
  • +]]>
    + + 1148 + 2012-01-03 10:11:37 + 2012-01-03 17:11:37 + open + closed + template-comments + publish + 0 + 0 + post + + 0 + + + + + + + 881 + + example@example.org + http://example.org/ + + 2012-09-03 10:18:04 + 2012-09-03 17:18:04 + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    John Saddington$1Because that's all Steve Job' needed for a salary.
    Tom McFarlin$100KFor all the blogging he does.
    Jared Erickson$100MPictures are worth a thousand words, right? So Tom x 1,000.
    Chris Ames$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    + +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    +Robert Frost
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    + +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up.]]>
    + 1 + + 0 + 0 +
    + + 899 + + fake@example.com + + + 2013-03-11 23:45:54 + 2013-03-12 04:45:54 + Gravatar associated with it. + They did not speify a website, so there should be no link to it in the comment. +]]> + 1 + + 0 + 0 + + + 900 + + example@example.org + http://example.org/ + + 2013-03-12 13:17:35 + 2013-03-12 20:17:35 + + 1 + + 0 + 0 + + + 901 + + example@example.org + http://example.org + + 2013-03-14 07:53:26 + 2013-03-14 14:53:26 + + 1 + + 0 + 0 + + + 903 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 07:56:46 + 2013-03-14 14:56:46 + + 1 + + 0 + 24783058 + + + 904 + + example@example.org + http://example.org/ + + 2013-03-14 07:57:01 + 2013-03-14 14:57:01 + + 1 + + 0 + 0 + + + 905 + + example@example.org + http://example.org/ + + 2013-03-14 08:01:21 + 2013-03-14 15:01:21 + + 1 + + 904 + 0 + + + 906 + + example@example.org + http://example.org/ + + 2013-03-14 08:02:06 + 2013-03-14 15:02:06 + + 1 + + 905 + 0 + + + 907 + + example@example.org + http://example.org/ + + 2013-03-14 08:03:22 + 2013-03-14 15:03:22 + + 1 + + 906 + 0 + + + 910 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 08:10:29 + 2013-03-14 15:10:29 + + 1 + + 907 + 24783058 + + + 911 + + example@example.org + http://example.org/ + + 2013-03-14 08:12:16 + 2013-03-14 15:12:16 + + 1 + + 910 + 0 + + + 912 + + example@example.org + http://example.org/ + + 2013-03-14 08:12:58 + 2013-03-14 15:12:58 + + 1 + + 911 + 0 + + + 913 + + example@example.org + http://example.org/ + + 2013-03-14 08:13:42 + 2013-03-14 15:13:42 + + 1 + + 912 + 0 + + + 914 + + example@example.org + http://example.org/ + + 2013-03-14 08:14:13 + 2013-03-14 15:14:13 + + 1 + + 913 + 0 + + + 915 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 08:14:47 + 2013-03-14 15:14:47 + + 1 + + 914 + 24783058 + + + 917 + + example@example.org + http://example.org/ + + 2013-03-14 09:56:43 + 2013-03-14 16:56:43 + + If the image imports... + ]]> + 1 + + 0 + 0 + + + 918 + + example@example.org + http://example.org/ + + 2013-03-14 11:23:24 + 2013-03-14 18:23:24 + + 1 + + 0 + 0 + + + 919 + + example@example.org + http://example.org/ + + 2013-03-14 11:27:54 + 2013-03-14 18:27:54 + + 1 + + 0 + 0 + + + 920 + + example@example.org + http://example.org/ + + 2013-03-14 11:30:33 + 2013-03-14 18:30:33 + + 1 + + 0 + 24783058 + + + 1015 + + auser@example.com + + + 2014-09-29 02:52:15 + 2014-09-29 09:52:15 + + 0 + + 0 + 0 + +
    + + Template: Pingbacks And Trackbacks + https://wpthemetestdata.wordpress.com/2012/01/01/template-pingbacks-an-trackbacks/ + Sun, 01 Jan 2012 17:17:18 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/many-trackbacks/ + + +
  • Above the comments
  • +
  • Below the comments
  • +
  • Included within the normal flow of comments
  • +]]>
    + + 1149 + 2012-01-01 10:17:18 + 2012-01-01 17:17:18 + closed + closed + template-pingbacks-an-trackbacks + publish + 0 + 0 + post + + 0 + + + + + + + + + 921 + + + http://tellyworth.wordpress.com/2007/11/21/ping-1/ + + 2007-11-21 11:31:12 + 2007-11-21 01:31:12 + + 1 + trackback + 0 + 0 + + + 922 + + + http://tellyworth.wordpress.com/2007/11/21/ping-2-with-a-much-longer-title-than-the-previous-ping-which-was-called-ping-1/ + + 2007-11-21 11:35:47 + 2007-11-21 01:35:47 + + 1 + trackback + 0 + 0 + + + 923 + + + http://tellyworth.wordpress.com/2007/11/21/ping-4/ + + 2007-11-21 11:39:25 + 2007-11-21 01:39:25 + + 1 + pingback + 0 + 0 + + + 924 + + + http://tellyworth.wordpress.com/2007/11/21/ping-3/ + + 2007-11-21 11:38:22 + 2007-11-21 01:38:22 + + 1 + pingback + 0 + 0 + + + 925 + + example@example.org + http://example.org/ + + 2010-06-11 15:27:04 + 2010-06-11 22:27:04 + + 1 + + 0 + 0 + +
    + + Template: Comments Disabled + https://wpthemetestdata.wordpress.com/2012/01/02/template-comments-disabled/ + Mon, 02 Jan 2012 17:21:15 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/no-comments/ + + should display pingbacks and trackbacks.]]> + + 1150 + 2012-01-02 10:21:15 + 2012-01-02 17:21:15 + closed + closed + template-comments-disabled + publish + 0 + 0 + post + + 0 + + + + + + + + Edge Case: Many Tags + https://wpthemetestdata.wordpress.com/2009/06/01/edge-case-many-tags/ + Mon, 01 Jun 2009 08:00:34 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/11/24/many-tags/ + + + + 1151 + 2009-06-01 01:00:34 + 2009-06-01 08:00:34 + closed + closed + edge-case-many-tags + publish + 0 + 0 + post + + 0' + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Edge Case: Many Categories + https://wpthemetestdata.wordpress.com/2009/07/02/edge-case-many-categories/ + Thu, 02 Jul 2009 09:00:03 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/11/24/many-categories/ + + + + 1152 + 2009-07-02 02:00:03 + 2009-07-02 09:00:03 + closed + closed + edge-case-many-categories + publish + 0 + 0 + post + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Scheduled + https://wpthemetestdata.wordpress.com/2020/01/01/scheduled/ + Wed, 01 Jan 2030 19:00:18 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=418 + + + + 1153 + 2030-01-01 12:00:18 + 2030-01-01 19:00:18 + closed + closed + scheduled + future + 0 + 0 + post + + 0 + + + + + + Post Format: Image + https://wpthemetestdata.wordpress.com/2010/08/08/post-format-image/ + Sun, 08 Aug 2010 12:00:39 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=568 + +
      + +]]>
    + + 1158 + 2010-08-08 05:00:39 + 2010-08-08 12:00:39 + closed + closed + post-format-image + publish + 0 + 0 + post + + 0 + + + + + +
    + + Post Format: Video (YouTube) + https://wpthemetestdata.wordpress.com/2010/06/02/post-format-video-youtube/ + Wed, 02 Jun 2010 09:00:58 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=582 + + WordPress Embeds.]]> + + 1161 + 2010-06-02 02:00:58 + 2010-06-02 09:00:58 + closed + closed + post-format-video-youtube + publish + 0 + 0 + post + + 0 + + + + + + + Post Format: Image (Caption) + https://wpthemetestdata.wordpress.com/2010/08/07/post-format-image-caption/ + Sat, 07 Aug 2010 13:00:19 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=674 + + Bell on Wharf Bell on wharf in San Francisco[/caption]]]> + + 1163 + 2010-08-07 06:00:19 + 2010-08-07 13:00:19 + closed + closed + post-format-image-caption + publish + 0 + 0 + post + + 0 + + + + + + + + _thumbnail_id + + + + + Draft + https://wpthemetestdata.wordpress.com/?p=1164 + Tue, 09 Apr 2013 18:20:39 +0000 + themedemos + http://wptest.io/demo/?p=922 + + + + 1164 + 2013-04-09 11:20:39 + 2013-04-09 18:20:39 + closed + closed + + draft + 0 + 0 + post + + 0 + + + + + + Template: Password Protected (the password is "enter") + https://wpthemetestdata.wordpress.com/2012/01/04/template-password-protected/ + Wed, 04 Jan 2012 16:38:05 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/test-with-secret-password/ + + + + 1168 + 2012-01-04 09:38:05 + 2012-01-04 16:38:05 + closed + closed + template-password-protected + publish + 0 + 0 + post + enter + 0 + + + + + + + 926 + + example@example.org + http://example.org/ + + 2013-03-14 11:56:08 + 2013-03-14 18:56:08 + + 1 + + 0 + 0 + + + + + <link>https://wpthemetestdata.wordpress.com/2009/09/05/edge-case-no-title/</link> + <pubDate>Sat, 05 Sep 2009 16:00:23 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2007/09/04/14/</guid> + <description/> + <content:encoded><![CDATA[This post has no title, but it still must link to the single post view somehow. + +This is typically done by placing the permalink on the post date.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1169</wp:post_id> + <wp:post_date>2009-09-05 09:00:23</wp:post_date> + <wp:post_date_gmt>2009-09-05 16:00:23</wp:post_date_gmt> + <wp:comment_status>closed</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>edge-case-no-title</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>0</wp:menu_order> + <wp:post_type>post</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="category" nicename="classic"><![CDATA[Classic]]></category> + <category domain="post_tag" nicename="edge-case"><![CDATA[edge case]]></category> + <category domain="category" nicename="edge-case-2"><![CDATA[Edge Case]]></category> + <category domain="post_tag" nicename="layout"><![CDATA[layout]]></category> + <category domain="post_tag" nicename="title"><![CDATA[title]]></category> +</item> +<item> + <title>Edge Case: No Content + https://wpthemetestdata.wordpress.com/2009/08/06/edge-case-no-content/ + Thu, 06 Aug 2009 16:39:56 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/this-post-has-no-body/ + + + + 1170 + 2009-08-06 09:39:56 + 2009-08-06 16:39:56 + closed + closed + edge-case-no-content + publish + 0 + 0 + post + + 0 + + + + + + + 927 + + example@example.org + http://example.org/ + + 2013-03-14 12:35:07 + 2013-03-14 19:35:07 + + 1 + + 0 + 0 + + + + Template: Paginated + https://wpthemetestdata.wordpress.com/2012/01/08/template-paginated/ + Sun, 08 Jan 2012 17:00:20 +0000 + themedemos + https://noeltest.wordpress.com/?p=188 + + + +Post Page 2 + + + +Post Page 3]]> + + 1171 + 2012-01-08 10:00:20 + 2012-01-08 17:00:20 + closed + closed + template-paginated + publish + 0 + 0 + post + + 0 + + + + + + + + + <![CDATA[Markup: Title <em>With</em> <b>Mark<sup>up</sup></b>]]> + https://wpthemetestdata.wordpress.com/2013/01/05/markup-title-with-markup/ + Sat, 05 Jan 2013 17:00:49 +0000 + themedemos + http://wptest.io/demo/?p=861 + + +
  • The post title renders the word "with" in italics and the word "markup" in bold (and "up" is superscript).
  • +
  • The post title markup should be removed from the browser window / tab.
  • +]]>
    + + 1173 + 2013-01-05 10:00:49 + 2013-01-05 17:00:49 + closed + closed + markup-title-with-markup + publish + 0 + 0 + post + + 0 + + + + + +
    + + Markup: Title With Special Characters ~`!@#$%^&*()-_=+{}[]/\;:'"?,.> + https://wpthemetestdata.wordpress.com/2013/01/05/title-with-special-characters/ + Sat, 05 Jan 2013 18:00:20 +0000 + themedemos + http://wptest.io/demo/?p=867 + + Latin Character Tests +This is a test to see if the fonts used in this theme support basic Latin characters. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    !"#$%&'()*
    +,-./01234
    56789:;>=<
    ?@ABCDEFGH
    IJKLMNOPQR
    STUVWXYZ[\
    ]^_`abcdef
    ghijklmnop
    qrstuvwxyz
    {|}~
    ]]>
    + + 1174 + 2013-01-05 11:00:20 + 2013-01-05 18:00:20 + closed + closed + title-with-special-characters + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Taumatawhakatangihangakoauauotamateaturipukakapikimaungahoronukupokaiwhenuakitanatahu + https://wpthemetestdata.wordpress.com/2009/10/05/title-should-not-overflow-the-content-area/ + Mon, 05 Oct 2009 19:00:59 +0000 + themedemos + http://wptest.io/demo/?p=877 + + Title should not overflow the content area + +A few things to check for: +
      +
    • Non-breaking text in the title, content, and comments should have no adverse effects on layout or functionality.
    • +
    • Check the browser window / tab title.
    • +
    • If you are a plugin or widget developer, check that this text does not break anything.
    • +
    + +The following CSS properties will help you support non-breaking text. + +
    -ms-word-wrap: break-word;
    +word-wrap: break-word;
    + ]]>
    + + 1175 + 2009-10-05 12:00:59 + 2009-10-05 19:00:59 + closed + closed + title-should-not-overflow-the-content-area + publish + 0 + 0 + post + + 0 + + + + + + + + +
    + + Markup: Text Alignment + https://wpthemetestdata.wordpress.com/2013/01/09/markup-text-alignment/ + Wed, 09 Jan 2013 16:00:39 +0000 + themedemos + http://wptest.io/demo/?p=895 + + Default +This is a paragraph. It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love. Completely neutral and not picking a side or sitting on the fence. It just is. It just freaking is. It likes where it is. It does not feel compelled to pick a side. Leave him be. It will just be better that way. Trust me. +

    Left Align

    +

    This is a paragraph. It is left aligned. Because of this, it is a bit more liberal in it's views. It's favorite color is green. Left align tends to be more eco-friendly, but it provides no concrete evidence that it really is. Even though it likes share the wealth evenly, it leaves the equal distribution up to justified alignment.

    + +

    Center Align

    +

    This is a paragraph. It is center aligned. Center is, but nature, a fence sitter. A flip flopper. It has a difficult time making up its mind. It wants to pick a side. Really, it does. It has the best intentions, but it tends to complicate matters more than help. The best you can do is try to win it over and hope for the best. I hear center align does take bribes.

    + +

    Right Align

    +

    This is a paragraph. It is right aligned. It is a bit more conservative in it's views. It's prefers to not be told what to do or how to do it. Right align totally owns a slew of guns and loves to head to the range for some practice. Which is cool and all. I mean, it's a pretty good shot from at least four or five football fields away. Dead on. So boss.

    + +

    Justify Align

    +

    This is a paragraph. It is justify aligned. It gets really mad when people associate it with Justin Timberlake. Typically, justified is pretty straight laced. It likes everything to be in it's place and not all cattywampus like the rest of the aligns. I am not saying that makes it better than the rest of the aligns, but it does tend to put off more of an elitist attitude.

    ]]>
    + + 1176 + 2013-01-09 09:00:39 + 2013-01-09 16:00:39 + closed + closed + markup-text-alignment + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Markup: Image Alignment + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/ + Fri, 11 Jan 2013 03:15:40 +0000 + themedemos + http://wptest.io/demo/?p=903 + + None, Left, Right, and Center. In addition, they also get the options of Thumbnail, Medium, Large & Fullsize. Be sure to try this page in RTL mode and it should look the same as LTR. +

    Image Alignment 580x300

    +The image above happens to be centered. + +Image Alignment 150x150 The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +Image Alignment 1200x400 + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 1200x400 + +And we try the large image again, with the center alignment since that sometimes is a problem. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 300x200 + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And just when you thought we were done, we're going to do them all over again with captions! + +[caption id="attachment_906" align="aligncenter" width="580"]Image Alignment 580x300 Look at 580x300 getting some caption love.[/caption] + +The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky. + +[caption id="attachment_904" align="alignleft" width="150"]Image Alignment 150x150 Bigger caption than the image usually is.[/caption] + +The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +[caption id="attachment_907" align="alignnone" width="1200"]Image Alignment 1200x400 Comment for massive image for your eyeballs.[/caption] + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. +[caption id="attachment_907" align="aligncenter" width="1200"]Image Alignment 1200x400 This massive image is centered.[/caption] + +And again with the big image centered. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +[caption id="attachment_905" align="alignright" width="300"]Image Alignment 300x200 Feels good to be right all the time.[/caption] + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! One last thing: The last item in this post's content is a thumbnail floated right. Make sure any elements after the content are clearing properly. + +]]>
    + + 1177 + 2013-01-10 20:15:40 + 2013-01-11 03:15:40 + closed + closed + markup-image-alignment + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + +
    + + Markup: HTML Tags and Formatting + https://wpthemetestdata.wordpress.com/2013/01/11/markup-html-tags-and-formatting/ + Sat, 12 Jan 2013 03:22:19 +0000 + themedemos + http://wptest.io/demo/?p=919 + + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    John Doe$1Because that's all Steve Jobs needed for a salary.
    Jane Doe$100KFor all the blogging she does.
    Fred Bloggs$100MPictures are worth a thousand words, right? So Jane x 1,000.
    Jane Bloggs$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    +Robert Frost
    +
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +This tag shows strike-through text. + +Small Tag + +This tag shows smaller text. + +Strong Tag + +This tag shows bold text. + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +This rarely used tag emulates teletype text, which is usually styled like the <code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +This tag shows underlined text. + +Variable Tag + +This allows you to denote variables.]]>
    + + 1178 + 2013-01-11 20:22:19 + 2013-01-12 03:22:19 + closed + closed + markup-html-tags-and-formatting + publish + 0 + 0 + post + + 0 + + + + + + + +
    + + Media: Twitter Embeds + https://wpthemetestdata.wordpress.com/2011/03/15/media-twitter-embeds/ + Tue, 15 Mar 2011 22:47:16 +0000 + themedemos + http://wptest.io/demo/?p=1027 + + Twitter Embeds feature.]]> + + 1179 + 2011-03-15 15:47:16 + 2011-03-15 22:47:16 + closed + closed + media-twitter-embeds + publish + 0 + 0 + post + + 0 + + + + + + + + _oembed_time_d01e104b758ab65a49dfdede5913069c + + + + _oembed_ac49b172e1844531a885a53eff2efd91 + ]]> + + + _oembed_time_ac49b172e1844531a885a53eff2efd91 + + + + _oembed_d01e104b758ab65a49dfdede5913069c + ]]> + + + + Template: Sticky + https://wpthemetestdata.wordpress.com/2012/01/07/template-sticky/ + Sat, 07 Jan 2012 14:07:21 +0000 + themedemos + http://wptest.io/demo/?p=1241 + + +
  • The sticky post should be distinctly recognizable in some way in comparison to normal posts. You can style the .sticky class if you are using the post_class() function to generate your post classes, which is a best practice.
  • +
  • They should show at the very top of the blog index page, even though they could be several posts back chronologically.
  • +
  • They should still show up again in their chronologically correct postion in time, but without the sticky indicator.
  • +
  • If you have a plugin or widget that lists popular posts or comments, make sure that this sticky post is not always at the top of those lists unless it really is popular.
  • +]]>
    + + 1241 + 2012-01-07 07:07:21 + 2012-01-07 14:07:21 + closed + closed + template-sticky + publish + 0 + 0 + post + + 1 + + + + +
    + + Template: Excerpt (Generated) + https://wpthemetestdata.wordpress.com/2012/03/14/template-excerpt-generated/ + Wed, 14 Mar 2012 16:49:22 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=1446 + + excerpt_length and excerpt_more, display properly.]]> + + 1446 + 2012-03-14 09:49:22 + 2012-03-14 16:49:22 + closed + closed + template-excerpt-generated + publish + 0 + 0 + post + + 0 + + + + + + + + + Block category: Common + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-common/ + Fri, 02 Nov 2018 16:20:28 +0000 + >themereviewteam + https://wpthemetestdata.wordpress.com/?p=1730 + + +

    The Common category includes the following blocks: Paragraph, image, headings, list, gallery, quote, audio, cover, video.

    + + + +

    The paragraph block is the default block type.  It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love.

    + + + +

    This paragraph is left aligned.

    + + + +

    This italic paragraph is right aligned.

    + + + +

    Neither of these paragraphs care about politics, but this one is bold, medium sized and has a drop cap.

    + + + +

    This paragraph is centered.

    + + + +

    This paragraph prefers Jazz over Justin Timberlake. It also uses the small font size.

    + + + +

    This paragraph has something important to say:  It has a large font size, which defaults to 36px.

    + + + +

    The huge text size defaults to 46px, but the size can be customized.

    + + + +

    This paragraph is colorful, with a red background and white text (maybe). Colored blocks should have a high enough contrast, so that the text is readable.

    + + + +

    Below this block, you will see a single image with a circle mask applied.

    + + + +
    Image Alignment 150x150
    + + + +

    H1 Heading

    + + + +

    H2 Heading

    + + + +

    H3 Heading

    + + + +

    H4 Heading

    + + + +
    H5 Heading
    + + + +
    H6 Heading
    + + + +

    Ordered list

    + + + +
    1. The software should be licensed under the GNU Public License.
    2. The software should be freely available to anyone to use for any purpose, and without permission.
    3. The software should be open to modifications.
      1. Any modifications should be freely distributable at no cost and without permission from its creators.
    4. The software should provide a framework for translation to make it globally accessible to speakers of all languages.
    5. The software should provide a framework for extensions so modifications and enhancements can be made without modifying core code
    + + + +

    Unordered list

    + + + +
    • One
    • Two
    • Three
      • Four
    • Five
    + + + + + + + +

    Quote

    Cite
    + + + +
    + + + +
    +

    Cover block with background image

    +
    + + + +

    The file block has a setting that lets us show or hide a download button with editable text:

    + + + + + + + + + + + +

    Video blocks have settings for showing and hiding the playback controls. Use autoplay and playback controls responsibly.

    + + + +
    This is a video block caption.
    + + + +

    The video block below is muted and has a poster image that displays before the video starts:

    + + + +
    + +]]>
    + + 1730 + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + +
    + + Block category: Formatting + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-formatting/ + Fri, 02 Nov 2018 16:41:42 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1732 + + +

    The formatting category includes the following blocks:

    + + + +
    The code block starts with
    +<!-- wp:code -->
    +<?php echo 'Hello World'; ?>
    +
    + + +

    The classic block can have almost anything in it.

    +
    +
    a heading
    + + +
    The custom HTML block lets you put HTML that isn't configured like blocks in it. (this div has a width of 45%)
    + + + +
    The preformatted block.

    The Road Not Taken

    Robert Frost
    Two roads diverged in a yellow wood,
    And sorry I could not travel both (\_/)
    And be one traveler, long I stood (='.'=)
    And looked down one as far as I could (")_(")
    To where it bent in the undergrowth;

    Then took the other, as just as fair,
    And having perhaps the better claim, |\_/|
    Because it was grassy and wanted wear; / @ @ \
    Though as for that the passing there ( > º < )
    Had worn them really about the same, `>>x<<´
    / O \
    And both that morning equally lay
    In leaves no step had trodden black.
    Oh, I kept the first for another day!
    Yet knowing how way leads on to way,
    I doubted if I should ever come back.
    I shall be telling this with a sigh
    Somewhere ages and ages hence:
    Two roads diverged in a wood, and I—
    I took the one less traveled by,
    And that has made all the difference.



    and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    + + + +

    The pull quote can be aligned or wide or neither.

    Theme Reviewer
    + + + +
    The table blockThis is the default style.
    The cell next to this is empty.
    Cell #5
    Cell #6
    + + + +
    This is the striped style.This row should have a background color.
    The cell next to this is empty.

    This table has fixed width table cells.

    Make sure that the text wraps correctly.

    + + + +
    The Verse block

    A block for haiku?
    Why not?
    Blocks for all the things!
    +]]>
    + + 1732 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Block category: Layout Elements + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-layout-elements/ + Fri, 02 Nov 2018 16:44:37 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1734 + + +
    +

    The Layout Elements category includes the following blocks: Group, Button, Columns, Media & Text, separator, spacer, read more, and page break.

    + + + +

    This group block has a light green background color.

    + + + + + + + +

    The read more block should be right below this text, but only on list pages of themes that show the full content. It won't show on the single page or on themes showing excerpts.

    +
    + + + + + + + +
    +
    +

    The columns:

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    +
    + + + +
    Boardwalk
    +

    Media &Text

    + + + +

    For displaying media and text next to each other. By default, the media is to the left.

    +
    + + + +
    Golden Gate Bridge
    +

    This time our block is full width, and the image is to the right.

    + + + +

    The background color is a pale blue. 

    +
    + + + +

    Test to make sure that the editor and the front match. To test the Stack on mobile setting, reduce the browser window width.

    + + + +

    The control these settings, the block uses the css classes "has-media-on-the-right" and "is-stacked-on-mobile".

    + + + +

    The separator has three styles: default, wide line, and dots.

    + + + +
    + + + +
    + + + +
    + + + +

    The spacer block has a default height of 100 pixels:

    + + + + + + + +

    And finally, the page break:

    + + + + + + + +

    This paragraph block is on page two, after the page break.

    + + + + +]]>
    + + 1734 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block category: Embeds + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-embeds/ + Fri, 02 Nov 2018 16:51:55 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1738 + + + +

    This post tests various embed blocks:

    + + + +
    +https://twitter.com/WordPress/status/1057136472321613824 +
    Twitter,  wide width
    + + + +
    +https://youtu.be/ex8fMxXJDJw +
    YouTube
    + + + +
    +https://www.facebook.com/6427302910/posts/10156380423617911/ +
    + + + +
    +https://www.instagram.com/p/BpmueLLgEn_/?utm_source=ig_share_sheet&igshid=1hcxphic7p9e2 +
    + + + +
    +https://wordpress.tv/2018/10/14/kjell-reigstad-allan-cole-how-we-made-our-first-gutenberg-powered-theme/ +
    WordPress TV, full width
    + + + +

    +]]>
    + + 1738 + + + + + + + 0 + 0 + + + 0 + + + + + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + + + + + + + + + + ]]> + + + + + + + +

    Many of the WordPress contribution teams have been working hard on the new WordPress editor, and the tools, services,...

    Publicerat av WordPress Måndag 3 september 2018
    ]]>
    +
    + + + + + + + ]]> + + + + + + + + ]]> + + + + + + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + + + + + + ]]> + + + + + + + +

    Many of the WordPress contribution teams have been working hard on the new WordPress editor, and the tools, services,...

    Publicerat av WordPress Måndag 3 september 2018
    ]]>
    +
    + + + + + + + ]]> + + + + + + + + ]]> + + + + + +
    + + Block category: Widgets + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-widgets/ + Fri, 02 Nov 2018 16:45:35 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1736 + + +

    The shortcode widget:

    + + + +[gallery columns=2 ids="770,771"] + + + +

    The Archive Widget:

    + + + + + +

    The same Archive widget but as a dropdown:

    + + + + + + + +

    The Category widget block has an additional option for showing category hierarchies:

    + + + + + +

    The Latest Comments widget can display or hide the avatars, the date, and the comment excerpt:

    + + + + + +

    Here is an example of the Comments widget with all the options disabled. The number of comments has been reduced to two.

    + + + + + +

    And here is the Latest Posts widget in the list view, with dates:

    + + + + + +

    Grid view, now sorted from A -Z.

    + + + + + +

    You can also change the number of columns used to display the latest posts. The block below only displays posts from the Block category:

    + + + + + +

    Search widget:

    + + + + + +

    Tag Cloud widget:

    + + + + + +

    RSS Feed widget:

    + + + + ]]>
    + + 1736 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Columns + https://wpthemetestdata.wordpress.com/2018/11/02/block-columns/ + Fri, 02 Nov 2018 12:10:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1743 + + +
    +
    +

    This page tests how the theme displays the columns block. The first block tests a two column block with paragraphs.

    +
    + + + +
    +

    This is the second column. It should align next to the first column. Reduce the browser window width to test the responsiveness.

    +
    +
    + + + +
    +
    +

    This is the second column block. It has 3 columns.

    +
    + + + +
    +

    Paragraph 2 is in the middle.

    +
    + + + +
    +

    Paragraph 3 is in the last column.

    +
    +
    + + + +
    +
    +

    The third column block has 4 columns. Make sure that all the text is visible and that it is not cut off.

    +
    + + + +
    +

    Now the columns are getting narrower.

    +
    + + + +
    +

    The margins between the columns should be wide enough,

    +
    + + + +
    +

    so that the content of the columns does not run into or overlap each other.

    +
    +
    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    + + + +
    +

    Column five.

    +
    +
    + + + +

    To change the number of columns, select the column block to open the settings panel. You can show up to 6 columns. If the theme has support for wide align, you can also set the alignments to wide and full width.

    + + + +

    Below is a column block with six columns, and no alignment:

    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    + + + +
    +

    Column five.

    +
    + + + +
    +

    Column six.

    +
    +
    + + + +

    Next is a 3 column block, with a wide alignment:

    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    +
    + + + +

    And here is a two column block with full width, and a longer text. Make sure that the text wraps correctly.

    + + + +
    +
    +

    This is column one. Sometimes, you may want to use columns to display a larger text, so, lets add some more words. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna. Praesent sit amet ligula id orci venenatis auctor. Phasellus porttitor, metus non tincidunt dapibus, orci pede pretium neque, sit amet adipiscing ipsum lectus et libero. Aenean bibendum. Curabitur mattis quam id urna. Vivamus dui. Donec nonummy lacinia lorem. Cras risus arcu, sodales ac, ultrices ac, mollis quis, justo. Sed a libero. Quisque risus erat, posuere at, tristique non, lacinia quis, eros.

    +
    + + + +
    +

    Column two. Cras volutpat, lacus quis semper pharetra, nisi enim dignissim est, et sollicitudin quam ipsum vel mi. Sed commodo urna ac urna. Nullam eu tortor. Curabitur sodales scelerisque magna. Donec ultricies tristique pede. Nullam libero. Nam sollicitudin felis vel metus. Nullam posuere molestie metus. Nullam molestie, nunc id suscipit rhoncus, felis mi vulputate lacus, a ultrices tortor dolor eget augue. Aenean ultricies felis ut turpis. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Suspendisse placerat tellus ac nulla. Proin adipiscing sem ac risus. Maecenas nisi. Cras semper.

    +
    +
    + + + +

    We can also add blocks inside columns:

    + + + +
    +
    +
    1. This is a numbered list,
    2. inside a 3 column block
    3. with a wide alignment.
    +
    + + + +
    +

    The middle column has a paragraph with an image block below.

    + + + +
    canola
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna.
    +
    + + + +
    +

    -This third column has a quote

    Theme Reviewer
    +
    +
    + + + +

    But wait there is more!  We also have a block called Media & Text, which is a two column block that helps you display media and text content next to each other, without having to first setup a column block:

    + + + +
    dsc20050813_115856_52
    +

    Media & Text

    + + + +

    A paragraph block sits ready to be used, below your headline.

    + + + +

    +
    +]]>
    + + 1743 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Block: Cover + https://wpthemetestdata.wordpress.com/2018/11/02/block-cover/ + Sat, 03 Nov 2018 12:25:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1745 + + +

    This is a left aligned cover block with a background image.

    + + + +

    The cover block lets you add text on top of images or videos.

    + + + +

    This blocktype has several alignment options, and you can also align or center the text inside the block.

    + + + +

    The background image can be fixed and you can change its opacity and add an overlay color.

    + + + +

    Make sure that the text wraps correctly over the image, and that text markup and alignments are working.

    + + + +

    The next image should have a pink overlay color, the text should be bold and aligned to the left:

    + + + +

    A center aligned cover image block, with a left aligned text.

    + + + +

    This is a full width cover block with a fixed background image with a 20% opacity.

    + + + +

    Make sure that all the text is readable.

    + + + +

    Our last cover image block has a wide width.

    + + + +

    This is a wide cover block with a video background.

    + + + +

    Compare the video and image blocks.
    This block is centered.

    + + + +

    The block below has no alignment, and the text is a link. Overlay colors must also work with video backgrounds.

    + + + + +]]>
    + + 1745 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Button + https://wpthemetestdata.wordpress.com/2018/11/02/block-button/ + Sat, 03 Nov 2018 13:20:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1747 + + +

    Button blocks are not semantically buttons, but links inside a styled div. 

    + + + +

    If you do not add a link, a link tag without an anchor will be used.

    + + + + + + + +

    Check to make sure that the text wraps correctly when the button has more than one line of text, and when it is extra long.

    + + + + + + + +

    Buttons have three styles: 

    + + + + + + + + + + + + + + + +

    If the theme has a custom color palette, test that background color and text color settings work correctly. 

    + + + + + + + +

    Now lets test how buttons display together with large texts.

    + + + +

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio.

    + + + + + + + +

    Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna. Praesent sit amet ligula id orci venenatis auctor. Phasellus porttitor, metus non tincidunt dapibus, orci pede pretium neque, sit amet adipiscing ipsum lectus et libero. Aenean bibendum. Curabitur mattis quam id urna.

    + + + + + + + +

    Vivamus dui. Donec nonummy lacinia lorem. Cras risus arcu, sodales ac, ultrices ac, mollis quis, justo. Sed a libero. Quisque risus erat, posuere at, tristique non, lacinia quis, eros.

    +]]>
    + + 1747 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Quote + https://wpthemetestdata.wordpress.com/2018/11/02/block-quote/ + Sat, 03 Nov 2018 03:05:49 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1749 + + +

    The quote block has two styles, regular:

    + + + +

    Gutenberg is more than an editor.

    The Gutenberg Team
    + + + +

    and large:

    + + + +

    Yes, it is a press, certainly, but a press from which shall flow in inexhaustible streams, the most abundant and most marvelous liquor that has ever flowed to relieve the thirst of men!


    Johannes Gutenberg
    + + + +

    The quote blocks themselves have no alignments but the text can be aligned, bold, italic, and linked:

    + + + +

    Right

    Theme Review
    + + + +

    In addition to the quote block, we also have the pull quote, with a regular and a solid color style.

    + + + +

    You can change the color of the border and the text with the regular style:

    + + + +

    In addition to the quote block, we also have the pull quote.

    Theme Reviewer
    + + + +

    Or change the background color and text color with the solid color style:

    + + + +

    a solid color style

    Theme Reviewer
    +]]>
    + + 1749 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Gallery + https://wpthemetestdata.wordpress.com/2018/11/02/block-gallery/ + Sat, 03 Nov 2018 04:34:24 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1752 + + +

    Gallery blocks have two settings: the number of columns, and whether or not images should be cropped. The default number of columns is three, and the maximum number of columns is eight.

    + + + +

    Below is a three column gallery at full width, with cropped images.

    + + + + + + + + + + + +

    Some more text for taking up space.

    + + + +

    A two column gallery, aligned to the left, linked to media file.

    + + + +

    In the editor, the image captions can be edited directly by clicking on the text.

    + + + +

    If the number of images cannot be divided into the number of columns you have selected, the default is to have the last image(s) automatically stretch to the width of your gallery.

    + + + + + + + +

    A four column gallery with a wide width:

    + + + + + + + +

    A five column gallery with normal images:

    + + + + + + + +

    This is the same gallery, but with cropped images.

    + + + + + + + +

    Six columns: does it work at all window sizes?

    + + + + + + + +

    Seven columns: how does this look on a narrow window?

    + + + + + + + +

    Eight columns:

    + + + + +]]>
    + + 1752 + + + + + + + 0 + 0 + + + 0 + + + + + + + + + +
    + + Block: Image + https://wpthemetestdata.wordpress.com/2018/11/03/block-image/ + Sat, 03 Nov 2018 15:20:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1755 + + +

    Welcome to image alignment! If you recognize this post, it is because these are blocks that have been converted from the classic Markup: Image Alignment post. The best way to demonstrate the ebb and flow of the various image positioning options is to nestle them snuggly among an ocean of words. Grab a paddle and let's get started. Be sure to try it in RTL mode. Left should stay left and right should stay right for both reading directions.

    + + + +

    On the topic of alignment, it should be noted that users can choose from the options of None, Left, Right, and Center. If the theme has added support for align wide, images can also be wide and full width. Be sure to test this page in RTL mode.

    + + + +

    In addition, they also get the options of the image dimensions 25%, 50%, 75%, 100% or a set width and height.

    + + + +
    Image Alignment 580x300
    + + + +

    The image above happens to be centered.

    + + + +
    Image Alignment 150x150
    + + + +

    The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned.

    + + + +

    As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished!

    + + + +

    And now for a massively large image. It also has no alignment.

    + + + +
    Image Alignment 1200x400
    + + + +

    The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.

    + + + +
    Image Alignment 300x200
    + + + +

    And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there… Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently.

    + + + +

    In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah… Just like that. It never felt so good to be right.

    + + + +

    And just when you thought we were done, we're going to do them all over again with captions!

    + + + +
    Image Alignment 580x300
    Look at 580x300 getting some caption love.
    + + + +

    The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky.

    + + + +
    Image Alignment 150x150
    Itty-bitty caption.
    + + + +

    The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned.

    + + + +

    As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished!

    + + + +

    And now for a massively large image. It also has no alignment.

    + + + +
    Image Alignment 1200x400
    Massive image comment for your eyeballs.
    + + + +

    The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.

    + + + +
    Image Alignment 300x200
    Feels good to be right all the time.
    + + + +

    And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there… Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently.

    + + + +

    In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah… Just like that. It never felt so good to be right.

    + + + +

    Imagine that we would find a use for the extra wide image! This image has the wide width alignment:

    + + + +
    Image Alignment 1200x4002
    + + + +

    Can we go bigger? This image has the full width alignment:

    + + + +
    Image Alignment 1200x4002
    + + + +

    And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! One last thing: The last item in this post's content is a thumbnail floated right. Make sure any elements after the content are clearing properly.

    + + + +
    +]]>
    + + 1755 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Ελληνικά-Greek + https://wpthemetestdata.wordpress.com/greek/ + Fri, 14 Feb 2020 10:31:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1809 + + Headings Επικεφαλίδες +

    Επικεφαλίδα 1 Header one

    +

    Επικεφαλίδα 2 Header two

    +

    Επικεφαλίδα 3 Header three

    +

    Επικεφαλίδα 2 Header four

    +
    Επικεφαλίδα 5 Header five
    +
    Επικεφαλίδα 6Header six
    +

    Παράθεση άλλου Blockquotes

    +Single line blockquote: Μια γραμμή +
    Πάντα να είναι περίεργος.
    +Πολλές γραμμέ με αναφορά Multi line blockquote with a cite reference: +
    Το HTML <blockquote> ElementHTML Block Quotation Element) καταδεικνύει ότι το κείμενο έχει μια παράθεση. Συνήθως οπτικοποιείται με εσοχή (δείτε Σημειώσεις για το πως να το αλλάξετε. Ίσως να δίνεται και URL πηγής με την χρήση του cite attribute, μπλα, μπλα <cite> .
    +multiple contributors - MDN HTML element reference - blockquote +

    Πίνακες Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Υπάλληλος EmployeeΜισθός Salary
    Τάδε κάποιος$1Γιατί τόσα χρειάζεται για να ζήσει
    Jane Doe$100KFor all the blogging she does.
    Fred Bloggs$100MPictures are worth a thousand words, right? So Jane x 1,000.
    Jane Bloggs$100BWith hair like that?! Enough said...
    +

    Λίστες Definition Lists

    +
    +
    Τίτλος λίστας Definition List Title
    +
    Υποδιαίρεση λίστας Definition list division.
    +
    +

    Λίστα με κουκίδες Unordered Lists (Nested)

    +
      +
    • Πρώτο στοιχείο List item one +
        +
      • Στοιχείο πρώτο List item one +
          +
        • Στοιχείο λίστα ένα List item one
        • +
        • Στοιχείο λίστας δύο List item two
        • +
        +
      • +
      • Στοιχείο δεύτερο -item two
      • +
      +
    • +
    • Στοιχειο δύο List item two
    • +
    +

    Αριθμημένη λίστα(Nested)

    +
      +
    1. Στοιχειο ξεκινά με 8-start at 8 +
        +
      1. Στοιχείο λίστας ενα List item one +
          +
        1. Στοιχείο λίστας ενα -reversed attribute
        2. +
        3. Στοιχείο λίστας δύο
        4. +
        +
      2. +
      3. Δεύτερο στοιχείο
      4. +
      +
    2. +
    3. Στοιχείο δύο
    4. +
    +

    Ετικέττες HTML Tags

    +Διεύθυνση Address Tag + +
    1 Απέραντη διαδρομή Infinite Loop +Απλωπολή , ΤΚ 95014 +Ελλάδα
    Αγκυρωση Anchor Tag (aka. Link) + +Πάραδειγμα συνδέσμου. + +Συντομογραφία Abbreviation Tag + +Η συντομογραφία κτλ σημαίνει "Και τα λοιπά". + +Ακρωνύμιο Acronym Tag + +Το ακρωνύμιο κυρ σημαίνει "Κύριος". + +Big Tag + +Αυτό είναι μεγάλο θέμα + +Cite Tag + +"Φάε το φαϊ σου" --Όλες οι μαμάδες + +Code Tag + +This tag styles blocks of code. +.post-title { +margin: 0 0 5px; +font-weight: bold; +font-size: 38px; +line-height: 1.2; +και μία γραμμή με πολύ πάρα πολύ υπερβολικά πάρα πολύ μεγάλο κείμενο που πρέπει να δούμε πως το χειρίζεται η γραμματοσειρά και αν ξεχειλίζει από τις γραμμές και δημιουργεί πρόβλημα; +} + +Διαγραφή Delete Tag + +Μπορείτε να διαγράφεται κείμενο, αλλά δεν συνιστάται. + +Έμφαση Emphasize Tag + +Θα πρέπει να κάνει ιταλικ italicize το κείμενο. + +Εισαγωγή Insert Tag + +Αυτό το tag υποδηλώνει εισηγμένο inserted κείμενο. + +Keyboard Tag + +Αυτό το ελάχιστο γνωστό κείμενο πληκτρολογίου keyboard Tag, συνήθως μορφοποιείται όμοια με το <κώδικα code> tag. + +Προδιαμορφωμένο Preformatted Tag +

    Ο Δρόμος που δεν διάλεξα - The Road Not Taken

    +
    Robert Frost
    +	 Δυο δρόμοι διασταυρώθηκαν σ' ένα χρυσαφένιο δάσος ,
    +	 Και προς λύπη μου και τους δυο τα πόδια μου να ταξιδέψουν δεν μπορούσαν
    +	 Κι επί μακρόν εστάθηκα , καθώς ένας ήμουν ταξιδευτής μονάχος ,
    +	 κι έστρεψα το βλέμμα μου στον πρώτο όσο να χαθεί στο βάθος
    +	 μέχρι εκεί που χάνονταν στα άγρια χόρτα που βλαστούσαν.
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	και μία μακριά, πάρα πολύ μακριά, υπερβολικά μακροσκελής δίχως νόημα πρόταση για να δούμε πως το χειρίζεται το θέμα εμφάνισης και αν αναδιπλώνεται, κρύβεται ή ξεχειλίζει;
    +
    +Quote Tag for short, inline quotes + +Προγραμματιστές, προγραμματιστές, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +Αυτή η ετικέτα είναι με διαγράμμιση strike-through κείμενο text. + +Μικρά Small Tag + +Αυτή η ετικέτα είναι μικρότερο smaller κείμενο text. + +Strong Tag + +Αυτή η ετικέτα δείχνει έντονο bold κείμενο text. + +Subscript Tag + +Getting our science styling on with H2 δύοO, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2 δύο, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +Αυτή η ετικέτα δείχνει τυλετυπος teletype κείμενο, which is usually styled like the <κώδικα code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +Αυτή η ετικέτα δείχνει υπογράμμιση underlined text. + +Variable Tag + +Αυτή η ετικέτα δείχνει παράμετροι variables.]]>
    + + 1809 + + + + + + + 0 + 0 + + + 0 + + + + + + + + +
    + + Επίπεδο 2 -Second Greek level + https://wpthemetestdata.wordpress.com//greek/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-2/ + Fri, 14 Feb 2020 10:31:47 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1811 + + + + 1811 + + + + + + + 1809 + 0 + + + 0 + + + + + + + + + + + Επίπεδο 3 + https://wpthemetestdata.wordpress.com/greek/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-2/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-3/ + Fri, 14 Feb 2020 10:32:50 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1813 + + + + 1813 + + + + + + + 1811 + 0 + + + 0 + + + + + + + + + + + + <![CDATA[WP 6.1 Font size scale]]> + https://wpthemetestdata.wordpress.com/wp-6-1-font-size-scale/ + Mon, 16 Jan 2023 07:08:31 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-font-size-scale/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Small H2 Heading

    + + + +

    Medium H2 Heading

    + + + +

    Large H2 Heading

    + + + +

    Extra Large H2 Heading

    + + + +

    Small paragraph

    + + + +

    Medium paragraph

    + + + +

    Large paragraph

    + + + +

    Extra Large paragraph

    +]]> +
    + + 163 + + + + + + + + + 0 + 0 + + + 0 + + + + + + +
    + + <![CDATA[WP 6.1 spacing presets]]> + https://wpthemetestdata.wordpress.com/wp-6-1-spacing-presets/ + Mon, 16 Jan 2023 06:56:53 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-spacing-presets/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    On this page, some group blocks have border or background color set to increase visibility.

    + + + +
    +

    This group has a no background color and no additional spacing set.

    +
    + + + +
    +

    This group has a background color but no additional spacing set.

    +
    + + + +
    +

    This group has a 1px border and padding preset 1

    +
    + + + +
    +

    This group has padding preset 1

    +
    + + + +
    +

    This group has a 1px border and padding preset 2

    +
    + + + +
    +

    This group has a background color and padding preset 3

    +
    + + + +
    +

    This group has a background color and padding preset 4

    +
    + + + +
    +

    This group has a background color and padding preset 5

    +
    + + + +
    +

    This group has a background color and padding preset 6

    +
    + + + +
    +

    This group has a background color and padding preset 7

    +
    + + + +
    +

    This group has padding preset 7

    +
    + + + +
    +

    This group has a background color and margin preset 1

    +
    + + + +
    +

    This group has a background color and margin preset 2

    +
    + + + +
    +

    This group has a background color and margin preset 3

    +
    + + + +
    +

    This group has a background color and margin preset 4

    +
    + + + +
    +

    This group has a background color and margin preset 5

    +
    + + + +
    +

    This group has a background color and margin preset 6

    +
    + + + +
    +

    This group has a background color and margin preset 7

    +
    + + + +
    +

    This group has a 1px border, padding preset 4 and margin preset 4

    +
    + + + +
    +

    This group has padding preset 4 and margin preset 4

    +
    +]]>
    + + 150 + + + + + + + + + 0 + 0 + + + 0 + + + + + + +
    + + <![CDATA[WP 6.1 Theme block category]]> + https://wpthemetestdata.wordpress.com/wp-6-1-theme-block-category/ + Fri, 13 Jan 2023 18:38:05 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-theme-block-category/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Navigation block with page list:

    + + + + + + + +

    Site logo:

    + + + + + +

    Site title:

    + + + + + +

    Tagline block:

    + + + + + +

    Query loop "Title & Date" variation:

    + + + +
    + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Title & Excerpt" variation:

    + + + +
    + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Title, Date & Excerpt" variation:

    + + + +
    + + + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Image, Date & Title" variation:

    + + + +
    + + + + + + + + + + + + + + + + + +

    + +
    + + + +

    Avatar block:

    + + + + + +

    Post title block:

    + + + + + +

    Post excerpt:

    + + + + + +

    Post featured image:

    + + + + + +

    Post author:

    + + + + + +

    Post date:

    + + + + + +

    Categories:

    + + + + + +

    Tags:

    + + + + + +

    Next post & previous post:

    + + + + + + + +

    Read More:

    + + + + + +

    Comments block:

    + + + +
    + + + +
    +
    + + + +
    + + +
    + +
    + + + + +
    +
    + + + + + + + + + + + + + + +

    Post comments form block:

    +
    + + + + + +

    Login/out:

    + + + + + + + + + + + +

    Author biography block:

    + + + + + + + + + +

    Term description, archive title, search results title can not be shown on single posts.

    +]]>
    + + 51 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + + + + 2 + + + https://wpthemetestdata.wordpress.com/ + + + + + + + 0 + 0 + +
    + + <![CDATA[WP 6.1 Widgets block category]]> + https://wpthemetestdata.wordpress.com/wp-6-1-widgets-block-category/ + Fri, 13 Jan 2023 18:22:21 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-widgets-block-category/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Archives block:

    + + + + + + + +

    Categories list:

    + + + + + +

    Custom HTML:

    + + + + test + + + +

    Latest comments:

    + + + + + +

    Latest posts:

    + + + + + +

    Page list block:

    + + + + + +

    RSS block:

    + + + + + + + + + + + + + + + +

    Shortcode block:

    + + + + + +

    Social links:

    + + + + + + + + + + + + + + + +

    Tag cloud:

    + + + + + +

    +]]>
    + + 34 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Design category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-design-category-blocks/ + Fri, 13 Jan 2023 18:03:23 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-design-category-blocks/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + + + + + +
    +
    +

    One single column inside a columns block.

    +
    +
    + + + +
    +
    +

    Column one. The background color is on the single column.

    +
    + + + +
    +

    Column two

    +
    +
    + + + +
    +
    +

    Column one. The background color is on the parent columns block.

    +
    + + + +
    +

    Column two

    +
    + + + +
    +

    Column three

    +
    +
    + + + +
    +

    Group with paragraph inside. Below are the group block variations:

    +
    + + + +
    +

    Row

    + + + +

    Row

    +
    + + + +
    +

    Stack

    + + + +

    Stack

    +
    + + + +

    More block:

    + + + + + + + +

    Page break:

    + + + + + + + +

    Separators:

    + + + +

    Default style, no alignment:

    + + + +
    + + + +

    Default style, wide alignment:

    + + + +
    + + + +

    Default style, full width:

    + + + +
    + + + +

    Default style, align center:

    + + + +
    + + + +

    Wide style, no alignment:

    + + + +
    + + + +

    Wide style, wide alignment:

    + + + +
    + + + +

    Wide style, full width:

    + + + +
    + + + +

    Wide style, align center:

    + + + +
    + + + +

    Dotted style, no alignment:

    + + + +
    + + + +

    Dotted style, wide alignment:

    + + + +
    + + + +

    Dotted style, full width:

    + + + +
    + + + +

    Dotted style, align center:

    + + + +
    + + + +

    Spacer:

    + + + + +]]>
    + + 24 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Media category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-media-category-blocks/ + Fri, 13 Jan 2023 18:02:28 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-media-category-blocks/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Image block:

    + + + +
    dsc20050727_091048_222
    + + + +

    Gallery:

    + + + + + + + +

    Audio:

    + + + +
    + + + +

    Cover:

    + + + +
    Wind Farm
    +

    Write title...

    +
    + + + +
    +

    Fixed background

    +
    + + + +
    +

    Repeated background

    +
    + + + +
    +

    Fixed and Repeated background

    +
    + + + +
    dsc20050727_091048_222
    +

    Duotone

    +
    + + + +
    Rain Ripples
    +

    Top left

    +
    + + + +
    Rain Ripples
    +

    Top center

    +
    + + + +
    Rain Ripples
    +

    Top right

    +
    + + + +
    Rain Ripples
    +

    Center left

    +
    + + + +
    Rain Ripples
    +

    Center right

    +
    + + + +
    Rain Ripples
    +

    Bottom left

    +
    + + + +
    Rain Ripples
    +

    Bottom center

    +
    + + + +
    Rain Ripples
    +

    Bottom right

    +
    + + + + + + + +
    Boardwalk
    +

    This is the Media & Text block with an image on the left.

    +
    + + + +
    Image Alignment 1200x4002
    +

    This is the Media & Text block with a cropped image on the left

    +
    + + + +
    +

    This is the Media & Text block with a video the right.

    +
    + + + +
    +]]>
    + + 21 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Text category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-text-category-blocks/ + Fri, 13 Jan 2023 17:46:19 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-text-category-blocks + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Paragraph

    + + + +

    H1 Heading

    + + + +

    H2 Heading

    + + + +

    H3 Heading

    + + + +

    H4 Heading

    + + + +
    H5 Heading
    + + + +
    H6 Heading
    + + + +
      +
    • List
    • + + + +
    • List
    • +
    + + + +
      +
    1. List
    2. + + + +
    3. List
    4. +
    + + + +
      +
    1. List +
        +
      • List
      • +
      +
    2. +
    + + + +
    +

    Quote block

    +citation
    + + +

    classic block

    + + +
    code block
    + + + +
    Preformatted block
    + + + +

    Pull quote

    Citation
    + + + +
    table celltable cell two
    table cell threetable cell four
    Table caption
    + + + +
    header label oneheader label two
    table celltable cell two
    table cell threetable cell four
    footer label onefooter label two
    Table caption
    + + + +
    Verse block
    +]]>
    + + 8 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + +
    + + Keyboard navigation + https://wpthemetestdata.wordpress.com/2018/10/20/keyboard-navigation/ + Sun, 21 Oct 2018 03:03:48 +0000 + + https://wpthemetestdata.wordpress.com/?p=1724 + + +

    There are many different ways to use the web besides a mouse and a pair of eyes. Users navigate for example with a keyboard only or with their voice.

    + + + +

    All the functionality, including menus, links and forms should work using a keyboard only. This is essential for all assistive technology to work properly. The only way to test this, at the moment, is manually. The best time to test this is during development.

    + + + +

    How to keyboard test:

    + + + +

    Tab through your pages, links and forms to do the following tests:

    + + + +
    • Confirm that all links can be reached and activated via keyboard, including any in dropdown submenus.
    • Confirm that all links get a visible focus indicator (e.g., a border highlight).
    • Confirm that all visually hidden links (e.g. skip links) become visible when in focus.
    • Confirm that all form input fields and buttons can be accessed and used via keyboard.
    • Confirm that all interactions, buttons, and other controls can be triggered via keyboard — any action you can complete with a mouse must also be performable via keyboard.
    • Confirm that focus doesn’t move in unexpected ways around the page.
    • Confirm that using shift+tab to move backwards works as well.
    + + + +

    Resources

    + + + + +]]>
    + + 1724 + + + + + + + 0 + 0 + + + + 0 +
    + + About The Tests + https://wpthemetestdata.wordpress.com/about/ + Mon, 26 Jul 2010 02:40:01 +0000 + themedemos + https://wpthemetestdata.wordpress.com/about/ + + WordPress Theme Development Resources + +
      +
    1. See the WordPress Theme Developer Handbook for examples of best practices.
    2. +
    3. See the WordPress Code Reference for more information about WordPress' functions, classes, methods, and hooks.
    4. +
    5. See Theme Unit Test for a robust test suite for your Theme and get the latest version of the test data you see here.
    6. +
    7. See Releasing Your Theme for a guide to submitting your Theme to the Theme Directory.
    8. +
    ]]>
    + + 2 + 2010-07-25 19:40:01 + 2010-07-26 02:40:01 + closed + closed + about + publish + 0 + 1 + page + + 0 +
    + + Lorem Ipsum + https://wpthemetestdata.wordpress.com/lorem-ipsum/ + Tue, 04 Sep 2007 16:52:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/lorem-ipsum/ + + + + 146 + 2007-09-04 09:52:50 + 2007-09-04 16:52:50 + closed + closed + lorem-ipsum + publish + 0 + 7 + page + + 0 + + + Page with comments + https://wpthemetestdata.wordpress.com/about/page-with-comments/ + Tue, 04 Sep 2007 17:47:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/page-with-comments/ + + + + 155 + 2007-09-04 10:47:47 + 2007-09-04 17:47:47 + open + closed + page-with-comments + publish + 2 + 3 + page + + 0 + + 167 + + anon@example.com + + + 2007-09-04 10:49:28 + 2007-09-04 00:49:28 + + 1 + + 0 + 0 + + + 168 + + tellyworth+test2@example.com + + + 2007-09-04 10:49:03 + 2007-09-04 00:49:03 + + 1 + + 0 + 0 + + + 169 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2007-09-04 10:48:51 + 2007-09-04 17:48:51 + + 1 + + 0 + 0 + + + 1017 + + themereviewteam@gmail.com + + + 2014-12-10 01:56:24 + 2014-12-10 08:56:24 + + 0 + + 168 + 0 + + + + Page with comments disabled + https://wpthemetestdata.wordpress.com/about/page-with-comments-disabled/ + Tue, 04 Sep 2007 17:48:10 +0000 + themedemos + https://wpthemetestdata.wordpress.com/page-with-comments-disabled/ + + + + 156 + 2007-09-04 10:48:10 + 2007-09-04 17:48:10 + closed + closed + page-with-comments-disabled + publish + 2 + 4 + page + + 0 + + + Level 3 + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3/ + Tue, 11 Dec 2007 06:23:16 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-3/ + + + + 172 + 2007-12-11 16:23:16 + 2007-12-11 06:23:16 + closed + closed + level-3 + publish + 173 + 0 + page + + 0 + + + Level 2 + https://wpthemetestdata.wordpress.com/level-1/level-2/ + Tue, 11 Dec 2007 06:23:33 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-2/ + + + + 173 + 2007-12-11 16:23:33 + 2007-12-11 06:23:33 + closed + closed + level-2 + publish + 174 + 0 + page + + 0 + + + Level 1 + https://wpthemetestdata.wordpress.com/level-1/ + Tue, 11 Dec 2007 23:25:40 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-1/ + + + + 174 + 2007-12-11 16:25:40 + 2007-12-11 23:25:40 + closed + closed + level-1 + publish + 0 + 5 + page + + 0 + + + Clearing Floats + https://wpthemetestdata.wordpress.com/about/clearing-floats/ + Sun, 01 Aug 2010 16:42:26 +0000 + themedemos + https://wpthemetestdata.wordpress.com/ + + This is the second page]]> + + 501 + 2010-08-01 09:42:26 + 2010-08-01 16:42:26 + closed + closed + clearing-floats + publish + 2 + 2 + page + + 0 + + + canola2 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/canola2/ + Mon, 16 Jun 2008 13:17:54 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/canola2.jpg + + + + 611 + 2008-06-16 06:17:54 + 2008-06-16 13:17:54 + open + closed + canola2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/canola2.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + dsc20050727_091048_222 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050727_091048_222/ + Mon, 16 Jun 2008 13:20:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050727_091048_222.jpg + + + + 616 + 2008-06-16 06:20:37 + 2008-06-16 13:20:37 + open + closed + dsc20050727_091048_222 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050727_091048_222.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + dsc20050813_115856_52 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050813_115856_52/ + Mon, 16 Jun 2008 13:20:57 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050813_115856_52.jpg + + + + 617 + 2008-06-16 06:20:57 + 2008-06-16 13:20:57 + open + closed + dsc20050813_115856_52 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050813_115856_52.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Front Page + https://wpthemetestdata.wordpress.com/front-page/ + Sat, 21 May 2011 01:49:43 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=701 + + + + 701 + 2011-05-20 18:49:43 + 2011-05-21 01:49:43 + open + closed + front-page + publish + 0 + 0 + page + + 0 + + + a Blog page + https://wpthemetestdata.wordpress.com/blog/ + Sat, 21 May 2011 01:51:43 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=703 + + + + 703 + 2011-05-20 18:51:43 + 2011-05-21 01:51:43 + open + closed + blog + publish + 0 + 0 + page + + 0 + + 1016 + + example@example.com + + + 2014-11-29 21:03:05 + 2014-11-30 04:03:05 + + 0 + + 0 + 0 + + + + Bell on Wharf + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/100_5478/ + Mon, 16 Jun 2008 21:34:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/100_5478.jpg + + + + 754 + 2008-06-16 14:34:50 + 2008-06-16 21:34:50 + open + closed + 100_5478 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/100_5478.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Golden Gate Bridge + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/100_5540/ + Mon, 16 Jun 2008 21:35:55 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/100_5540.jpg + + + + 755 + 2008-06-16 14:35:55 + 2008-06-16 21:35:55 + open + closed + 100_5540 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/100_5540.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sunburst Over River + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/cep00032/ + Mon, 16 Jun 2008 21:41:24 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/cep00032.jpg + + + + 756 + 2008-06-16 14:41:24 + 2008-06-16 21:41:24 + open + closed + cep00032 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/cep00032.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Boardwalk + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dcp_2082/ + Mon, 16 Jun 2008 21:41:27 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dcp_2082.jpg + + + + 757 + 2008-06-16 14:41:27 + 2008-06-16 21:41:27 + open + closed + dcp_2082 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dcp_2082.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Yachtsody in Blue + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc03149/ + Mon, 16 Jun 2008 21:41:33 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc03149.jpg + + + + 758 + 2008-06-16 14:41:33 + 2008-06-16 21:41:33 + open + closed + dsc03149 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc03149.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Rain Ripples + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc04563/ + Mon, 16 Jun 2008 21:41:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc04563.jpg + + + + 759 + 2008-06-16 14:41:37 + 2008-06-16 21:41:37 + open + closed + dsc04563 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc04563.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sydney Harbor Bridge + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc09114/ + Mon, 16 Jun 2008 21:41:41 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc09114.jpg + + + + 760 + 2008-06-16 14:41:41 + 2008-06-16 21:41:41 + open + closed + dsc09114 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc09114.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Wind Farm + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050102_192118_51/ + Mon, 16 Jun 2008 21:41:42 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050102_192118_51.jpg + + + + 761 + 2008-06-16 14:41:42 + 2008-06-16 21:41:42 + open + closed + dsc20050102_192118_51 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050102_192118_51.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Antique Farm Machinery + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20051220_160808_102/ + Mon, 16 Jun 2008 21:41:45 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_160808_102.jpg + + + + 762 + 2008-06-16 14:41:45 + 2008-06-16 21:41:45 + open + closed + dsc20051220_160808_102 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_160808_102.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Rusty Rail + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20051220_173257_119/ + Mon, 16 Jun 20081 21:47:17 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_173257_119.jpg + + + + 764 + 2008-06-16 14:47:17 + 2008-06-16 21:47:17 + open + closed + dsc20051220_173257_119 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_173257_119.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sea and Rocks + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dscn3316/ + Mon, 16 Jun 2008 21:47:20 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dscn3316.jpg + + + + 765 + 2008-06-16 14:47:20 + 2008-06-16 21:47:20 + open + closed + dscn3316 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dscn3316.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Big Sur + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/michelle_049/ + Mon, 16 Jun 2008 21:47:23 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/michelle_049.jpg + + + + 766 + 2008-06-16 14:47:23 + 2008-06-16 21:47:23 + open + closed + michelle_049 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/michelle_049.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Windmill + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dcf-1-0/ + Mon, 16 Jun 2008 21:47:26 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/windmill.jpg + + + + 767 + 2008-06-16 14:47:26 + 2008-06-16 21:47:26 + open + closed + dcf-1-0 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/windmill.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Huatulco Coastline + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/alas-i-have-found-my-shangri-la/ + Mon, 16 Jun 2008 21:49:48 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0513-1.jpg + + + + 768 + 2008-06-16 14:49:48 + 2008-06-16 21:49:48 + open + closed + alas-i-have-found-my-shangri-la + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0513-1.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Brazil Beach + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_0747/ + Mon, 16 Jun 2008 21:50:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0747.jpg + + + + 769 + 2008-06-16 14:50:37 + 2008-06-16 21:50:37 + open + closed + img_0747 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0747.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Huatulco Coastline + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_0767/ + Mon, 16 Jun 2008 21:51:19 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0767.jpg + + + + 770 + 2008-06-16 14:51:19 + 2008-06-16 21:51:19 + open + closed + img_0767 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0767.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Boat Barco Texture + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_8399/ + Mon, 16 Jun 2008 21:51:57 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_8399.jpg + + + + 771 + 2008-06-16 14:51:57 + 2008-06-16 21:51:57 + open + closed + img_8399 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_8399.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Resinous + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20040724_152504_532-2/ + Mon, 04 Jun 2012 18:36:56 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg + + + + 807 + 2012-06-04 11:36:56 + 2012-06-04 18:36:56 + open + closed + dsc20040724_152504_532-2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg + + _attachment_original_parent_id + + + + + St. Louis Blues + https://wpthemetestdata.wordpress.com/2010/07/02/post-format-audio/originaldixielandjazzbandwithalbernard-stlouisblues/ + Mon, 16 Jun 2008 16:49:29 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3 + + + + 821 + 2008-06-16 09:49:29 + 2008-06-16 16:49:29 + open + closed + originaldixielandjazzbandwithalbernard-stlouisblues + inherit + 587 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3 + + + OLYMPUS DIGITAL CAMERA + https://wpthemetestdata.wordpress.com/about/clearing-floats/olympus-digital-camera/ + Thu, 05 Aug 2010 18:07:34 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2010/08/manhattansummer.jpg + + + + 827 + 2010-08-05 11:07:34 + 2010-08-05 18:07:34 + open + closed + olympus-digital-camera + inherit + 501 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2010/08/manhattansummer.jpg + + + Image Alignment 580x300 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-580x300/ + Fri, 15 Mar 2013 00:44:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg + + + + 967 + 2013-03-14 19:44:50 + 2013-03-15 00:44:50 + open + open + image-alignment-580x300 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Image Alignment 150x150 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-150x150/ + Fri, 15 Mar 2013 00:44:49 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg + + + + 968 + 2013-03-14 19:44:49 + 2013-03-15 00:44:49 + open + open + image-alignment-150x150 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Horizontal Featured Image + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-horizontal/featured-image-horizontal-2/ + Fri, 15 Mar 2013 20:40:38 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-horizontal.jpg + + + + 1022 + 2013-03-15 15:40:38 + 2013-03-15 20:40:38 + open + open + featured-image-horizontal-2 + inherit + 1011 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-horizontal.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + I Am Worth Loving Wallpaper + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/soworthloving-wallpaper/ + Thu, 14 Mar 2013 14:58:24 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/soworthloving-wallpaper.jpg + + + + 1023 + 2013-03-14 09:58:24 + 2013-03-14 14:58:24 + open + open + soworthloving-wallpaper + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/soworthloving-wallpaper.jpg + + _wp_attachment_image_alt + + + + + Image Alignment 300x200 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-300x200/ + Fri, 15 Mar 2013 00:44:49 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg + + + + 1025 + 2013-03-14 19:44:49 + 2013-03-15 00:44:49 + open + open + image-alignment-300x200 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Vertical Featured Image + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-vertical/featured-image-vertical-2/ + Fri, 15 Mar 2013 20:41:09 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-vertical.jpg + + + + 1027 + 2013-03-15 15:41:09 + 2013-03-15 20:41:09 + open + open + featured-image-vertical-2 + inherit + 1016 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-vertical.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Image Alignment 1200x4002 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-1200x4002/ + Fri, 15 Mar 2013 00:44:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg + + + + 1029 + 2013-03-14 19:44:50 + 2013-03-15 00:44:50 + open + open + image-alignment-1200x4002 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Unicorn Wallpaper + https://wpthemetestdata.wordpress.com/2010/08/08/post-format-image/unicorn-wallpaper/ + Fri, 14 Dec 2012 03:10:39 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2012/12/unicorn-wallpaper.jpg + + + + 1045 + 2012-12-13 22:10:39 + 2012-12-14 03:10:39 + open + open + unicorn-wallpaper + inherit + 1158 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2012/12/unicorn-wallpaper.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Pages + https://wpthemetestdata.wordpress.com/2013/04/09/pages/ + Tue, 09 Apr 2013 13:37:45 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/pages + + + + 1100 + 2013-04-09 06:37:45 + 2013-04-09 13:37:45 + open + closed + pages + publish + 0 + 2 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Categories + https://wpthemetestdata.wordpress.com/2013/04/09/categories/ + Tue, 09 Apr 2013 13:37:45 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/categories + + + + 1101 + 2013-04-09 06:37:45 + 2013-04-09 13:37:45 + open + closed + categories + publish + 0 + 10 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1112/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1112</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test markup tags and styles.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1112</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1112</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>21</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[4675]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1115/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1115</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test post formats.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1115</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1115</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>24</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[44090582]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1118/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1118</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test unpublished posts.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1118</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1118</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>28</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[54090]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>Depth + https://wpthemetestdata.wordpress.com/2013/04/09/depth/ + Tue, 09 Apr 2013 13:37:46 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/depth + + + + 1119 + 2013-04-09 06:37:46 + 2013-04-09 13:37:46 + open + closed + depth + publish + 0 + 29 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 01 + https://wpthemetestdata.wordpress.com/2013/04/09/level-01/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-01 + + + + 1120 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-01 + publish + 0 + 30 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 02 + https://wpthemetestdata.wordpress.com/2013/04/09/level-02/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-02 + + + + 1121 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-02 + publish + 0 + 31 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 03 + https://wpthemetestdata.wordpress.com/2013/04/09/level-03/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-03 + + + + 1122 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-03 + publish + 0 + 32 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 04 + https://wpthemetestdata.wordpress.com/2013/04/09/level-04/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-04 + + + + 1123 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-04 + publish + 0 + 33 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 05 + https://wpthemetestdata.wordpress.com/2013/04/09/level-05/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-05 + + + + 1124 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-05 + publish + 0 + 34 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 06 + https://wpthemetestdata.wordpress.com/2013/04/09/level-06/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-06 + + + + 1125 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-06 + publish + 0 + 35 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 07 + https://wpthemetestdata.wordpress.com/2013/04/09/level-07/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-07 + + + + 1126 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-07 + publish + 0 + 36 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 08 + https://wpthemetestdata.wordpress.com/2013/04/09/level-08/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-08 + + + + 1127 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-08 + publish + 0 + 37 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 09 + https://wpthemetestdata.wordpress.com/2013/04/09/level-09/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-09 + + + + 1128 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-09 + publish + 0 + 38 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 10 + https://wpthemetestdata.wordpress.com/2013/04/09/level-10/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-10 + + + + 1129 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-10 + publish + 0 + 39 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Advanced + https://wpthemetestdata.wordpress.com/2013/04/09/advanced/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/advanced + + + + 1130 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + advanced + publish + 0 + 40 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu Description + https://wpthemetestdata.wordpress.com/2013/04/09/menu-description/ + Tue, 09 Apr 2013 13:37:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-description + + + + 1142 + 2013-04-09 06:37:50 + 2013-04-09 13:37:50 + open + closed + menu-description + publish + 0 + 44 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu Title Attribute + https://wpthemetestdata.wordpress.com/2013/04/09/menu-title-attribute/ + Tue, 09 Apr 2013 13:37:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-title-attribute + + + + 1143 + 2013-04-09 06:37:50 + 2013-04-09 13:37:50 + open + closed + menu-title-attribute + publish + 0 + 41 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu CSS Class + https://wpthemetestdata.wordpress.com/2013/04/09/menu-css-class/ + Tue, 09 Apr 2013 13:37:51 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-css-class + + + + 1144 + 2013-04-09 06:37:51 + 2013-04-09 13:37:51 + open + closed + menu-css-class + publish + 0 + 42 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + New Window / Tab + https://wpthemetestdata.wordpress.com/2013/04/09/new-window-tab/ + Tue, 09 Apr 2013 13:37:51 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/new-window-tab + + + + 1145 + 2013-04-09 06:37:51 + 2013-04-09 13:37:51 + open + closed + new-window-tab + publish + 0 + 43 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1263/</link> + <pubDate>Tue, 09 Apr 2013 13:38:00 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1263</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1263</wp:post_id> + <wp:post_date>2013-04-09 06:38:00</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:38:00</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1263</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1100]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1264/</link> + <pubDate>Tue, 09 Apr 2013 13:38:01 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1264</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1264</wp:post_id> + <wp:post_date>2013-04-09 06:38:01</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:38:01</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1264</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1100]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>twitter.com + https://wpthemetestdata.wordpress.com/2018/10/20/twitter-com/ + Sun, 21 Oct 2018 02:57:33 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/twitter-com/ + + + + 1719 + + + + + + + 0 + 1 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + facebook.com + https://wpthemetestdata.wordpress.com/2018/10/20/facebook-com/ + Sun, 21 Oct 2018 02:57:35 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/facebook-com/ + + + + 1720 + + + + + + + 0 + 2 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + github.com + https://wpthemetestdata.wordpress.com/2018/10/20/github-com/ + Sun, 21 Oct 2018 02:57:37 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/github-com + + + + 1721 + + + + + + + 0 + 3 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + instagram.com + https://wpthemetestdata.wordpress.com/2018/10/20/instagram-com + Sun, 21 Oct 2018 02:57:41 +000 + themereviewteam> + https://wpthemetestdata.wordpress.com/2018/10/20/instagram-com + + + + 1723 + + + + + + + 0 + 5 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + linkedin.com + https://wpthemetestdata.wordpress.com/2018/10/20/linkedin-com/ + Sun, 21 Oct 2018 02:57:39 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/linkedin-com/ + + + + 1722 + + + + + + + 0 + 4 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + triforce-wallpaper + https://wpthemetestdata.wordpress.com/2010/08/07/post-format-image-caption/triforce-wallpaper/ + Tue, 17 Aug 2010 20:17:31 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2010/08/triforce-wallpaper.jpg + + + + 1628 + 2010-08-17 13:17:31 + 2010-08-17 20:17:31 + open + closed + triforce-wallpaper + inherit + 1163 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2010/08/triforce-wallpaper.jpg + + + + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1636/</link> + <pubDate>Tue, 07 May 2013 19:54:30 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1636</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1636</wp:post_id> + <wp:post_date>2013-05-07 12:54:30</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:30</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1636</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1637/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1637</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1637</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1637</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1638/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1638</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1638</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1638</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1639/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1639</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1639</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1639</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1640/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1640</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1640</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1640</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1641/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1641</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1641</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1641</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1643/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1643</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1643</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1643</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1644/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1644</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1644</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1644</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[701]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1645/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1645</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1645</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1645</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1646/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1646</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1646</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1646</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1647/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1647</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1647</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1647</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1648/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1648</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1648</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1648</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1649/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1649</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1649</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1649</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1650/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1650</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1650</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1650</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1651/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1651</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1651</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1651</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>10</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[174]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1652/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1652</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1652</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1652</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>11</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[173]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1653/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1653</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1653</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1653</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>12</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[172]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1654/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1654</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1654</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1654</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>13</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[746]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1655/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1655</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1655</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1655</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>14</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[748]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1656/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1656</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1656</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1656</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>15</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[742]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1657/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1657</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1657</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1657</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>16</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[744]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1658/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1658</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1658</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1658</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>17</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1659/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1659</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1659</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1659</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>18</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[733]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1660/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1660</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1660</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1660</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>19</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[735]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1643/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1643</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1643</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1643</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1644/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1644</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1644</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1644</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[701]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1645/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1645</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1645</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1645</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1646/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1646</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1646</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1646</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1647/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1647</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1647</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1647</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1648/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1648</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1648</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1648</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1649/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1649</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1649</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1649</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1650/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1650</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1650</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1650</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1651/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1651</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1651</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1651</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>10</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[174]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1652/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1652</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1652</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1652</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>11</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[173]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1653/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1653</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1653</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1653</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>12</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[172]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1654/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1654</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1654</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1654</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>13</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[746]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1655/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1655</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1655</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1655</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>14</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[748]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1656/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1656</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1656</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1656</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>15</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[742]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1657/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1657</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1657</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1657</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>16</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[744]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1658/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1658</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1658</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1658</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>17</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1659/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1659</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1659</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1659</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>18</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[733]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1660/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1660</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1660</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1660</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>19</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[735]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>dsc20040724_152504_532 + https://wpthemetestdata.wordpress.com/?attachment_id=1686 + Wed, 18 Sep 2013 21:37:05 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20040724_152504_532.jpg + + + + 1686 + 2013-09-18 14:37:05 + 2013-09-18 21:37:05 + open + closed + dsc20040724_152504_532 + inherit + 0 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20040724_152504_532.jpg + + + dsc20050604_133440_34211 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050604_133440_34211/ + Wed, 18 Sep 2013 21:37:07 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20050604_133440_34211.jpg + + + + 1687 + 2013-09-18 14:37:07 + 2013-09-18 21:37:07 + open + closed + dsc20050604_133440_34211 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20050604_133440_34211.jpg + + + 2014-slider-mobile-behavior + https://wpthemetestdata.wordpress.com/?attachment_id=1690 + Wed, 04 Dec 2013 18:08:29 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/12/2014-slider-mobile-behavior.mov + + + + 1690 + 2013-12-04 11:08:29 + 2013-12-04 18:08:29 + open + closed + 2014-slider-mobile-behavior + inherit + 0 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/12/2014-slider-mobile-behavior.mov + + + dsc20050315_145007_132 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050315_145007_132-2/ + Sun, 05 Jan 2014 18:45:21 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2014/01/dsc20050315_145007_132.jpg + + + + 1691 + 2014-01-05 11:45:21 + 2014-01-05 18:45:21 + open + closed + dsc20050315_145007_132-2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2014/01/dsc20050315_145007_132.jpg + + + spectacles + https://wpthemetestdata.wordpress.com/about/clearing-floats/spectacles-2/ + Sun, 05 Jan 2014 18:45:36 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2014/01/spectacles.gif + + + + 1692 + 2014-01-05 11:45:36 + 2014-01-05 18:45:36 + open + closed + spectacles-2 + inherit + 501 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2014/01/spectacles.gif + + + Post Format: Standard + https://wpthemetestdata.wordpress.com/2010/10/05/post-format-standard/ + Tue, 05 Oct 2010 07:27:25 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=358 + + + +Mrs. Darling first heard of Peter when she was tidying up her children's minds. It is the nightly custom of every good mother after her children are asleep to rummage in their minds and put things straight for next morning, repacking into their proper places the many articles that have wandered during the day. + +If you could keep awake (but of course you can't) you would see your own mother doing this, and you would find it very interesting to watch her. It is quite like tidying up drawers. You would see her on her knees, I expect, lingering humorously over some of your contents, wondering where on earth you had picked this thing up, making discoveries sweet and not so sweet, pressing this to her cheek as if it were as nice as a kitten, and hurriedly stowing that out of sight. When you wake in the morning, the naughtiness and evil passions with which you went to bed have been folded up small and placed at the bottom of your mind and on the top, beautifully aired, are spread out your prettier thoughts, ready for you to put on. + +I don't know whether you have ever seen a map of a person's mind. Doctors sometimes draw maps of other parts of you, and your own map can become intensely interesting, but catch them trying to draw a map of a child's mind, which is not only confused, but keeps going round all the time. There are zigzag lines on it, just like your temperature on a card, and these are probably roads in the island, for the Neverland is always more or less an island, with astonishing splashes of colour here and there, and coral reefs and rakish-looking craft in the offing, and savages and lonely lairs, and gnomes who are mostly tailors, and caves through which a river runs, and princes with six elder brothers, and a hut fast going to decay, and one very small old lady with a hooked nose. It would be an easy map if that were all, but there is also first day at school, religion, fathers, the round pond, needle-work, murders, hangings, verbs that take the dative, chocolate pudding day, getting into braces, say ninety-nine, three-pence for pulling out your tooth yourself, and so on, and either these are part of the island or they are another map showing through, and it is all rather confusing, especially as nothing will stand still. + +Of course the Neverlands vary a good deal. John's, for instance, had a lagoon with flamingoes flying over it at which John was shooting, while Michael, who was very small, had a flamingo with lagoons flying over it. John lived in a boat turned upside down on the sands, Michael in a wigwam, Wendy in a house of leaves deftly sewn together. John had no friends, Michael had friends at night, Wendy had a pet wolf forsaken by its parents, but on the whole the Neverlands have a family resemblance, and if they stood still in a row you could say of them that they have each other's nose, and so forth. On these magic shores children at play are for ever beaching their coracles [simple boat]. We too have been there; we can still hear the sound of the surf, though we shall land no more. + +Of all delectable islands the Neverland is the snuggest and most compact, not large and sprawly, you know, with tedious distances between one adventure and another, but nicely crammed. When you play at it by day with the chairs and table-cloth, it is not in the least alarming, but in the two minutes before you go to sleep it becomes very real. That is why there are night-lights. + +Occasionally in her travels through her children's minds Mrs. Darling found things she could not understand, and of these quite the most perplexing was the word Peter. She knew of no Peter, and yet he was here and there in John and Michael's minds, while Wendy's began to be scrawled all over with him. The name stood out in bolder letters than any of the other words, and as Mrs. Darling gazed she felt that it had an oddly cocky appearance.]]> + + 358 + 2010-10-05 00:27:25 + 2010-10-05 07:27:25 + closed + closed + post-format-standard + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Gallery + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/ + Fri, 10 Sep 2010 14:24:14 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=555 + + + +You can use this page to test the Theme's handling of the gallery shortcode, including the columns parameter, from 1 to 9 columns. Themes are only required to support the default setting (3 columns), so this page is entirely optional. +

    One Column

    +[gallery columns="1"] +

    Two Columns

    +[gallery columns="2"] +

    Three Columns

    +[gallery columns="3"] +

    Four Columns

    +[gallery columns="4"] +

    Five Columns

    +[gallery columns="5"] +

    Six Columns

    +[gallery columns="6"] +

    Seven Columns

    +[gallery columns="7"] +

    Eight Columns

    +[gallery columns="8"] +

    Nine Columns

    +[gallery columns="9"]]]>
    + + 555 + 2010-09-10 07:24:14 + 2010-09-10 14:24:14 + closed + closed + post-format-gallery + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Post Format: Aside + https://wpthemetestdata.wordpress.com/2010/05/09/post-format-aside/ + Sun, 09 May 2010 14:51:54 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=559 + + + + 559 + 2010-05-09 07:51:54 + 2010-05-09 14:51:54 + closed + closed + post-format-aside + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Chat + https://wpthemetestdata.wordpress.com/2010/01/08/post-format-chat/ + Fri, 08 Jan 2010 14:59:31 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=562 + + + + 562 + 2010-01-08 07:59:31 + 2010-01-08 14:59:31 + closed + closed + post-format-chat + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Link + https://wpthemetestdata.wordpress.com/2010/03/07/post-format-link/ + Sun, 07 Mar 2010 15:06:53 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=565 + + The WordPress Theme Review Team Website]]> + + 565 + 2010-03-07 08:06:53 + 2010-03-07 15:06:53 + closed + closed + post-format-link + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Image (Linked) + https://wpthemetestdata.wordpress.com/2010/08/06/post-format-image-linked/ + Fri, 06 Aug 2010 15:09:39 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=568 + + chunk of resinous blackboy husk[/caption] +]]> + + 568 + 2010-08-06 08:09:39 + 2010-08-06 15:09:39 + closed + closed + post-format-image-linked + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Quote + https://wpthemetestdata.wordpress.com/2010/02/05/post-format-quote/ + Fri, 05 Feb 2010 15:13:15 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=575 + + Only one thing is impossible for God: To find any sense in any copyright law on the planet. +Mark Twain]]> + + 575 + 2010-02-05 08:13:15 + 2010-02-05 15:13:15 + closed + closed + post-format-quote + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Status + https://wpthemetestdata.wordpress.com/2010/04/04/post-format-status/ + Sun, 04 Apr 2010 15:21:24 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=579 + + + + 579 + 2010-04-04 08:21:24 + 2010-04-04 15:21:24 + closed + closed + post-format-status + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Video (WordPress.tv) + https://wpthemetestdata.wordpress.com/2010/06/03/post-format-video-wordpresstv/ + Thu, 03 Jun 2010 15:25:58 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=582 + + instructions in the Codex.]]> + + 582 + 2010-06-03 08:25:58 + 2010-06-03 15:25:58 + closed + closed + post-format-video-wordpresstv + publish + 0 + 0 + post + + 0 + + + + + + + + + _oembed_4321638fc1a6fee26443f7fe8a70a871 + ]]> + + + _oembed_29351fff85c1be1d1e9a965a0332a861 + ]]> + + + _oembed_9fcc86d7d9398ff736577f922307f64d + ]]> + + + _oembed_366237792d32461d0052efb2edec37f5 + ]]> + + + _oembed_37fdfe862c13c46a93be2921279bf675 + ]]> + + + + Post Format: Audio + https://wpthemetestdata.wordpress.com/2010/07/02/post-format-audio/ + Fri, 02 Jul 2010 15:36:44 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=587 + + St. Louis Blues + +Audio shortcode: + +[audio https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3]]]> + + 587 + 2010-07-02 08:36:44 + 2010-07-02 15:36:44 + closed + closed + post-format-audio + publish + 0 + 0 + post + + 0 + + + + + + + + enclosure + + + + + Page A + https://wpthemetestdata.wordpress.com/page-a/ + Fri, 24 Jun 2011 01:38:52 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=733 + + + + 733 + 2011-06-23 18:38:52 + 2011-06-24 01:38:52 + open + closed + page-a + publish + 0 + 10 + page + + 0 + + + Page B + https://wpthemetestdata.wordpress.com/page-b/ + Fri, 24 Jun 2011 01:39:14 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=735 + + + + 735 + 2011-06-23 18:39:14 + 2011-06-24 01:39:14 + open + closed + page-b + publish + 0 + 11 + page + + 0 + + + Level 2a + https://wpthemetestdata.wordpress.com/level-1/level-2a/ + Fri, 24 Jun 2011 02:03:33 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=742 + + + + 742 + 2011-06-23 19:03:33 + 2011-06-24 02:03:33 + open + closed + level-2a + publish + 174 + 0 + page + + 0 + + + Level 2b + https://wpthemetestdata.wordpress.com/level-1/level-2b/ + Fri, 24 Jun 2011 02:04:03 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=744 + + + + 744 + 2011-06-23 19:04:03 + 2011-06-24 02:04:03 + open + closed + level-2b + publish + 174 + 0 + page + + 0 + + + Level 3a + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3a/ + Fri, 24 Jun 2011 02:04:24 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=746 + + + + 746 + 2011-06-23 19:04:24 + 2011-06-24 02:04:24 + open + closed + level-3a + publish + 173 + 0 + page + + 0 + + + Level 3b + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3b/ + Fri, 24 Jun 2011 02:04:46 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=748 + + + + 748 + 2011-06-23 19:04:46 + 2011-06-24 02:04:46 + open + closed + level-3b + publish + 173 + 0 + page + + 0 + + + Template: Excerpt (Defined) + https://wpthemetestdata.wordpress.com/2012/03/15/template-excerpt-defined/ + Thu, 15 Mar 2012 21:38:08 +0000 + themedemos + http://wptest.io/demo/?p=993 + + should be displayed in place of the user-defined excerpt in single-page views.]]> + should be displayed in place of the post content in archive-index pages. It can be longer than the automatically generated excerpts, and can have HTML tags.]]> + 993 + 2012-03-15 14:38:08 + 2012-03-15 21:38:08 + closed + closed + template-excerpt-defined + publish + 0 + 0 + post + + 0 + + + + + + + + + Template: More Tag + https://wpthemetestdata.wordpress.com/2012/03/15/template-more-tag/ + Thu, 15 Mar 2012 21:41:11 +0000 + themedemos + http://wptest.io/demo/?p=996 + + more tag. + +Right after this sentence should be a "continue reading" button of some sort on list pages of themes that show full content. It won't show on single pages or on themes showing excerpts. + + + +And this content is after the more tag. (which should be the anchor link for when the button is clicked)]]> + + 996 + 2012-03-15 14:41:11 + 2012-03-15 21:41:11 + closed + closed + template-more-tag + publish + 0 + 0 + post + + 0 + + + + + + + + + Edge Case: Nested And Mixed Lists + https://wpthemetestdata.wordpress.com/2009/05/15/edge-case-nested-and-mixed-lists/ + Fri, 15 May 2009 21:48:32 +0000 + themedemos + http://wptest.io/demo/?p=1000 + + +
  • Lists within lists do not break the ordered list numbering order
  • +
  • Your list styles go deep enough.
  • + +

    Ordered - Unordered - Ordered

    +
      +
    1. ordered item
    2. +
    3. ordered item +
        +
      • unordered
      • +
      • unordered +
          +
        1. ordered item
        2. +
        3. ordered item
        4. +
        +
      • +
      +
    4. +
    5. ordered item
    6. +
    7. ordered item
    8. +
    +

    Ordered - Unordered - Unordered

    +
      +
    1. ordered item
    2. +
    3. ordered item +
        +
      • unordered
      • +
      • unordered +
          +
        • unordered item
        • +
        • unordered item
        • +
        +
      • +
      +
    4. +
    5. ordered item
    6. +
    7. ordered item
    8. +
    +

    Unordered - Ordered - Unordered

    +
      +
    • unordered item
    • +
    • unordered item +
        +
      1. ordered
      2. +
      3. ordered +
          +
        • unordered item
        • +
        • unordered item
        • +
        +
      4. +
      +
    • +
    • unordered item
    • +
    • unordered item
    • +
    +

    Unordered - Unordered - Ordered

    +
      +
    • unordered item
    • +
    • unordered item +
        +
      • unordered
      • +
      • unordered +
          +
        1. ordered item
        2. +
        3. ordered item
        4. +
        +
      • +
      +
    • +
    • unordered item
    • +
    • unordered item
    • +
    ]]>
    + + 1000 + 2009-05-15 14:48:32 + 2009-05-15 21:48:32 + closed + closed + edge-case-nested-and-mixed-lists + publish + 0 + 0 + post + + 0 + + + + + + + +
    + + Template: Featured Image (Horizontal) + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-horizontal/ + Thu, 15 Mar 2012 22:15:12 +0000 + themedemos + http://wptest.io/demo/?p=1011 + + featured image, if the theme supports it. + +Non-square images can provide some unique styling issues. + +This post tests a horizontal featured image.]]> + + 1011 + 2012-03-15 15:15:12 + 2012-03-15 22:15:12 + closed + closed + template-featured-image-horizontal + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + + + + Template: Featured Image (Vertical) + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-vertical/ + Thu, 15 Mar 2012 22:36:32 +0000 + themedemos + http://wptest.io/demo/?p=1016 + + featured image, if the theme supports it. + +Non-square images can provide some unique styling issues. + +This post tests a vertical featured image.]]> + + 1016 + 2012-03-15 15:36:32 + 2012-03-15 22:36:32 + closed + closed + template-featured-image-vertical + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + + + + Post Format: Gallery (Tiled) + https://wpthemetestdata.wordpress.com/2010/09/09/post-format-gallery-tiled/ + Fri, 10 Sep 2010 00:23:27 +0000 + themedemos + http://wptest.io/demo/?p=1031 + + Jetpack to test. + +[gallery type="rectangular" columns="4" ids="755,757,758,760,766,763" orderby="rand"] + +This is some text after the Tiled Gallery just to make sure that everything spaces nicely.]]> + + 1031 + 2010-09-09 17:23:27 + 2010-09-10 00:23:27 + closed + closed + post-format-gallery-tiled + publish + 0 + 0 + post + + 0 + + + + + + + + + + + Page Image Alignment + https://wpthemetestdata.wordpress.com/about/page-image-alignment/ + Fri, 15 Mar 2013 23:19:23 +0000 + themedemos + http://wptest.io/demo/?page_id=1080 + + None, Left, Right, and Center. In addition, they also get the options of Thumbnail, Medium, Large & Fullsize. Be sure to try this page in RTL mode and it should look the same as LTR. +

    Image Alignment 580x300

    +The image above happens to be centered. + +Image Alignment 150x150 The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see there should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +Image Alignment 1200x400 + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 1200x400 + +And we try the large image again, with the center alignment since that sometimes is a problem. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 300x200 + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And just when you thought we were done, we're going to do them all over again with captions! + +[caption id="attachment_906" align="aligncenter" width="580"]Image Alignment 580x300 Look at 580x300 getting some caption love.[/caption] + +The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky. + +[caption id="attachment_904" align="alignleft" width="150"]Image Alignment 150x150 Bigger caption than the image usually is.[/caption] + +The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +[caption id="attachment_907" align="alignnone" width="1200"]Image Alignment 1200x400 Comment for massive image for your eyeballs.[/caption] + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. +[caption id="attachment_907" align="aligncenter" width="1200"]Image Alignment 1200x400 This massive image is centered.[/caption] + +And again with the big image centered. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +[caption id="attachment_905" align="alignright" width="300"]Image Alignment 300x200 Feels good to be right all the time.[/caption] + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! Last thing is a small image aligned right. Whatever follows should be unaffected. Image Alignment 150x150]]>
    + + 1133 + 2013-03-15 18:19:23 + 2013-03-15 23:19:23 + open + open + page-image-alignment + publish + 2 + 0 + page + + 0 +
    + + Page Markup And Formatting + https://wpthemetestdata.wordpress.com/about/page-markup-and-formatting/ + Fri, 15 Mar 2013 23:20:05 +0000 + themedemos + http://wptest.io/demo/?page_id=1083 + + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    Jane$1Because that's all Steve Jobs needed for a salary.
    John$100KFor all the blogging he does.
    Jane$100MPictures are worth a thousand words, right? So Tom x 1,000.
    Jane$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    + Robert Frost
    +
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +This tag shows strike-through text. + +Small Tag + +This tag shows smaller text. + +Strong Tag + +This tag shows bold text. + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +This rarely used tag emulates teletype text, which is usually styled like the <code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +This tag shows underlined text. + +Variable Tag + +This allows you to denote variables.]]>
    + + 1134 + 2013-03-15 18:20:05 + 2013-03-15 23:20:05 + open + open + page-markup-and-formatting + publish + 2 + 0 + page + + 0 +
    + + Template: Comments + https://wpthemetestdata.wordpress.com/2012/01/03/template-comments/ + Tue, 03 Jan 2012 17:11:37 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/comment-test/ + + +
  • Threaded comments up to 10 levels deep
  • +
  • Paginated comments (set Settings > Discussion > Break comments into pages to 5 top level comments per page)
  • +
  • Comment markup / formatting
  • +
  • Comment images
  • +
  • Comment videos
  • +
  • Author comments
  • +
  • Gravatars and default fallbacks
  • +]]>
    + + 1148 + 2012-01-03 10:11:37 + 2012-01-03 17:11:37 + open + closed + template-comments + publish + 0 + 0 + post + + 0 + + + + + + + 881 + + example@example.org + http://example.org/ + + 2012-09-03 10:18:04 + 2012-09-03 17:18:04 + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    John Saddington$1Because that's all Steve Job' needed for a salary.
    Tom McFarlin$100KFor all the blogging he does.
    Jared Erickson$100MPictures are worth a thousand words, right? So Tom x 1,000.
    Chris Ames$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    + +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    +Robert Frost
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    + +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up.]]>
    + 1 + + 0 + 0 +
    + + 899 + + fake@example.com + + + 2013-03-11 23:45:54 + 2013-03-12 04:45:54 + Gravatar associated with it. + They did not speify a website, so there should be no link to it in the comment. +]]> + 1 + + 0 + 0 + + + 900 + + example@example.org + http://example.org/ + + 2013-03-12 13:17:35 + 2013-03-12 20:17:35 + + 1 + + 0 + 0 + + + 901 + + example@example.org + http://example.org + + 2013-03-14 07:53:26 + 2013-03-14 14:53:26 + + 1 + + 0 + 0 + + + 903 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 07:56:46 + 2013-03-14 14:56:46 + + 1 + + 0 + 24783058 + + + 904 + + example@example.org + http://example.org/ + + 2013-03-14 07:57:01 + 2013-03-14 14:57:01 + + 1 + + 0 + 0 + + + 905 + + example@example.org + http://example.org/ + + 2013-03-14 08:01:21 + 2013-03-14 15:01:21 + + 1 + + 904 + 0 + + + 906 + + example@example.org + http://example.org/ + + 2013-03-14 08:02:06 + 2013-03-14 15:02:06 + + 1 + + 905 + 0 + + + 907 + + example@example.org + http://example.org/ + + 2013-03-14 08:03:22 + 2013-03-14 15:03:22 + + 1 + + 906 + 0 + + + 910 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 08:10:29 + 2013-03-14 15:10:29 + + 1 + + 907 + 24783058 + + + 911 + + example@example.org + http://example.org/ + + 2013-03-14 08:12:16 + 2013-03-14 15:12:16 + + 1 + + 910 + 0 + + + 912 + + example@example.org + http://example.org/ + + 2013-03-14 08:12:58 + 2013-03-14 15:12:58 + + 1 + + 911 + 0 + + + 913 + + example@example.org + http://example.org/ + + 2013-03-14 08:13:42 + 2013-03-14 15:13:42 + + 1 + + 912 + 0 + + + 914 + + example@example.org + http://example.org/ + + 2013-03-14 08:14:13 + 2013-03-14 15:14:13 + + 1 + + 913 + 0 + + + 915 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 08:14:47 + 2013-03-14 15:14:47 + + 1 + + 914 + 24783058 + + + 917 + + example@example.org + http://example.org/ + + 2013-03-14 09:56:43 + 2013-03-14 16:56:43 + + If the image imports... + ]]> + 1 + + 0 + 0 + + + 918 + + example@example.org + http://example.org/ + + 2013-03-14 11:23:24 + 2013-03-14 18:23:24 + + 1 + + 0 + 0 + + + 919 + + example@example.org + http://example.org/ + + 2013-03-14 11:27:54 + 2013-03-14 18:27:54 + + 1 + + 0 + 0 + + + 920 + + example@example.org + http://example.org/ + + 2013-03-14 11:30:33 + 2013-03-14 18:30:33 + + 1 + + 0 + 24783058 + + + 1015 + + auser@example.com + + + 2014-09-29 02:52:15 + 2014-09-29 09:52:15 + + 0 + + 0 + 0 + +
    + + Template: Pingbacks And Trackbacks + https://wpthemetestdata.wordpress.com/2012/01/01/template-pingbacks-an-trackbacks/ + Sun, 01 Jan 2012 17:17:18 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/many-trackbacks/ + + +
  • Above the comments
  • +
  • Below the comments
  • +
  • Included within the normal flow of comments
  • +]]>
    + + 1149 + 2012-01-01 10:17:18 + 2012-01-01 17:17:18 + closed + closed + template-pingbacks-an-trackbacks + publish + 0 + 0 + post + + 0 + + + + + + + + + 921 + + + http://tellyworth.wordpress.com/2007/11/21/ping-1/ + + 2007-11-21 11:31:12 + 2007-11-21 01:31:12 + + 1 + trackback + 0 + 0 + + + 922 + + + http://tellyworth.wordpress.com/2007/11/21/ping-2-with-a-much-longer-title-than-the-previous-ping-which-was-called-ping-1/ + + 2007-11-21 11:35:47 + 2007-11-21 01:35:47 + + 1 + trackback + 0 + 0 + + + 923 + + + http://tellyworth.wordpress.com/2007/11/21/ping-4/ + + 2007-11-21 11:39:25 + 2007-11-21 01:39:25 + + 1 + pingback + 0 + 0 + + + 924 + + + http://tellyworth.wordpress.com/2007/11/21/ping-3/ + + 2007-11-21 11:38:22 + 2007-11-21 01:38:22 + + 1 + pingback + 0 + 0 + + + 925 + + example@example.org + http://example.org/ + + 2010-06-11 15:27:04 + 2010-06-11 22:27:04 + + 1 + + 0 + 0 + +
    + + Template: Comments Disabled + https://wpthemetestdata.wordpress.com/2012/01/02/template-comments-disabled/ + Mon, 02 Jan 2012 17:21:15 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/no-comments/ + + should display pingbacks and trackbacks.]]> + + 1150 + 2012-01-02 10:21:15 + 2012-01-02 17:21:15 + closed + closed + template-comments-disabled + publish + 0 + 0 + post + + 0 + + + + + + + + Edge Case: Many Tags + https://wpthemetestdata.wordpress.com/2009/06/01/edge-case-many-tags/ + Mon, 01 Jun 2009 08:00:34 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/11/24/many-tags/ + + + + 1151 + 2009-06-01 01:00:34 + 2009-06-01 08:00:34 + closed + closed + edge-case-many-tags + publish + 0 + 0 + post + + 0' + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Edge Case: Many Categories + https://wpthemetestdata.wordpress.com/2009/07/02/edge-case-many-categories/ + Thu, 02 Jul 2009 09:00:03 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/11/24/many-categories/ + + + + 1152 + 2009-07-02 02:00:03 + 2009-07-02 09:00:03 + closed + closed + edge-case-many-categories + publish + 0 + 0 + post + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Scheduled + https://wpthemetestdata.wordpress.com/2020/01/01/scheduled/ + Wed, 01 Jan 2030 19:00:18 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=418 + + + + 1153 + 2030-01-01 12:00:18 + 2030-01-01 19:00:18 + closed + closed + scheduled + future + 0 + 0 + post + + 0 + + + + + + Post Format: Image + https://wpthemetestdata.wordpress.com/2010/08/08/post-format-image/ + Sun, 08 Aug 2010 12:00:39 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=568 + +
      + +]]>
    + + 1158 + 2010-08-08 05:00:39 + 2010-08-08 12:00:39 + closed + closed + post-format-image + publish + 0 + 0 + post + + 0 + + + + + +
    + + Post Format: Video (YouTube) + https://wpthemetestdata.wordpress.com/2010/06/02/post-format-video-youtube/ + Wed, 02 Jun 2010 09:00:58 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=582 + + WordPress Embeds.]]> + + 1161 + 2010-06-02 02:00:58 + 2010-06-02 09:00:58 + closed + closed + post-format-video-youtube + publish + 0 + 0 + post + + 0 + + + + + + + Post Format: Image (Caption) + https://wpthemetestdata.wordpress.com/2010/08/07/post-format-image-caption/ + Sat, 07 Aug 2010 13:00:19 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=674 + + Bell on Wharf Bell on wharf in San Francisco[/caption]]]> + + 1163 + 2010-08-07 06:00:19 + 2010-08-07 13:00:19 + closed + closed + post-format-image-caption + publish + 0 + 0 + post + + 0 + + + + + + + + _thumbnail_id + + + + + Draft + https://wpthemetestdata.wordpress.com/?p=1164 + Tue, 09 Apr 2013 18:20:39 +0000 + themedemos + http://wptest.io/demo/?p=922 + + + + 1164 + 2013-04-09 11:20:39 + 2013-04-09 18:20:39 + closed + closed + + draft + 0 + 0 + post + + 0 + + + + + + Template: Password Protected (the password is "enter") + https://wpthemetestdata.wordpress.com/2012/01/04/template-password-protected/ + Wed, 04 Jan 2012 16:38:05 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/test-with-secret-password/ + + + + 1168 + 2012-01-04 09:38:05 + 2012-01-04 16:38:05 + closed + closed + template-password-protected + publish + 0 + 0 + post + enter + 0 + + + + + + + 926 + + example@example.org + http://example.org/ + + 2013-03-14 11:56:08 + 2013-03-14 18:56:08 + + 1 + + 0 + 0 + + + + + <link>https://wpthemetestdata.wordpress.com/2009/09/05/edge-case-no-title/</link> + <pubDate>Sat, 05 Sep 2009 16:00:23 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2007/09/04/14/</guid> + <description/> + <content:encoded><![CDATA[This post has no title, but it still must link to the single post view somehow. + +This is typically done by placing the permalink on the post date.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1169</wp:post_id> + <wp:post_date>2009-09-05 09:00:23</wp:post_date> + <wp:post_date_gmt>2009-09-05 16:00:23</wp:post_date_gmt> + <wp:comment_status>closed</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>edge-case-no-title</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>0</wp:menu_order> + <wp:post_type>post</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="category" nicename="classic"><![CDATA[Classic]]></category> + <category domain="post_tag" nicename="edge-case"><![CDATA[edge case]]></category> + <category domain="category" nicename="edge-case-2"><![CDATA[Edge Case]]></category> + <category domain="post_tag" nicename="layout"><![CDATA[layout]]></category> + <category domain="post_tag" nicename="title"><![CDATA[title]]></category> +</item> +<item> + <title>Edge Case: No Content + https://wpthemetestdata.wordpress.com/2009/08/06/edge-case-no-content/ + Thu, 06 Aug 2009 16:39:56 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/this-post-has-no-body/ + + + + 1170 + 2009-08-06 09:39:56 + 2009-08-06 16:39:56 + closed + closed + edge-case-no-content + publish + 0 + 0 + post + + 0 + + + + + + + 927 + + example@example.org + http://example.org/ + + 2013-03-14 12:35:07 + 2013-03-14 19:35:07 + + 1 + + 0 + 0 + + + + Template: Paginated + https://wpthemetestdata.wordpress.com/2012/01/08/template-paginated/ + Sun, 08 Jan 2012 17:00:20 +0000 + themedemos + https://noeltest.wordpress.com/?p=188 + + + +Post Page 2 + + + +Post Page 3]]> + + 1171 + 2012-01-08 10:00:20 + 2012-01-08 17:00:20 + closed + closed + template-paginated + publish + 0 + 0 + post + + 0 + + + + + + + + + <![CDATA[Markup: Title <em>With</em> <b>Mark<sup>up</sup></b>]]> + https://wpthemetestdata.wordpress.com/2013/01/05/markup-title-with-markup/ + Sat, 05 Jan 2013 17:00:49 +0000 + themedemos + http://wptest.io/demo/?p=861 + + +
  • The post title renders the word "with" in italics and the word "markup" in bold (and "up" is superscript).
  • +
  • The post title markup should be removed from the browser window / tab.
  • +]]>
    + + 1173 + 2013-01-05 10:00:49 + 2013-01-05 17:00:49 + closed + closed + markup-title-with-markup + publish + 0 + 0 + post + + 0 + + + + + +
    + + Markup: Title With Special Characters ~`!@#$%^&*()-_=+{}[]/\;:'"?,.> + https://wpthemetestdata.wordpress.com/2013/01/05/title-with-special-characters/ + Sat, 05 Jan 2013 18:00:20 +0000 + themedemos + http://wptest.io/demo/?p=867 + + Latin Character Tests +This is a test to see if the fonts used in this theme support basic Latin characters. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    !"#$%&'()*
    +,-./01234
    56789:;>=<
    ?@ABCDEFGH
    IJKLMNOPQR
    STUVWXYZ[\
    ]^_`abcdef
    ghijklmnop
    qrstuvwxyz
    {|}~
    ]]>
    + + 1174 + 2013-01-05 11:00:20 + 2013-01-05 18:00:20 + closed + closed + title-with-special-characters + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Taumatawhakatangihangakoauauotamateaturipukakapikimaungahoronukupokaiwhenuakitanatahu + https://wpthemetestdata.wordpress.com/2009/10/05/title-should-not-overflow-the-content-area/ + Mon, 05 Oct 2009 19:00:59 +0000 + themedemos + http://wptest.io/demo/?p=877 + + Title should not overflow the content area + +A few things to check for: +
      +
    • Non-breaking text in the title, content, and comments should have no adverse effects on layout or functionality.
    • +
    • Check the browser window / tab title.
    • +
    • If you are a plugin or widget developer, check that this text does not break anything.
    • +
    + +The following CSS properties will help you support non-breaking text. + +
    -ms-word-wrap: break-word;
    +word-wrap: break-word;
    + ]]>
    + + 1175 + 2009-10-05 12:00:59 + 2009-10-05 19:00:59 + closed + closed + title-should-not-overflow-the-content-area + publish + 0 + 0 + post + + 0 + + + + + + + + +
    + + Markup: Text Alignment + https://wpthemetestdata.wordpress.com/2013/01/09/markup-text-alignment/ + Wed, 09 Jan 2013 16:00:39 +0000 + themedemos + http://wptest.io/demo/?p=895 + + Default +This is a paragraph. It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love. Completely neutral and not picking a side or sitting on the fence. It just is. It just freaking is. It likes where it is. It does not feel compelled to pick a side. Leave him be. It will just be better that way. Trust me. +

    Left Align

    +

    This is a paragraph. It is left aligned. Because of this, it is a bit more liberal in it's views. It's favorite color is green. Left align tends to be more eco-friendly, but it provides no concrete evidence that it really is. Even though it likes share the wealth evenly, it leaves the equal distribution up to justified alignment.

    + +

    Center Align

    +

    This is a paragraph. It is center aligned. Center is, but nature, a fence sitter. A flip flopper. It has a difficult time making up its mind. It wants to pick a side. Really, it does. It has the best intentions, but it tends to complicate matters more than help. The best you can do is try to win it over and hope for the best. I hear center align does take bribes.

    + +

    Right Align

    +

    This is a paragraph. It is right aligned. It is a bit more conservative in it's views. It's prefers to not be told what to do or how to do it. Right align totally owns a slew of guns and loves to head to the range for some practice. Which is cool and all. I mean, it's a pretty good shot from at least four or five football fields away. Dead on. So boss.

    + +

    Justify Align

    +

    This is a paragraph. It is justify aligned. It gets really mad when people associate it with Justin Timberlake. Typically, justified is pretty straight laced. It likes everything to be in it's place and not all cattywampus like the rest of the aligns. I am not saying that makes it better than the rest of the aligns, but it does tend to put off more of an elitist attitude.

    ]]>
    + + 1176 + 2013-01-09 09:00:39 + 2013-01-09 16:00:39 + closed + closed + markup-text-alignment + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Markup: Image Alignment + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/ + Fri, 11 Jan 2013 03:15:40 +0000 + themedemos + http://wptest.io/demo/?p=903 + + None, Left, Right, and Center. In addition, they also get the options of Thumbnail, Medium, Large & Fullsize. Be sure to try this page in RTL mode and it should look the same as LTR. +

    Image Alignment 580x300

    +The image above happens to be centered. + +Image Alignment 150x150 The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +Image Alignment 1200x400 + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 1200x400 + +And we try the large image again, with the center alignment since that sometimes is a problem. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 300x200 + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And just when you thought we were done, we're going to do them all over again with captions! + +[caption id="attachment_906" align="aligncenter" width="580"]Image Alignment 580x300 Look at 580x300 getting some caption love.[/caption] + +The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky. + +[caption id="attachment_904" align="alignleft" width="150"]Image Alignment 150x150 Bigger caption than the image usually is.[/caption] + +The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +[caption id="attachment_907" align="alignnone" width="1200"]Image Alignment 1200x400 Comment for massive image for your eyeballs.[/caption] + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. +[caption id="attachment_907" align="aligncenter" width="1200"]Image Alignment 1200x400 This massive image is centered.[/caption] + +And again with the big image centered. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +[caption id="attachment_905" align="alignright" width="300"]Image Alignment 300x200 Feels good to be right all the time.[/caption] + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! One last thing: The last item in this post's content is a thumbnail floated right. Make sure any elements after the content are clearing properly. + +]]>
    + + 1177 + 2013-01-10 20:15:40 + 2013-01-11 03:15:40 + closed + closed + markup-image-alignment + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + +
    + + Markup: HTML Tags and Formatting + https://wpthemetestdata.wordpress.com/2013/01/11/markup-html-tags-and-formatting/ + Sat, 12 Jan 2013 03:22:19 +0000 + themedemos + http://wptest.io/demo/?p=919 + + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    John Doe$1Because that's all Steve Jobs needed for a salary.
    Jane Doe$100KFor all the blogging she does.
    Fred Bloggs$100MPictures are worth a thousand words, right? So Jane x 1,000.
    Jane Bloggs$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    +Robert Frost
    +
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +This tag shows strike-through text. + +Small Tag + +This tag shows smaller text. + +Strong Tag + +This tag shows bold text. + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +This rarely used tag emulates teletype text, which is usually styled like the <code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +This tag shows underlined text. + +Variable Tag + +This allows you to denote variables.]]>
    + + 1178 + 2013-01-11 20:22:19 + 2013-01-12 03:22:19 + closed + closed + markup-html-tags-and-formatting + publish + 0 + 0 + post + + 0 + + + + + + + +
    + + Media: Twitter Embeds + https://wpthemetestdata.wordpress.com/2011/03/15/media-twitter-embeds/ + Tue, 15 Mar 2011 22:47:16 +0000 + themedemos + http://wptest.io/demo/?p=1027 + + Twitter Embeds feature.]]> + + 1179 + 2011-03-15 15:47:16 + 2011-03-15 22:47:16 + closed + closed + media-twitter-embeds + publish + 0 + 0 + post + + 0 + + + + + + + + _oembed_time_d01e104b758ab65a49dfdede5913069c + + + + _oembed_ac49b172e1844531a885a53eff2efd91 + ]]> + + + _oembed_time_ac49b172e1844531a885a53eff2efd91 + + + + _oembed_d01e104b758ab65a49dfdede5913069c + ]]> + + + + Template: Sticky + https://wpthemetestdata.wordpress.com/2012/01/07/template-sticky/ + Sat, 07 Jan 2012 14:07:21 +0000 + themedemos + http://wptest.io/demo/?p=1241 + + +
  • The sticky post should be distinctly recognizable in some way in comparison to normal posts. You can style the .sticky class if you are using the post_class() function to generate your post classes, which is a best practice.
  • +
  • They should show at the very top of the blog index page, even though they could be several posts back chronologically.
  • +
  • They should still show up again in their chronologically correct postion in time, but without the sticky indicator.
  • +
  • If you have a plugin or widget that lists popular posts or comments, make sure that this sticky post is not always at the top of those lists unless it really is popular.
  • +]]>
    + + 1241 + 2012-01-07 07:07:21 + 2012-01-07 14:07:21 + closed + closed + template-sticky + publish + 0 + 0 + post + + 1 + + + + +
    + + Template: Excerpt (Generated) + https://wpthemetestdata.wordpress.com/2012/03/14/template-excerpt-generated/ + Wed, 14 Mar 2012 16:49:22 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=1446 + + excerpt_length and excerpt_more, display properly.]]> + + 1446 + 2012-03-14 09:49:22 + 2012-03-14 16:49:22 + closed + closed + template-excerpt-generated + publish + 0 + 0 + post + + 0 + + + + + + + + + Block category: Common + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-common/ + Fri, 02 Nov 2018 16:20:28 +0000 + >themereviewteam + https://wpthemetestdata.wordpress.com/?p=1730 + + +

    The Common category includes the following blocks: Paragraph, image, headings, list, gallery, quote, audio, cover, video.

    + + + +

    The paragraph block is the default block type.  It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love.

    + + + +

    This paragraph is left aligned.

    + + + +

    This italic paragraph is right aligned.

    + + + +

    Neither of these paragraphs care about politics, but this one is bold, medium sized and has a drop cap.

    + + + +

    This paragraph is centered.

    + + + +

    This paragraph prefers Jazz over Justin Timberlake. It also uses the small font size.

    + + + +

    This paragraph has something important to say:  It has a large font size, which defaults to 36px.

    + + + +

    The huge text size defaults to 46px, but the size can be customized.

    + + + +

    This paragraph is colorful, with a red background and white text (maybe). Colored blocks should have a high enough contrast, so that the text is readable.

    + + + +

    Below this block, you will see a single image with a circle mask applied.

    + + + +
    Image Alignment 150x150
    + + + +

    H1 Heading

    + + + +

    H2 Heading

    + + + +

    H3 Heading

    + + + +

    H4 Heading

    + + + +
    H5 Heading
    + + + +
    H6 Heading
    + + + +

    Ordered list

    + + + +
    1. The software should be licensed under the GNU Public License.
    2. The software should be freely available to anyone to use for any purpose, and without permission.
    3. The software should be open to modifications.
      1. Any modifications should be freely distributable at no cost and without permission from its creators.
    4. The software should provide a framework for translation to make it globally accessible to speakers of all languages.
    5. The software should provide a framework for extensions so modifications and enhancements can be made without modifying core code
    + + + +

    Unordered list

    + + + +
    • One
    • Two
    • Three
      • Four
    • Five
    + + + + + + + +

    Quote

    Cite
    + + + +
    + + + +
    +

    Cover block with background image

    +
    + + + +

    The file block has a setting that lets us show or hide a download button with editable text:

    + + + + + + + + + + + +

    Video blocks have settings for showing and hiding the playback controls. Use autoplay and playback controls responsibly.

    + + + +
    This is a video block caption.
    + + + +

    The video block below is muted and has a poster image that displays before the video starts:

    + + + +
    + +]]>
    + + 1730 + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + +
    + + Block category: Formatting + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-formatting/ + Fri, 02 Nov 2018 16:41:42 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1732 + + +

    The formatting category includes the following blocks:

    + + + +
    The code block starts with
    +<!-- wp:code -->
    +<?php echo 'Hello World'; ?>
    +
    + + +

    The classic block can have almost anything in it.

    +
    +
    a heading
    + + +
    The custom HTML block lets you put HTML that isn't configured like blocks in it. (this div has a width of 45%)
    + + + +
    The preformatted block.

    The Road Not Taken

    Robert Frost
    Two roads diverged in a yellow wood,
    And sorry I could not travel both (\_/)
    And be one traveler, long I stood (='.'=)
    And looked down one as far as I could (")_(")
    To where it bent in the undergrowth;

    Then took the other, as just as fair,
    And having perhaps the better claim, |\_/|
    Because it was grassy and wanted wear; / @ @ \
    Though as for that the passing there ( > º < )
    Had worn them really about the same, `>>x<<´
    / O \
    And both that morning equally lay
    In leaves no step had trodden black.
    Oh, I kept the first for another day!
    Yet knowing how way leads on to way,
    I doubted if I should ever come back.
    I shall be telling this with a sigh
    Somewhere ages and ages hence:
    Two roads diverged in a wood, and I—
    I took the one less traveled by,
    And that has made all the difference.



    and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    + + + +

    The pull quote can be aligned or wide or neither.

    Theme Reviewer
    + + + +
    The table blockThis is the default style.
    The cell next to this is empty.
    Cell #5
    Cell #6
    + + + +
    This is the striped style.This row should have a background color.
    The cell next to this is empty.

    This table has fixed width table cells.

    Make sure that the text wraps correctly.

    + + + +
    The Verse block

    A block for haiku?
    Why not?
    Blocks for all the things!
    +]]>
    + + 1732 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Block category: Layout Elements + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-layout-elements/ + Fri, 02 Nov 2018 16:44:37 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1734 + + +
    +

    The Layout Elements category includes the following blocks: Group, Button, Columns, Media & Text, separator, spacer, read more, and page break.

    + + + +

    This group block has a light green background color.

    + + + + + + + +

    The read more block should be right below this text, but only on list pages of themes that show the full content. It won't show on the single page or on themes showing excerpts.

    +
    + + + + + + + +
    +
    +

    The columns:

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    +
    + + + +
    Boardwalk
    +

    Media &Text

    + + + +

    For displaying media and text next to each other. By default, the media is to the left.

    +
    + + + +
    Golden Gate Bridge
    +

    This time our block is full width, and the image is to the right.

    + + + +

    The background color is a pale blue. 

    +
    + + + +

    Test to make sure that the editor and the front match. To test the Stack on mobile setting, reduce the browser window width.

    + + + +

    The control these settings, the block uses the css classes "has-media-on-the-right" and "is-stacked-on-mobile".

    + + + +

    The separator has three styles: default, wide line, and dots.

    + + + +
    + + + +
    + + + +
    + + + +

    The spacer block has a default height of 100 pixels:

    + + + + + + + +

    And finally, the page break:

    + + + + + + + +

    This paragraph block is on page two, after the page break.

    + + + + +]]>
    + + 1734 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block category: Embeds + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-embeds/ + Fri, 02 Nov 2018 16:51:55 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1738 + + + +

    This post tests various embed blocks:

    + + + +
    +https://twitter.com/WordPress/status/1057136472321613824 +
    Twitter,  wide width
    + + + +
    +https://youtu.be/ex8fMxXJDJw +
    YouTube
    + + + +
    +https://www.facebook.com/6427302910/posts/10156380423617911/ +
    + + + +
    +https://www.instagram.com/p/BpmueLLgEn_/?utm_source=ig_share_sheet&igshid=1hcxphic7p9e2 +
    + + + +
    +https://wordpress.tv/2018/10/14/kjell-reigstad-allan-cole-how-we-made-our-first-gutenberg-powered-theme/ +
    WordPress TV, full width
    + + + +

    +]]>
    + + 1738 + + + + + + + 0 + 0 + + + 0 + + + + + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + + + + + + + + + + ]]> + + + + + + + +

    Many of the WordPress contribution teams have been working hard on the new WordPress editor, and the tools, services,...

    Publicerat av WordPress Måndag 3 september 2018
    ]]>
    +
    + + + + + + + ]]> + + + + + + + + ]]> + + + + + + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + + + + + + ]]> + + + + + + + +

    Many of the WordPress contribution teams have been working hard on the new WordPress editor, and the tools, services,...

    Publicerat av WordPress Måndag 3 september 2018
    ]]>
    +
    + + + + + + + ]]> + + + + + + + + ]]> + + + + + +
    + + Block category: Widgets + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-widgets/ + Fri, 02 Nov 2018 16:45:35 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1736 + + +

    The shortcode widget:

    + + + +[gallery columns=2 ids="770,771"] + + + +

    The Archive Widget:

    + + + + + +

    The same Archive widget but as a dropdown:

    + + + + + + + +

    The Category widget block has an additional option for showing category hierarchies:

    + + + + + +

    The Latest Comments widget can display or hide the avatars, the date, and the comment excerpt:

    + + + + + +

    Here is an example of the Comments widget with all the options disabled. The number of comments has been reduced to two.

    + + + + + +

    And here is the Latest Posts widget in the list view, with dates:

    + + + + + +

    Grid view, now sorted from A -Z.

    + + + + + +

    You can also change the number of columns used to display the latest posts. The block below only displays posts from the Block category:

    + + + + + +

    Search widget:

    + + + + + +

    Tag Cloud widget:

    + + + + + +

    RSS Feed widget:

    + + + + ]]>
    + + 1736 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Columns + https://wpthemetestdata.wordpress.com/2018/11/02/block-columns/ + Fri, 02 Nov 2018 12:10:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1743 + + +
    +
    +

    This page tests how the theme displays the columns block. The first block tests a two column block with paragraphs.

    +
    + + + +
    +

    This is the second column. It should align next to the first column. Reduce the browser window width to test the responsiveness.

    +
    +
    + + + +
    +
    +

    This is the second column block. It has 3 columns.

    +
    + + + +
    +

    Paragraph 2 is in the middle.

    +
    + + + +
    +

    Paragraph 3 is in the last column.

    +
    +
    + + + +
    +
    +

    The third column block has 4 columns. Make sure that all the text is visible and that it is not cut off.

    +
    + + + +
    +

    Now the columns are getting narrower.

    +
    + + + +
    +

    The margins between the columns should be wide enough,

    +
    + + + +
    +

    so that the content of the columns does not run into or overlap each other.

    +
    +
    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    + + + +
    +

    Column five.

    +
    +
    + + + +

    To change the number of columns, select the column block to open the settings panel. You can show up to 6 columns. If the theme has support for wide align, you can also set the alignments to wide and full width.

    + + + +

    Below is a column block with six columns, and no alignment:

    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    + + + +
    +

    Column five.

    +
    + + + +
    +

    Column six.

    +
    +
    + + + +

    Next is a 3 column block, with a wide alignment:

    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    +
    + + + +

    And here is a two column block with full width, and a longer text. Make sure that the text wraps correctly.

    + + + +
    +
    +

    This is column one. Sometimes, you may want to use columns to display a larger text, so, lets add some more words. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna. Praesent sit amet ligula id orci venenatis auctor. Phasellus porttitor, metus non tincidunt dapibus, orci pede pretium neque, sit amet adipiscing ipsum lectus et libero. Aenean bibendum. Curabitur mattis quam id urna. Vivamus dui. Donec nonummy lacinia lorem. Cras risus arcu, sodales ac, ultrices ac, mollis quis, justo. Sed a libero. Quisque risus erat, posuere at, tristique non, lacinia quis, eros.

    +
    + + + +
    +

    Column two. Cras volutpat, lacus quis semper pharetra, nisi enim dignissim est, et sollicitudin quam ipsum vel mi. Sed commodo urna ac urna. Nullam eu tortor. Curabitur sodales scelerisque magna. Donec ultricies tristique pede. Nullam libero. Nam sollicitudin felis vel metus. Nullam posuere molestie metus. Nullam molestie, nunc id suscipit rhoncus, felis mi vulputate lacus, a ultrices tortor dolor eget augue. Aenean ultricies felis ut turpis. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Suspendisse placerat tellus ac nulla. Proin adipiscing sem ac risus. Maecenas nisi. Cras semper.

    +
    +
    + + + +

    We can also add blocks inside columns:

    + + + +
    +
    +
    1. This is a numbered list,
    2. inside a 3 column block
    3. with a wide alignment.
    +
    + + + +
    +

    The middle column has a paragraph with an image block below.

    + + + +
    canola
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna.
    +
    + + + +
    +

    -This third column has a quote

    Theme Reviewer
    +
    +
    + + + +

    But wait there is more!  We also have a block called Media & Text, which is a two column block that helps you display media and text content next to each other, without having to first setup a column block:

    + + + +
    dsc20050813_115856_52
    +

    Media & Text

    + + + +

    A paragraph block sits ready to be used, below your headline.

    + + + +

    +
    +]]>
    + + 1743 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Block: Cover + https://wpthemetestdata.wordpress.com/2018/11/02/block-cover/ + Sat, 03 Nov 2018 12:25:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1745 + + +

    This is a left aligned cover block with a background image.

    + + + +

    The cover block lets you add text on top of images or videos.

    + + + +

    This blocktype has several alignment options, and you can also align or center the text inside the block.

    + + + +

    The background image can be fixed and you can change its opacity and add an overlay color.

    + + + +

    Make sure that the text wraps correctly over the image, and that text markup and alignments are working.

    + + + +

    The next image should have a pink overlay color, the text should be bold and aligned to the left:

    + + + +

    A center aligned cover image block, with a left aligned text.

    + + + +

    This is a full width cover block with a fixed background image with a 20% opacity.

    + + + +

    Make sure that all the text is readable.

    + + + +

    Our last cover image block has a wide width.

    + + + +

    This is a wide cover block with a video background.

    + + + +

    Compare the video and image blocks.
    This block is centered.

    + + + +

    The block below has no alignment, and the text is a link. Overlay colors must also work with video backgrounds.

    + + + + +]]>
    + + 1745 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Button + https://wpthemetestdata.wordpress.com/2018/11/02/block-button/ + Sat, 03 Nov 2018 13:20:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1747 + + +

    Button blocks are not semantically buttons, but links inside a styled div. 

    + + + +

    If you do not add a link, a link tag without an anchor will be used.

    + + + + + + + +

    Check to make sure that the text wraps correctly when the button has more than one line of text, and when it is extra long.

    + + + + + + + +

    Buttons have three styles: 

    + + + + + + + + + + + + + + + +

    If the theme has a custom color palette, test that background color and text color settings work correctly. 

    + + + + + + + +

    Now lets test how buttons display together with large texts.

    + + + +

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio.

    + + + + + + + +

    Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna. Praesent sit amet ligula id orci venenatis auctor. Phasellus porttitor, metus non tincidunt dapibus, orci pede pretium neque, sit amet adipiscing ipsum lectus et libero. Aenean bibendum. Curabitur mattis quam id urna.

    + + + + + + + +

    Vivamus dui. Donec nonummy lacinia lorem. Cras risus arcu, sodales ac, ultrices ac, mollis quis, justo. Sed a libero. Quisque risus erat, posuere at, tristique non, lacinia quis, eros.

    +]]>
    + + 1747 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Quote + https://wpthemetestdata.wordpress.com/2018/11/02/block-quote/ + Sat, 03 Nov 2018 03:05:49 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1749 + + +

    The quote block has two styles, regular:

    + + + +

    Gutenberg is more than an editor.

    The Gutenberg Team
    + + + +

    and large:

    + + + +

    Yes, it is a press, certainly, but a press from which shall flow in inexhaustible streams, the most abundant and most marvelous liquor that has ever flowed to relieve the thirst of men!


    Johannes Gutenberg
    + + + +

    The quote blocks themselves have no alignments but the text can be aligned, bold, italic, and linked:

    + + + +

    Right

    Theme Review
    + + + +

    In addition to the quote block, we also have the pull quote, with a regular and a solid color style.

    + + + +

    You can change the color of the border and the text with the regular style:

    + + + +

    In addition to the quote block, we also have the pull quote.

    Theme Reviewer
    + + + +

    Or change the background color and text color with the solid color style:

    + + + +

    a solid color style

    Theme Reviewer
    +]]>
    + + 1749 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Gallery + https://wpthemetestdata.wordpress.com/2018/11/02/block-gallery/ + Sat, 03 Nov 2018 04:34:24 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1752 + + +

    Gallery blocks have two settings: the number of columns, and whether or not images should be cropped. The default number of columns is three, and the maximum number of columns is eight.

    + + + +

    Below is a three column gallery at full width, with cropped images.

    + + + + + + + + + + + +

    Some more text for taking up space.

    + + + +

    A two column gallery, aligned to the left, linked to media file.

    + + + +

    In the editor, the image captions can be edited directly by clicking on the text.

    + + + +

    If the number of images cannot be divided into the number of columns you have selected, the default is to have the last image(s) automatically stretch to the width of your gallery.

    + + + + + + + +

    A four column gallery with a wide width:

    + + + + + + + +

    A five column gallery with normal images:

    + + + + + + + +

    This is the same gallery, but with cropped images.

    + + + + + + + +

    Six columns: does it work at all window sizes?

    + + + + + + + +

    Seven columns: how does this look on a narrow window?

    + + + + + + + +

    Eight columns:

    + + + + +]]>
    + + 1752 + + + + + + + 0 + 0 + + + 0 + + + + + + + + + +
    + + Block: Image + https://wpthemetestdata.wordpress.com/2018/11/03/block-image/ + Sat, 03 Nov 2018 15:20:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1755 + + +

    Welcome to image alignment! If you recognize this post, it is because these are blocks that have been converted from the classic Markup: Image Alignment post. The best way to demonstrate the ebb and flow of the various image positioning options is to nestle them snuggly among an ocean of words. Grab a paddle and let's get started. Be sure to try it in RTL mode. Left should stay left and right should stay right for both reading directions.

    + + + +

    On the topic of alignment, it should be noted that users can choose from the options of None, Left, Right, and Center. If the theme has added support for align wide, images can also be wide and full width. Be sure to test this page in RTL mode.

    + + + +

    In addition, they also get the options of the image dimensions 25%, 50%, 75%, 100% or a set width and height.

    + + + +
    Image Alignment 580x300
    + + + +

    The image above happens to be centered.

    + + + +
    Image Alignment 150x150
    + + + +

    The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned.

    + + + +

    As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished!

    + + + +

    And now for a massively large image. It also has no alignment.

    + + + +
    Image Alignment 1200x400
    + + + +

    The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.

    + + + +
    Image Alignment 300x200
    + + + +

    And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there… Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently.

    + + + +

    In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah… Just like that. It never felt so good to be right.

    + + + +

    And just when you thought we were done, we're going to do them all over again with captions!

    + + + +
    Image Alignment 580x300
    Look at 580x300 getting some caption love.
    + + + +

    The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky.

    + + + +
    Image Alignment 150x150
    Itty-bitty caption.
    + + + +

    The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned.

    + + + +

    As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished!

    + + + +

    And now for a massively large image. It also has no alignment.

    + + + +
    Image Alignment 1200x400
    Massive image comment for your eyeballs.
    + + + +

    The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.

    + + + +
    Image Alignment 300x200
    Feels good to be right all the time.
    + + + +

    And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there… Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently.

    + + + +

    In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah… Just like that. It never felt so good to be right.

    + + + +

    Imagine that we would find a use for the extra wide image! This image has the wide width alignment:

    + + + +
    Image Alignment 1200x4002
    + + + +

    Can we go bigger? This image has the full width alignment:

    + + + +
    Image Alignment 1200x4002
    + + + +

    And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! One last thing: The last item in this post's content is a thumbnail floated right. Make sure any elements after the content are clearing properly.

    + + + +
    +]]>
    + + 1755 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Ελληνικά-Greek + https://wpthemetestdata.wordpress.com/greek/ + Fri, 14 Feb 2020 10:31:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1809 + + Headings Επικεφαλίδες +

    Επικεφαλίδα 1 Header one

    +

    Επικεφαλίδα 2 Header two

    +

    Επικεφαλίδα 3 Header three

    +

    Επικεφαλίδα 2 Header four

    +
    Επικεφαλίδα 5 Header five
    +
    Επικεφαλίδα 6Header six
    +

    Παράθεση άλλου Blockquotes

    +Single line blockquote: Μια γραμμή +
    Πάντα να είναι περίεργος.
    +Πολλές γραμμέ με αναφορά Multi line blockquote with a cite reference: +
    Το HTML <blockquote> ElementHTML Block Quotation Element) καταδεικνύει ότι το κείμενο έχει μια παράθεση. Συνήθως οπτικοποιείται με εσοχή (δείτε Σημειώσεις για το πως να το αλλάξετε. Ίσως να δίνεται και URL πηγής με την χρήση του cite attribute, μπλα, μπλα <cite> .
    +multiple contributors - MDN HTML element reference - blockquote +

    Πίνακες Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Υπάλληλος EmployeeΜισθός Salary
    Τάδε κάποιος$1Γιατί τόσα χρειάζεται για να ζήσει
    Jane Doe$100KFor all the blogging she does.
    Fred Bloggs$100MPictures are worth a thousand words, right? So Jane x 1,000.
    Jane Bloggs$100BWith hair like that?! Enough said...
    +

    Λίστες Definition Lists

    +
    +
    Τίτλος λίστας Definition List Title
    +
    Υποδιαίρεση λίστας Definition list division.
    +
    +

    Λίστα με κουκίδες Unordered Lists (Nested)

    +
      +
    • Πρώτο στοιχείο List item one +
        +
      • Στοιχείο πρώτο List item one +
          +
        • Στοιχείο λίστα ένα List item one
        • +
        • Στοιχείο λίστας δύο List item two
        • +
        +
      • +
      • Στοιχείο δεύτερο -item two
      • +
      +
    • +
    • Στοιχειο δύο List item two
    • +
    +

    Αριθμημένη λίστα(Nested)

    +
      +
    1. Στοιχειο ξεκινά με 8-start at 8 +
        +
      1. Στοιχείο λίστας ενα List item one +
          +
        1. Στοιχείο λίστας ενα -reversed attribute
        2. +
        3. Στοιχείο λίστας δύο
        4. +
        +
      2. +
      3. Δεύτερο στοιχείο
      4. +
      +
    2. +
    3. Στοιχείο δύο
    4. +
    +

    Ετικέττες HTML Tags

    +Διεύθυνση Address Tag + +
    1 Απέραντη διαδρομή Infinite Loop +Απλωπολή , ΤΚ 95014 +Ελλάδα
    Αγκυρωση Anchor Tag (aka. Link) + +Πάραδειγμα συνδέσμου. + +Συντομογραφία Abbreviation Tag + +Η συντομογραφία κτλ σημαίνει "Και τα λοιπά". + +Ακρωνύμιο Acronym Tag + +Το ακρωνύμιο κυρ σημαίνει "Κύριος". + +Big Tag + +Αυτό είναι μεγάλο θέμα + +Cite Tag + +"Φάε το φαϊ σου" --Όλες οι μαμάδες + +Code Tag + +This tag styles blocks of code. +.post-title { +margin: 0 0 5px; +font-weight: bold; +font-size: 38px; +line-height: 1.2; +και μία γραμμή με πολύ πάρα πολύ υπερβολικά πάρα πολύ μεγάλο κείμενο που πρέπει να δούμε πως το χειρίζεται η γραμματοσειρά και αν ξεχειλίζει από τις γραμμές και δημιουργεί πρόβλημα; +} + +Διαγραφή Delete Tag + +Μπορείτε να διαγράφεται κείμενο, αλλά δεν συνιστάται. + +Έμφαση Emphasize Tag + +Θα πρέπει να κάνει ιταλικ italicize το κείμενο. + +Εισαγωγή Insert Tag + +Αυτό το tag υποδηλώνει εισηγμένο inserted κείμενο. + +Keyboard Tag + +Αυτό το ελάχιστο γνωστό κείμενο πληκτρολογίου keyboard Tag, συνήθως μορφοποιείται όμοια με το <κώδικα code> tag. + +Προδιαμορφωμένο Preformatted Tag +

    Ο Δρόμος που δεν διάλεξα - The Road Not Taken

    +
    Robert Frost
    +	 Δυο δρόμοι διασταυρώθηκαν σ' ένα χρυσαφένιο δάσος ,
    +	 Και προς λύπη μου και τους δυο τα πόδια μου να ταξιδέψουν δεν μπορούσαν
    +	 Κι επί μακρόν εστάθηκα , καθώς ένας ήμουν ταξιδευτής μονάχος ,
    +	 κι έστρεψα το βλέμμα μου στον πρώτο όσο να χαθεί στο βάθος
    +	 μέχρι εκεί που χάνονταν στα άγρια χόρτα που βλαστούσαν.
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	και μία μακριά, πάρα πολύ μακριά, υπερβολικά μακροσκελής δίχως νόημα πρόταση για να δούμε πως το χειρίζεται το θέμα εμφάνισης και αν αναδιπλώνεται, κρύβεται ή ξεχειλίζει;
    +
    +Quote Tag for short, inline quotes + +Προγραμματιστές, προγραμματιστές, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +Αυτή η ετικέτα είναι με διαγράμμιση strike-through κείμενο text. + +Μικρά Small Tag + +Αυτή η ετικέτα είναι μικρότερο smaller κείμενο text. + +Strong Tag + +Αυτή η ετικέτα δείχνει έντονο bold κείμενο text. + +Subscript Tag + +Getting our science styling on with H2 δύοO, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2 δύο, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +Αυτή η ετικέτα δείχνει τυλετυπος teletype κείμενο, which is usually styled like the <κώδικα code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +Αυτή η ετικέτα δείχνει υπογράμμιση underlined text. + +Variable Tag + +Αυτή η ετικέτα δείχνει παράμετροι variables.]]>
    + + 1809 + + + + + + + 0 + 0 + + + 0 + + + + + + + + +
    + + Επίπεδο 2 -Second Greek level + https://wpthemetestdata.wordpress.com//greek/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-2/ + Fri, 14 Feb 2020 10:31:47 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1811 + + + + 1811 + + + + + + + 1809 + 0 + + + 0 + + + + + + + + + + + Επίπεδο 3 + https://wpthemetestdata.wordpress.com/greek/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-2/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-3/ + Fri, 14 Feb 2020 10:32:50 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1813 + + + + 1813 + + + + + + + 1811 + 0 + + + 0 + + + + + + + + + + + <![CDATA[WP 6.1 Font size scale]]> + https://wpthemetestdata.wordpress.com/wp-6-1-font-size-scale/ + Mon, 16 Jan 2023 07:08:31 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-font-size-scale/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Small H2 Heading

    + + + +

    Medium H2 Heading

    + + + +

    Large H2 Heading

    + + + +

    Extra Large H2 Heading

    + + + +

    Small paragraph

    + + + +

    Medium paragraph

    + + + +

    Large paragraph

    + + + +

    Extra Large paragraph

    +]]> +
    + + 163 + + + + + + + + + 0 + 0 + + + 0 + + + + + + +
    + + <![CDATA[WP 6.1 spacing presets]]> + https://wpthemetestdata.wordpress.com/wp-6-1-spacing-presets/ + Mon, 16 Jan 2023 06:56:53 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-spacing-presets/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    On this page, some group blocks have border or background color set to increase visibility.

    + + + +
    +

    This group has a no background color and no additional spacing set.

    +
    + + + +
    +

    This group has a background color but no additional spacing set.

    +
    + + + +
    +

    This group has a 1px border and padding preset 1

    +
    + + + +
    +

    This group has padding preset 1

    +
    + + + +
    +

    This group has a 1px border and padding preset 2

    +
    + + + +
    +

    This group has a background color and padding preset 3

    +
    + + + +
    +

    This group has a background color and padding preset 4

    +
    + + + +
    +

    This group has a background color and padding preset 5

    +
    + + + +
    +

    This group has a background color and padding preset 6

    +
    + + + +
    +

    This group has a background color and padding preset 7

    +
    + + + +
    +

    This group has padding preset 7

    +
    + + + +
    +

    This group has a background color and margin preset 1

    +
    + + + +
    +

    This group has a background color and margin preset 2

    +
    + + + +
    +

    This group has a background color and margin preset 3

    +
    + + + +
    +

    This group has a background color and margin preset 4

    +
    + + + +
    +

    This group has a background color and margin preset 5

    +
    + + + +
    +

    This group has a background color and margin preset 6

    +
    + + + +
    +

    This group has a background color and margin preset 7

    +
    + + + +
    +

    This group has a 1px border, padding preset 4 and margin preset 4

    +
    + + + +
    +

    This group has padding preset 4 and margin preset 4

    +
    +]]>
    + + 150 + + + + + + + + + 0 + 0 + + + 0 + + + + + + +
    + + <![CDATA[WP 6.1 Theme block category]]> + https://wpthemetestdata.wordpress.com/wp-6-1-theme-block-category/ + Fri, 13 Jan 2023 18:38:05 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-theme-block-category/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Navigation block with page list:

    + + + + + + + +

    Site logo:

    + + + + + +

    Site title:

    + + + + + +

    Tagline block:

    + + + + + +

    Query loop "Title & Date" variation:

    + + + +
    + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Title & Excerpt" variation:

    + + + +
    + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Title, Date & Excerpt" variation:

    + + + +
    + + + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Image, Date & Title" variation:

    + + + +
    + + + + + + + + + + + + + + + + + +

    + +
    + + + +

    Avatar block:

    + + + + + +

    Post title block:

    + + + + + +

    Post excerpt:

    + + + + + +

    Post featured image:

    + + + + + +

    Post author:

    + + + + + +

    Post date:

    + + + + + +

    Categories:

    + + + + + +

    Tags:

    + + + + + +

    Next post & previous post:

    + + + + + + + +

    Read More:

    + + + + + +

    Comments block:

    + + + +
    + + + +
    +
    + + + +
    + + +
    + +
    + + + + +
    +
    + + + + + + + + + + + + + + +

    Post comments form block:

    +
    + + + + + +

    Login/out:

    + + + + + + + + + + + +

    Author biography block:

    + + + + + + + + + +

    Term description, archive title, search results title can not be shown on single posts.

    +]]>
    + + 51 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + + + + 2 + + + https://wpthemetestdata.wordpress.com/ + + + + + + + 0 + 0 + +
    + + <![CDATA[WP 6.1 Widgets block category]]> + https://wpthemetestdata.wordpress.com/wp-6-1-widgets-block-category/ + Fri, 13 Jan 2023 18:22:21 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-widgets-block-category/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Archives block:

    + + + + + + + +

    Categories list:

    + + + + + +

    Custom HTML:

    + + + + test + + + +

    Latest comments:

    + + + + + +

    Latest posts:

    + + + + + +

    Page list block:

    + + + + + +

    RSS block:

    + + + + + + + + + + + + + + + +

    Shortcode block:

    + + + + + +

    Social links:

    + + + + + + + + + + + + + + + +

    Tag cloud:

    + + + + + +

    +]]>
    + + 34 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Design category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-design-category-blocks/ + Fri, 13 Jan 2023 18:03:23 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-design-category-blocks/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + + + + + +
    +
    +

    One single column inside a columns block.

    +
    +
    + + + +
    +
    +

    Column one. The background color is on the single column.

    +
    + + + +
    +

    Column two

    +
    +
    + + + +
    +
    +

    Column one. The background color is on the parent columns block.

    +
    + + + +
    +

    Column two

    +
    + + + +
    +

    Column three

    +
    +
    + + + +
    +

    Group with paragraph inside. Below are the group block variations:

    +
    + + + +
    +

    Row

    + + + +

    Row

    +
    + + + +
    +

    Stack

    + + + +

    Stack

    +
    + + + +

    More block:

    + + + + + + + +

    Page break:

    + + + + + + + +

    Separators:

    + + + +

    Default style, no alignment:

    + + + +
    + + + +

    Default style, wide alignment:

    + + + +
    + + + +

    Default style, full width:

    + + + +
    + + + +

    Default style, align center:

    + + + +
    + + + +

    Wide style, no alignment:

    + + + +
    + + + +

    Wide style, wide alignment:

    + + + +
    + + + +

    Wide style, full width:

    + + + +
    + + + +

    Wide style, align center:

    + + + +
    + + + +

    Dotted style, no alignment:

    + + + +
    + + + +

    Dotted style, wide alignment:

    + + + +
    + + + +

    Dotted style, full width:

    + + + +
    + + + +

    Dotted style, align center:

    + + + +
    + + + +

    Spacer:

    + + + + +]]>
    + + 24 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Media category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-media-category-blocks/ + Fri, 13 Jan 2023 18:02:28 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-media-category-blocks/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Image block:

    + + + +
    dsc20050727_091048_222
    + + + +

    Gallery:

    + + + + + + + +

    Audio:

    + + + +
    + + + +

    Cover:

    + + + +
    Wind Farm
    +

    Write title...

    +
    + + + +
    +

    Fixed background

    +
    + + + +
    +

    Repeated background

    +
    + + + +
    +

    Fixed and Repeated background

    +
    + + + +
    dsc20050727_091048_222
    +

    Duotone

    +
    + + + +
    Rain Ripples
    +

    Top left

    +
    + + + +
    Rain Ripples
    +

    Top center

    +
    + + + +
    Rain Ripples
    +

    Top right

    +
    + + + +
    Rain Ripples
    +

    Center left

    +
    + + + +
    Rain Ripples
    +

    Center right

    +
    + + + +
    Rain Ripples
    +

    Bottom left

    +
    + + + +
    Rain Ripples
    +

    Bottom center

    +
    + + + +
    Rain Ripples
    +

    Bottom right

    +
    + + + + + + + +
    Boardwalk
    +

    This is the Media & Text block with an image on the left.

    +
    + + + +
    Image Alignment 1200x4002
    +

    This is the Media & Text block with a cropped image on the left

    +
    + + + +
    +

    This is the Media & Text block with a video the right.

    +
    + + + +
    +]]>
    + + 21 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Text category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-text-category-blocks/ + Fri, 13 Jan 2023 17:46:19 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-text-category-blocks + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Paragraph

    + + + +

    H1 Heading

    + + + +

    H2 Heading

    + + + +

    H3 Heading

    + + + +

    H4 Heading

    + + + +
    H5 Heading
    + + + +
    H6 Heading
    + + + +
      +
    • List
    • + + + +
    • List
    • +
    + + + +
      +
    1. List
    2. + + + +
    3. List
    4. +
    + + + +
      +
    1. List +
        +
      • List
      • +
      +
    2. +
    + + + +
    +

    Quote block

    +citation
    + + +

    classic block

    + + +
    code block
    + + + +
    Preformatted block
    + + + +

    Pull quote

    Citation
    + + + +
    table celltable cell two
    table cell threetable cell four
    Table caption
    + + + +
    header label oneheader label two
    table celltable cell two
    table cell threetable cell four
    footer label onefooter label two
    Table caption
    + + + +
    Verse block
    +]]>
    + + 8 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + +
    + + Keyboard navigation + https://wpthemetestdata.wordpress.com/2018/10/20/keyboard-navigation/ + Sun, 21 Oct 2018 03:03:48 +0000 + + https://wpthemetestdata.wordpress.com/?p=1724 + + +

    There are many different ways to use the web besides a mouse and a pair of eyes. Users navigate for example with a keyboard only or with their voice.

    + + + +

    All the functionality, including menus, links and forms should work using a keyboard only. This is essential for all assistive technology to work properly. The only way to test this, at the moment, is manually. The best time to test this is during development.

    + + + +

    How to keyboard test:

    + + + +

    Tab through your pages, links and forms to do the following tests:

    + + + +
    • Confirm that all links can be reached and activated via keyboard, including any in dropdown submenus.
    • Confirm that all links get a visible focus indicator (e.g., a border highlight).
    • Confirm that all visually hidden links (e.g. skip links) become visible when in focus.
    • Confirm that all form input fields and buttons can be accessed and used via keyboard.
    • Confirm that all interactions, buttons, and other controls can be triggered via keyboard — any action you can complete with a mouse must also be performable via keyboard.
    • Confirm that focus doesn’t move in unexpected ways around the page.
    • Confirm that using shift+tab to move backwards works as well.
    + + + +

    Resources

    + + + + +]]>
    + + 1724 + + + + + + + 0 + 0 + + + + 0 +
    + + About The Tests + https://wpthemetestdata.wordpress.com/about/ + Mon, 26 Jul 2010 02:40:01 +0000 + themedemos + https://wpthemetestdata.wordpress.com/about/ + + WordPress Theme Development Resources + +
      +
    1. See the WordPress Theme Developer Handbook for examples of best practices.
    2. +
    3. See the WordPress Code Reference for more information about WordPress' functions, classes, methods, and hooks.
    4. +
    5. See Theme Unit Test for a robust test suite for your Theme and get the latest version of the test data you see here.
    6. +
    7. See Releasing Your Theme for a guide to submitting your Theme to the Theme Directory.
    8. +
    ]]>
    + + 2 + 2010-07-25 19:40:01 + 2010-07-26 02:40:01 + closed + closed + about + publish + 0 + 1 + page + + 0 +
    + + Lorem Ipsum + https://wpthemetestdata.wordpress.com/lorem-ipsum/ + Tue, 04 Sep 2007 16:52:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/lorem-ipsum/ + + + + 146 + 2007-09-04 09:52:50 + 2007-09-04 16:52:50 + closed + closed + lorem-ipsum + publish + 0 + 7 + page + + 0 + + + Page with comments + https://wpthemetestdata.wordpress.com/about/page-with-comments/ + Tue, 04 Sep 2007 17:47:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/page-with-comments/ + + + + 155 + 2007-09-04 10:47:47 + 2007-09-04 17:47:47 + open + closed + page-with-comments + publish + 2 + 3 + page + + 0 + + 167 + + anon@example.com + + + 2007-09-04 10:49:28 + 2007-09-04 00:49:28 + + 1 + + 0 + 0 + + + 168 + + tellyworth+test2@example.com + + + 2007-09-04 10:49:03 + 2007-09-04 00:49:03 + + 1 + + 0 + 0 + + + 169 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2007-09-04 10:48:51 + 2007-09-04 17:48:51 + + 1 + + 0 + 0 + + + 1017 + + themereviewteam@gmail.com + + + 2014-12-10 01:56:24 + 2014-12-10 08:56:24 + + 0 + + 168 + 0 + + + + Page with comments disabled + https://wpthemetestdata.wordpress.com/about/page-with-comments-disabled/ + Tue, 04 Sep 2007 17:48:10 +0000 + themedemos + https://wpthemetestdata.wordpress.com/page-with-comments-disabled/ + + + + 156 + 2007-09-04 10:48:10 + 2007-09-04 17:48:10 + closed + closed + page-with-comments-disabled + publish + 2 + 4 + page + + 0 + + + Level 3 + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3/ + Tue, 11 Dec 2007 06:23:16 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-3/ + + + + 172 + 2007-12-11 16:23:16 + 2007-12-11 06:23:16 + closed + closed + level-3 + publish + 173 + 0 + page + + 0 + + + Level 2 + https://wpthemetestdata.wordpress.com/level-1/level-2/ + Tue, 11 Dec 2007 06:23:33 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-2/ + + + + 173 + 2007-12-11 16:23:33 + 2007-12-11 06:23:33 + closed + closed + level-2 + publish + 174 + 0 + page + + 0 + + + Level 1 + https://wpthemetestdata.wordpress.com/level-1/ + Tue, 11 Dec 2007 23:25:40 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-1/ + + + + 174 + 2007-12-11 16:25:40 + 2007-12-11 23:25:40 + closed + closed + level-1 + publish + 0 + 5 + page + + 0 + + + Clearing Floats + https://wpthemetestdata.wordpress.com/about/clearing-floats/ + Sun, 01 Aug 2010 16:42:26 +0000 + themedemos + https://wpthemetestdata.wordpress.com/ + + This is the second page]]> + + 501 + 2010-08-01 09:42:26 + 2010-08-01 16:42:26 + closed + closed + clearing-floats + publish + 2 + 2 + page + + 0 + + + canola2 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/canola2/ + Mon, 16 Jun 2008 13:17:54 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/canola2.jpg + + + + 611 + 2008-06-16 06:17:54 + 2008-06-16 13:17:54 + open + closed + canola2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/canola2.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + dsc20050727_091048_222 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050727_091048_222/ + Mon, 16 Jun 2008 13:20:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050727_091048_222.jpg + + + + 616 + 2008-06-16 06:20:37 + 2008-06-16 13:20:37 + open + closed + dsc20050727_091048_222 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050727_091048_222.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + dsc20050813_115856_52 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050813_115856_52/ + Mon, 16 Jun 2008 13:20:57 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050813_115856_52.jpg + + + + 617 + 2008-06-16 06:20:57 + 2008-06-16 13:20:57 + open + closed + dsc20050813_115856_52 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050813_115856_52.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Front Page + https://wpthemetestdata.wordpress.com/front-page/ + Sat, 21 May 2011 01:49:43 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=701 + + + + 701 + 2011-05-20 18:49:43 + 2011-05-21 01:49:43 + open + closed + front-page + publish + 0 + 0 + page + + 0 + + + a Blog page + https://wpthemetestdata.wordpress.com/blog/ + Sat, 21 May 2011 01:51:43 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=703 + + + + 703 + 2011-05-20 18:51:43 + 2011-05-21 01:51:43 + open + closed + blog + publish + 0 + 0 + page + + 0 + + 1016 + + example@example.com + + + 2014-11-29 21:03:05 + 2014-11-30 04:03:05 + + 0 + + 0 + 0 + + + + Bell on Wharf + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/100_5478/ + Mon, 16 Jun 2008 21:34:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/100_5478.jpg + + + + 754 + 2008-06-16 14:34:50 + 2008-06-16 21:34:50 + open + closed + 100_5478 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/100_5478.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Golden Gate Bridge + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/100_5540/ + Mon, 16 Jun 2008 21:35:55 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/100_5540.jpg + + + + 755 + 2008-06-16 14:35:55 + 2008-06-16 21:35:55 + open + closed + 100_5540 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/100_5540.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sunburst Over River + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/cep00032/ + Mon, 16 Jun 2008 21:41:24 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/cep00032.jpg + + + + 756 + 2008-06-16 14:41:24 + 2008-06-16 21:41:24 + open + closed + cep00032 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/cep00032.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Boardwalk + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dcp_2082/ + Mon, 16 Jun 2008 21:41:27 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dcp_2082.jpg + + + + 757 + 2008-06-16 14:41:27 + 2008-06-16 21:41:27 + open + closed + dcp_2082 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dcp_2082.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Yachtsody in Blue + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc03149/ + Mon, 16 Jun 2008 21:41:33 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc03149.jpg + + + + 758 + 2008-06-16 14:41:33 + 2008-06-16 21:41:33 + open + closed + dsc03149 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc03149.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Rain Ripples + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc04563/ + Mon, 16 Jun 2008 21:41:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc04563.jpg + + + + 759 + 2008-06-16 14:41:37 + 2008-06-16 21:41:37 + open + closed + dsc04563 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc04563.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sydney Harbor Bridge + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc09114/ + Mon, 16 Jun 2008 21:41:41 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc09114.jpg + + + + 760 + 2008-06-16 14:41:41 + 2008-06-16 21:41:41 + open + closed + dsc09114 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc09114.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Wind Farm + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050102_192118_51/ + Mon, 16 Jun 2008 21:41:42 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050102_192118_51.jpg + + + + 761 + 2008-06-16 14:41:42 + 2008-06-16 21:41:42 + open + closed + dsc20050102_192118_51 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050102_192118_51.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Antique Farm Machinery + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20051220_160808_102/ + Mon, 16 Jun 2008 21:41:45 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_160808_102.jpg + + + + 762 + 2008-06-16 14:41:45 + 2008-06-16 21:41:45 + open + closed + dsc20051220_160808_102 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_160808_102.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Rusty Rail + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20051220_173257_119/ + Mon, 16 Jun 20081 21:47:17 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_173257_119.jpg + + + + 764 + 2008-06-16 14:47:17 + 2008-06-16 21:47:17 + open + closed + dsc20051220_173257_119 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_173257_119.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sea and Rocks + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dscn3316/ + Mon, 16 Jun 2008 21:47:20 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dscn3316.jpg + + + + 765 + 2008-06-16 14:47:20 + 2008-06-16 21:47:20 + open + closed + dscn3316 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dscn3316.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Big Sur + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/michelle_049/ + Mon, 16 Jun 2008 21:47:23 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/michelle_049.jpg + + + + 766 + 2008-06-16 14:47:23 + 2008-06-16 21:47:23 + open + closed + michelle_049 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/michelle_049.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Windmill + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dcf-1-0/ + Mon, 16 Jun 2008 21:47:26 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/windmill.jpg + + + + 767 + 2008-06-16 14:47:26 + 2008-06-16 21:47:26 + open + closed + dcf-1-0 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/windmill.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Huatulco Coastline + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/alas-i-have-found-my-shangri-la/ + Mon, 16 Jun 2008 21:49:48 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0513-1.jpg + + + + 768 + 2008-06-16 14:49:48 + 2008-06-16 21:49:48 + open + closed + alas-i-have-found-my-shangri-la + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0513-1.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Brazil Beach + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_0747/ + Mon, 16 Jun 2008 21:50:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0747.jpg + + + + 769 + 2008-06-16 14:50:37 + 2008-06-16 21:50:37 + open + closed + img_0747 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0747.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Huatulco Coastline + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_0767/ + Mon, 16 Jun 2008 21:51:19 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0767.jpg + + + + 770 + 2008-06-16 14:51:19 + 2008-06-16 21:51:19 + open + closed + img_0767 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0767.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Boat Barco Texture + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_8399/ + Mon, 16 Jun 2008 21:51:57 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_8399.jpg + + + + 771 + 2008-06-16 14:51:57 + 2008-06-16 21:51:57 + open + closed + img_8399 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_8399.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Resinous + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20040724_152504_532-2/ + Mon, 04 Jun 2012 18:36:56 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg + + + + 807 + 2012-06-04 11:36:56 + 2012-06-04 18:36:56 + open + closed + dsc20040724_152504_532-2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg + + _attachment_original_parent_id + + + + + St. Louis Blues + https://wpthemetestdata.wordpress.com/2010/07/02/post-format-audio/originaldixielandjazzbandwithalbernard-stlouisblues/ + Mon, 16 Jun 2008 16:49:29 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3 + + + + 821 + 2008-06-16 09:49:29 + 2008-06-16 16:49:29 + open + closed + originaldixielandjazzbandwithalbernard-stlouisblues + inherit + 587 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3 + + + OLYMPUS DIGITAL CAMERA + https://wpthemetestdata.wordpress.com/about/clearing-floats/olympus-digital-camera/ + Thu, 05 Aug 2010 18:07:34 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2010/08/manhattansummer.jpg + + + + 827 + 2010-08-05 11:07:34 + 2010-08-05 18:07:34 + open + closed + olympus-digital-camera + inherit + 501 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2010/08/manhattansummer.jpg + + + Image Alignment 580x300 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-580x300/ + Fri, 15 Mar 2013 00:44:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg + + + + 967 + 2013-03-14 19:44:50 + 2013-03-15 00:44:50 + open + open + image-alignment-580x300 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Image Alignment 150x150 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-150x150/ + Fri, 15 Mar 2013 00:44:49 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg + + + + 968 + 2013-03-14 19:44:49 + 2013-03-15 00:44:49 + open + open + image-alignment-150x150 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Horizontal Featured Image + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-horizontal/featured-image-horizontal-2/ + Fri, 15 Mar 2013 20:40:38 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-horizontal.jpg + + + + 1022 + 2013-03-15 15:40:38 + 2013-03-15 20:40:38 + open + open + featured-image-horizontal-2 + inherit + 1011 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-horizontal.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + I Am Worth Loving Wallpaper + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/soworthloving-wallpaper/ + Thu, 14 Mar 2013 14:58:24 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/soworthloving-wallpaper.jpg + + + + 1023 + 2013-03-14 09:58:24 + 2013-03-14 14:58:24 + open + open + soworthloving-wallpaper + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/soworthloving-wallpaper.jpg + + _wp_attachment_image_alt + + + + + Image Alignment 300x200 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-300x200/ + Fri, 15 Mar 2013 00:44:49 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg + + + + 1025 + 2013-03-14 19:44:49 + 2013-03-15 00:44:49 + open + open + image-alignment-300x200 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Vertical Featured Image + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-vertical/featured-image-vertical-2/ + Fri, 15 Mar 2013 20:41:09 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-vertical.jpg + + + + 1027 + 2013-03-15 15:41:09 + 2013-03-15 20:41:09 + open + open + featured-image-vertical-2 + inherit + 1016 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-vertical.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Image Alignment 1200x4002 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-1200x4002/ + Fri, 15 Mar 2013 00:44:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg + + + + 1029 + 2013-03-14 19:44:50 + 2013-03-15 00:44:50 + open + open + image-alignment-1200x4002 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Unicorn Wallpaper + https://wpthemetestdata.wordpress.com/2010/08/08/post-format-image/unicorn-wallpaper/ + Fri, 14 Dec 2012 03:10:39 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2012/12/unicorn-wallpaper.jpg + + + + 1045 + 2012-12-13 22:10:39 + 2012-12-14 03:10:39 + open + open + unicorn-wallpaper + inherit + 1158 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2012/12/unicorn-wallpaper.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Pages + https://wpthemetestdata.wordpress.com/2013/04/09/pages/ + Tue, 09 Apr 2013 13:37:45 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/pages + + + + 1100 + 2013-04-09 06:37:45 + 2013-04-09 13:37:45 + open + closed + pages + publish + 0 + 2 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Categories + https://wpthemetestdata.wordpress.com/2013/04/09/categories/ + Tue, 09 Apr 2013 13:37:45 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/categories + + + + 1101 + 2013-04-09 06:37:45 + 2013-04-09 13:37:45 + open + closed + categories + publish + 0 + 10 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1112/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1112</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test markup tags and styles.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1112</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1112</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>21</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[4675]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1115/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1115</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test post formats.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1115</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1115</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>24</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[44090582]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1118/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1118</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test unpublished posts.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1118</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1118</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>28</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[54090]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>Depth + https://wpthemetestdata.wordpress.com/2013/04/09/depth/ + Tue, 09 Apr 2013 13:37:46 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/depth + + + + 1119 + 2013-04-09 06:37:46 + 2013-04-09 13:37:46 + open + closed + depth + publish + 0 + 29 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 01 + https://wpthemetestdata.wordpress.com/2013/04/09/level-01/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-01 + + + + 1120 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-01 + publish + 0 + 30 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 02 + https://wpthemetestdata.wordpress.com/2013/04/09/level-02/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-02 + + + + 1121 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-02 + publish + 0 + 31 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 03 + https://wpthemetestdata.wordpress.com/2013/04/09/level-03/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-03 + + + + 1122 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-03 + publish + 0 + 32 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 04 + https://wpthemetestdata.wordpress.com/2013/04/09/level-04/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-04 + + + + 1123 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-04 + publish + 0 + 33 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 05 + https://wpthemetestdata.wordpress.com/2013/04/09/level-05/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-05 + + + + 1124 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-05 + publish + 0 + 34 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 06 + https://wpthemetestdata.wordpress.com/2013/04/09/level-06/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-06 + + + + 1125 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-06 + publish + 0 + 35 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 07 + https://wpthemetestdata.wordpress.com/2013/04/09/level-07/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-07 + + + + 1126 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-07 + publish + 0 + 36 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 08 + https://wpthemetestdata.wordpress.com/2013/04/09/level-08/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-08 + + + + 1127 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-08 + publish + 0 + 37 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 09 + https://wpthemetestdata.wordpress.com/2013/04/09/level-09/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-09 + + + + 1128 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-09 + publish + 0 + 38 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 10 + https://wpthemetestdata.wordpress.com/2013/04/09/level-10/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-10 + + + + 1129 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-10 + publish + 0 + 39 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Advanced + https://wpthemetestdata.wordpress.com/2013/04/09/advanced/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/advanced + + + + 1130 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + advanced + publish + 0 + 40 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu Description + https://wpthemetestdata.wordpress.com/2013/04/09/menu-description/ + Tue, 09 Apr 2013 13:37:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-description + + + + 1142 + 2013-04-09 06:37:50 + 2013-04-09 13:37:50 + open + closed + menu-description + publish + 0 + 44 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu Title Attribute + https://wpthemetestdata.wordpress.com/2013/04/09/menu-title-attribute/ + Tue, 09 Apr 2013 13:37:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-title-attribute + + + + 1143 + 2013-04-09 06:37:50 + 2013-04-09 13:37:50 + open + closed + menu-title-attribute + publish + 0 + 41 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu CSS Class + https://wpthemetestdata.wordpress.com/2013/04/09/menu-css-class/ + Tue, 09 Apr 2013 13:37:51 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-css-class + + + + 1144 + 2013-04-09 06:37:51 + 2013-04-09 13:37:51 + open + closed + menu-css-class + publish + 0 + 42 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + New Window / Tab + https://wpthemetestdata.wordpress.com/2013/04/09/new-window-tab/ + Tue, 09 Apr 2013 13:37:51 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/new-window-tab + + + + 1145 + 2013-04-09 06:37:51 + 2013-04-09 13:37:51 + open + closed + new-window-tab + publish + 0 + 43 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1263/</link> + <pubDate>Tue, 09 Apr 2013 13:38:00 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1263</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1263</wp:post_id> + <wp:post_date>2013-04-09 06:38:00</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:38:00</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1263</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1100]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1264/</link> + <pubDate>Tue, 09 Apr 2013 13:38:01 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1264</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1264</wp:post_id> + <wp:post_date>2013-04-09 06:38:01</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:38:01</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1264</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1100]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>twitter.com + https://wpthemetestdata.wordpress.com/2018/10/20/twitter-com/ + Sun, 21 Oct 2018 02:57:33 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/twitter-com/ + + + + 1719 + + + + + + + 0 + 1 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + facebook.com + https://wpthemetestdata.wordpress.com/2018/10/20/facebook-com/ + Sun, 21 Oct 2018 02:57:35 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/facebook-com/ + + + + 1720 + + + + + + + 0 + 2 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + github.com + https://wpthemetestdata.wordpress.com/2018/10/20/github-com/ + Sun, 21 Oct 2018 02:57:37 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/github-com + + + + 1721 + + + + + + + 0 + 3 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + instagram.com + https://wpthemetestdata.wordpress.com/2018/10/20/instagram-com + Sun, 21 Oct 2018 02:57:41 +000 + themereviewteam> + https://wpthemetestdata.wordpress.com/2018/10/20/instagram-com + + + + 1723 + + + + + + + 0 + 5 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + linkedin.com + https://wpthemetestdata.wordpress.com/2018/10/20/linkedin-com/ + Sun, 21 Oct 2018 02:57:39 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/linkedin-com/ + + + + 1722 + + + + + + + 0 + 4 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + triforce-wallpaper + https://wpthemetestdata.wordpress.com/2010/08/07/post-format-image-caption/triforce-wallpaper/ + Tue, 17 Aug 2010 20:17:31 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2010/08/triforce-wallpaper.jpg + + + + 1628 + 2010-08-17 13:17:31 + 2010-08-17 20:17:31 + open + closed + triforce-wallpaper + inherit + 1163 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2010/08/triforce-wallpaper.jpg + + + + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1636/</link> + <pubDate>Tue, 07 May 2013 19:54:30 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1636</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1636</wp:post_id> + <wp:post_date>2013-05-07 12:54:30</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:30</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1636</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1637/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1637</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1637</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1637</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1638/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1638</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1638</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1638</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1639/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1639</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1639</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1639</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1640/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1640</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1640</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1640</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1641/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1641</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1641</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1641</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1643/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1643</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1643</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1643</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1644/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1644</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1644</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1644</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[701]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1645/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1645</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1645</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1645</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1646/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1646</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1646</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1646</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1647/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1647</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1647</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1647</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1648/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1648</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1648</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1648</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1649/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1649</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1649</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1649</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1650/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1650</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1650</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1650</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1651/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1651</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1651</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1651</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>10</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[174]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1652/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1652</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1652</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1652</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>11</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[173]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1653/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1653</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1653</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1653</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>12</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[172]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1654/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1654</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1654</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1654</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>13</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[746]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1655/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1655</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1655</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1655</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>14</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[748]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1656/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1656</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1656</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1656</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>15</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[742]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1657/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1657</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1657</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1657</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>16</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[744]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1658/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1658</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1658</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1658</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>17</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1659/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1659</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1659</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1659</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>18</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[733]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1660/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1660</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1660</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1660</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>19</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[735]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1643/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1643</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1643</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1643</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1644/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1644</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1644</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1644</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[701]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1645/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1645</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1645</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1645</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1646/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1646</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1646</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1646</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1647/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1647</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1647</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1647</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1648/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1648</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1648</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1648</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1649/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1649</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1649</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1649</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1650/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1650</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1650</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1650</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1651/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1651</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1651</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1651</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>10</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[174]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1652/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1652</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1652</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1652</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>11</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[173]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1653/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1653</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1653</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1653</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>12</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[172]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1654/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1654</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1654</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1654</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>13</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[746]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1655/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1655</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1655</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1655</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>14</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[748]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1656/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1656</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1656</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1656</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>15</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[742]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1657/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1657</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1657</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1657</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>16</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[744]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1658/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1658</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1658</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1658</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>17</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1659/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1659</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1659</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1659</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>18</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[733]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1660/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1660</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1660</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1660</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>19</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[735]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>dsc20040724_152504_532 + https://wpthemetestdata.wordpress.com/?attachment_id=1686 + Wed, 18 Sep 2013 21:37:05 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20040724_152504_532.jpg + + + + 1686 + 2013-09-18 14:37:05 + 2013-09-18 21:37:05 + open + closed + dsc20040724_152504_532 + inherit + 0 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20040724_152504_532.jpg + + + dsc20050604_133440_34211 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050604_133440_34211/ + Wed, 18 Sep 2013 21:37:07 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20050604_133440_34211.jpg + + + + 1687 + 2013-09-18 14:37:07 + 2013-09-18 21:37:07 + open + closed + dsc20050604_133440_34211 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20050604_133440_34211.jpg + + + 2014-slider-mobile-behavior + https://wpthemetestdata.wordpress.com/?attachment_id=1690 + Wed, 04 Dec 2013 18:08:29 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/12/2014-slider-mobile-behavior.mov + + + + 1690 + 2013-12-04 11:08:29 + 2013-12-04 18:08:29 + open + closed + 2014-slider-mobile-behavior + inherit + 0 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/12/2014-slider-mobile-behavior.mov + + + dsc20050315_145007_132 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050315_145007_132-2/ + Sun, 05 Jan 2014 18:45:21 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2014/01/dsc20050315_145007_132.jpg + + + + 1691 + 2014-01-05 11:45:21 + 2014-01-05 18:45:21 + open + closed + dsc20050315_145007_132-2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2014/01/dsc20050315_145007_132.jpg + + + spectacles + https://wpthemetestdata.wordpress.com/about/clearing-floats/spectacles-2/ + Sun, 05 Jan 2014 18:45:36 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2014/01/spectacles.gif + + + + 1692 + 2014-01-05 11:45:36 + 2014-01-05 18:45:36 + open + closed + spectacles-2 + inherit + 501 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2014/01/spectacles.gif + + + Post Format: Standard + https://wpthemetestdata.wordpress.com/2010/10/05/post-format-standard/ + Tue, 05 Oct 2010 07:27:25 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=358 + + + +Mrs. Darling first heard of Peter when she was tidying up her children's minds. It is the nightly custom of every good mother after her children are asleep to rummage in their minds and put things straight for next morning, repacking into their proper places the many articles that have wandered during the day. + +If you could keep awake (but of course you can't) you would see your own mother doing this, and you would find it very interesting to watch her. It is quite like tidying up drawers. You would see her on her knees, I expect, lingering humorously over some of your contents, wondering where on earth you had picked this thing up, making discoveries sweet and not so sweet, pressing this to her cheek as if it were as nice as a kitten, and hurriedly stowing that out of sight. When you wake in the morning, the naughtiness and evil passions with which you went to bed have been folded up small and placed at the bottom of your mind and on the top, beautifully aired, are spread out your prettier thoughts, ready for you to put on. + +I don't know whether you have ever seen a map of a person's mind. Doctors sometimes draw maps of other parts of you, and your own map can become intensely interesting, but catch them trying to draw a map of a child's mind, which is not only confused, but keeps going round all the time. There are zigzag lines on it, just like your temperature on a card, and these are probably roads in the island, for the Neverland is always more or less an island, with astonishing splashes of colour here and there, and coral reefs and rakish-looking craft in the offing, and savages and lonely lairs, and gnomes who are mostly tailors, and caves through which a river runs, and princes with six elder brothers, and a hut fast going to decay, and one very small old lady with a hooked nose. It would be an easy map if that were all, but there is also first day at school, religion, fathers, the round pond, needle-work, murders, hangings, verbs that take the dative, chocolate pudding day, getting into braces, say ninety-nine, three-pence for pulling out your tooth yourself, and so on, and either these are part of the island or they are another map showing through, and it is all rather confusing, especially as nothing will stand still. + +Of course the Neverlands vary a good deal. John's, for instance, had a lagoon with flamingoes flying over it at which John was shooting, while Michael, who was very small, had a flamingo with lagoons flying over it. John lived in a boat turned upside down on the sands, Michael in a wigwam, Wendy in a house of leaves deftly sewn together. John had no friends, Michael had friends at night, Wendy had a pet wolf forsaken by its parents, but on the whole the Neverlands have a family resemblance, and if they stood still in a row you could say of them that they have each other's nose, and so forth. On these magic shores children at play are for ever beaching their coracles [simple boat]. We too have been there; we can still hear the sound of the surf, though we shall land no more. + +Of all delectable islands the Neverland is the snuggest and most compact, not large and sprawly, you know, with tedious distances between one adventure and another, but nicely crammed. When you play at it by day with the chairs and table-cloth, it is not in the least alarming, but in the two minutes before you go to sleep it becomes very real. That is why there are night-lights. + +Occasionally in her travels through her children's minds Mrs. Darling found things she could not understand, and of these quite the most perplexing was the word Peter. She knew of no Peter, and yet he was here and there in John and Michael's minds, while Wendy's began to be scrawled all over with him. The name stood out in bolder letters than any of the other words, and as Mrs. Darling gazed she felt that it had an oddly cocky appearance.]]> + + 358 + 2010-10-05 00:27:25 + 2010-10-05 07:27:25 + closed + closed + post-format-standard + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Gallery + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/ + Fri, 10 Sep 2010 14:24:14 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=555 + + + +You can use this page to test the Theme's handling of the gallery shortcode, including the columns parameter, from 1 to 9 columns. Themes are only required to support the default setting (3 columns), so this page is entirely optional. +

    One Column

    +[gallery columns="1"] +

    Two Columns

    +[gallery columns="2"] +

    Three Columns

    +[gallery columns="3"] +

    Four Columns

    +[gallery columns="4"] +

    Five Columns

    +[gallery columns="5"] +

    Six Columns

    +[gallery columns="6"] +

    Seven Columns

    +[gallery columns="7"] +

    Eight Columns

    +[gallery columns="8"] +

    Nine Columns

    +[gallery columns="9"]]]>
    + + 555 + 2010-09-10 07:24:14 + 2010-09-10 14:24:14 + closed + closed + post-format-gallery + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Post Format: Aside + https://wpthemetestdata.wordpress.com/2010/05/09/post-format-aside/ + Sun, 09 May 2010 14:51:54 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=559 + + + + 559 + 2010-05-09 07:51:54 + 2010-05-09 14:51:54 + closed + closed + post-format-aside + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Chat + https://wpthemetestdata.wordpress.com/2010/01/08/post-format-chat/ + Fri, 08 Jan 2010 14:59:31 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=562 + + + + 562 + 2010-01-08 07:59:31 + 2010-01-08 14:59:31 + closed + closed + post-format-chat + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Link + https://wpthemetestdata.wordpress.com/2010/03/07/post-format-link/ + Sun, 07 Mar 2010 15:06:53 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=565 + + The WordPress Theme Review Team Website]]> + + 565 + 2010-03-07 08:06:53 + 2010-03-07 15:06:53 + closed + closed + post-format-link + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Image (Linked) + https://wpthemetestdata.wordpress.com/2010/08/06/post-format-image-linked/ + Fri, 06 Aug 2010 15:09:39 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=568 + + chunk of resinous blackboy husk[/caption] +]]> + + 568 + 2010-08-06 08:09:39 + 2010-08-06 15:09:39 + closed + closed + post-format-image-linked + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Quote + https://wpthemetestdata.wordpress.com/2010/02/05/post-format-quote/ + Fri, 05 Feb 2010 15:13:15 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=575 + + Only one thing is impossible for God: To find any sense in any copyright law on the planet. +Mark Twain]]> + + 575 + 2010-02-05 08:13:15 + 2010-02-05 15:13:15 + closed + closed + post-format-quote + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Status + https://wpthemetestdata.wordpress.com/2010/04/04/post-format-status/ + Sun, 04 Apr 2010 15:21:24 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=579 + + + + 579 + 2010-04-04 08:21:24 + 2010-04-04 15:21:24 + closed + closed + post-format-status + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Video (WordPress.tv) + https://wpthemetestdata.wordpress.com/2010/06/03/post-format-video-wordpresstv/ + Thu, 03 Jun 2010 15:25:58 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=582 + + instructions in the Codex.]]> + + 582 + 2010-06-03 08:25:58 + 2010-06-03 15:25:58 + closed + closed + post-format-video-wordpresstv + publish + 0 + 0 + post + + 0 + + + + + + + + + _oembed_4321638fc1a6fee26443f7fe8a70a871 + ]]> + + + _oembed_29351fff85c1be1d1e9a965a0332a861 + ]]> + + + _oembed_9fcc86d7d9398ff736577f922307f64d + ]]> + + + _oembed_366237792d32461d0052efb2edec37f5 + ]]> + + + _oembed_37fdfe862c13c46a93be2921279bf675 + ]]> + + + + Post Format: Audio + https://wpthemetestdata.wordpress.com/2010/07/02/post-format-audio/ + Fri, 02 Jul 2010 15:36:44 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=587 + + St. Louis Blues + +Audio shortcode: + +[audio https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3]]]> + + 587 + 2010-07-02 08:36:44 + 2010-07-02 15:36:44 + closed + closed + post-format-audio + publish + 0 + 0 + post + + 0 + + + + + + + + enclosure + + + + + Page A + https://wpthemetestdata.wordpress.com/page-a/ + Fri, 24 Jun 2011 01:38:52 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=733 + + + + 733 + 2011-06-23 18:38:52 + 2011-06-24 01:38:52 + open + closed + page-a + publish + 0 + 10 + page + + 0 + + + Page B + https://wpthemetestdata.wordpress.com/page-b/ + Fri, 24 Jun 2011 01:39:14 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=735 + + + + 735 + 2011-06-23 18:39:14 + 2011-06-24 01:39:14 + open + closed + page-b + publish + 0 + 11 + page + + 0 + + + Level 2a + https://wpthemetestdata.wordpress.com/level-1/level-2a/ + Fri, 24 Jun 2011 02:03:33 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=742 + + + + 742 + 2011-06-23 19:03:33 + 2011-06-24 02:03:33 + open + closed + level-2a + publish + 174 + 0 + page + + 0 + + + Level 2b + https://wpthemetestdata.wordpress.com/level-1/level-2b/ + Fri, 24 Jun 2011 02:04:03 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=744 + + + + 744 + 2011-06-23 19:04:03 + 2011-06-24 02:04:03 + open + closed + level-2b + publish + 174 + 0 + page + + 0 + + + Level 3a + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3a/ + Fri, 24 Jun 2011 02:04:24 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=746 + + + + 746 + 2011-06-23 19:04:24 + 2011-06-24 02:04:24 + open + closed + level-3a + publish + 173 + 0 + page + + 0 + + + Level 3b + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3b/ + Fri, 24 Jun 2011 02:04:46 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=748 + + + + 748 + 2011-06-23 19:04:46 + 2011-06-24 02:04:46 + open + closed + level-3b + publish + 173 + 0 + page + + 0 + + + Template: Excerpt (Defined) + https://wpthemetestdata.wordpress.com/2012/03/15/template-excerpt-defined/ + Thu, 15 Mar 2012 21:38:08 +0000 + themedemos + http://wptest.io/demo/?p=993 + + should be displayed in place of the user-defined excerpt in single-page views.]]> + should be displayed in place of the post content in archive-index pages. It can be longer than the automatically generated excerpts, and can have HTML tags.]]> + 993 + 2012-03-15 14:38:08 + 2012-03-15 21:38:08 + closed + closed + template-excerpt-defined + publish + 0 + 0 + post + + 0 + + + + + + + + + Template: More Tag + https://wpthemetestdata.wordpress.com/2012/03/15/template-more-tag/ + Thu, 15 Mar 2012 21:41:11 +0000 + themedemos + http://wptest.io/demo/?p=996 + + more tag. + +Right after this sentence should be a "continue reading" button of some sort on list pages of themes that show full content. It won't show on single pages or on themes showing excerpts. + + + +And this content is after the more tag. (which should be the anchor link for when the button is clicked)]]> + + 996 + 2012-03-15 14:41:11 + 2012-03-15 21:41:11 + closed + closed + template-more-tag + publish + 0 + 0 + post + + 0 + + + + + + + + + Edge Case: Nested And Mixed Lists + https://wpthemetestdata.wordpress.com/2009/05/15/edge-case-nested-and-mixed-lists/ + Fri, 15 May 2009 21:48:32 +0000 + themedemos + http://wptest.io/demo/?p=1000 + + +
  • Lists within lists do not break the ordered list numbering order
  • +
  • Your list styles go deep enough.
  • + +

    Ordered - Unordered - Ordered

    +
      +
    1. ordered item
    2. +
    3. ordered item +
        +
      • unordered
      • +
      • unordered +
          +
        1. ordered item
        2. +
        3. ordered item
        4. +
        +
      • +
      +
    4. +
    5. ordered item
    6. +
    7. ordered item
    8. +
    +

    Ordered - Unordered - Unordered

    +
      +
    1. ordered item
    2. +
    3. ordered item +
        +
      • unordered
      • +
      • unordered +
          +
        • unordered item
        • +
        • unordered item
        • +
        +
      • +
      +
    4. +
    5. ordered item
    6. +
    7. ordered item
    8. +
    +

    Unordered - Ordered - Unordered

    +
      +
    • unordered item
    • +
    • unordered item +
        +
      1. ordered
      2. +
      3. ordered +
          +
        • unordered item
        • +
        • unordered item
        • +
        +
      4. +
      +
    • +
    • unordered item
    • +
    • unordered item
    • +
    +

    Unordered - Unordered - Ordered

    +
      +
    • unordered item
    • +
    • unordered item +
        +
      • unordered
      • +
      • unordered +
          +
        1. ordered item
        2. +
        3. ordered item
        4. +
        +
      • +
      +
    • +
    • unordered item
    • +
    • unordered item
    • +
    ]]>
    + + 1000 + 2009-05-15 14:48:32 + 2009-05-15 21:48:32 + closed + closed + edge-case-nested-and-mixed-lists + publish + 0 + 0 + post + + 0 + + + + + + + +
    + + Template: Featured Image (Horizontal) + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-horizontal/ + Thu, 15 Mar 2012 22:15:12 +0000 + themedemos + http://wptest.io/demo/?p=1011 + + featured image, if the theme supports it. + +Non-square images can provide some unique styling issues. + +This post tests a horizontal featured image.]]> + + 1011 + 2012-03-15 15:15:12 + 2012-03-15 22:15:12 + closed + closed + template-featured-image-horizontal + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + + + + Template: Featured Image (Vertical) + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-vertical/ + Thu, 15 Mar 2012 22:36:32 +0000 + themedemos + http://wptest.io/demo/?p=1016 + + featured image, if the theme supports it. + +Non-square images can provide some unique styling issues. + +This post tests a vertical featured image.]]> + + 1016 + 2012-03-15 15:36:32 + 2012-03-15 22:36:32 + closed + closed + template-featured-image-vertical + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + + + + Post Format: Gallery (Tiled) + https://wpthemetestdata.wordpress.com/2010/09/09/post-format-gallery-tiled/ + Fri, 10 Sep 2010 00:23:27 +0000 + themedemos + http://wptest.io/demo/?p=1031 + + Jetpack to test. + +[gallery type="rectangular" columns="4" ids="755,757,758,760,766,763" orderby="rand"] + +This is some text after the Tiled Gallery just to make sure that everything spaces nicely.]]> + + 1031 + 2010-09-09 17:23:27 + 2010-09-10 00:23:27 + closed + closed + post-format-gallery-tiled + publish + 0 + 0 + post + + 0 + + + + + + + + + + + Page Image Alignment + https://wpthemetestdata.wordpress.com/about/page-image-alignment/ + Fri, 15 Mar 2013 23:19:23 +0000 + themedemos + http://wptest.io/demo/?page_id=1080 + + None, Left, Right, and Center. In addition, they also get the options of Thumbnail, Medium, Large & Fullsize. Be sure to try this page in RTL mode and it should look the same as LTR. +

    Image Alignment 580x300

    +The image above happens to be centered. + +Image Alignment 150x150 The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see there should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +Image Alignment 1200x400 + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 1200x400 + +And we try the large image again, with the center alignment since that sometimes is a problem. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 300x200 + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And just when you thought we were done, we're going to do them all over again with captions! + +[caption id="attachment_906" align="aligncenter" width="580"]Image Alignment 580x300 Look at 580x300 getting some caption love.[/caption] + +The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky. + +[caption id="attachment_904" align="alignleft" width="150"]Image Alignment 150x150 Bigger caption than the image usually is.[/caption] + +The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +[caption id="attachment_907" align="alignnone" width="1200"]Image Alignment 1200x400 Comment for massive image for your eyeballs.[/caption] + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. +[caption id="attachment_907" align="aligncenter" width="1200"]Image Alignment 1200x400 This massive image is centered.[/caption] + +And again with the big image centered. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +[caption id="attachment_905" align="alignright" width="300"]Image Alignment 300x200 Feels good to be right all the time.[/caption] + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! Last thing is a small image aligned right. Whatever follows should be unaffected. Image Alignment 150x150]]>
    + + 1133 + 2013-03-15 18:19:23 + 2013-03-15 23:19:23 + open + open + page-image-alignment + publish + 2 + 0 + page + + 0 +
    + + Page Markup And Formatting + https://wpthemetestdata.wordpress.com/about/page-markup-and-formatting/ + Fri, 15 Mar 2013 23:20:05 +0000 + themedemos + http://wptest.io/demo/?page_id=1083 + + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    Jane$1Because that's all Steve Jobs needed for a salary.
    John$100KFor all the blogging he does.
    Jane$100MPictures are worth a thousand words, right? So Tom x 1,000.
    Jane$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    + Robert Frost
    +
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +This tag shows strike-through text. + +Small Tag + +This tag shows smaller text. + +Strong Tag + +This tag shows bold text. + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +This rarely used tag emulates teletype text, which is usually styled like the <code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +This tag shows underlined text. + +Variable Tag + +This allows you to denote variables.]]>
    + + 1134 + 2013-03-15 18:20:05 + 2013-03-15 23:20:05 + open + open + page-markup-and-formatting + publish + 2 + 0 + page + + 0 +
    + + Template: Comments + https://wpthemetestdata.wordpress.com/2012/01/03/template-comments/ + Tue, 03 Jan 2012 17:11:37 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/comment-test/ + + +
  • Threaded comments up to 10 levels deep
  • +
  • Paginated comments (set Settings > Discussion > Break comments into pages to 5 top level comments per page)
  • +
  • Comment markup / formatting
  • +
  • Comment images
  • +
  • Comment videos
  • +
  • Author comments
  • +
  • Gravatars and default fallbacks
  • +]]>
    + + 1148 + 2012-01-03 10:11:37 + 2012-01-03 17:11:37 + open + closed + template-comments + publish + 0 + 0 + post + + 0 + + + + + + + 881 + + example@example.org + http://example.org/ + + 2012-09-03 10:18:04 + 2012-09-03 17:18:04 + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    John Saddington$1Because that's all Steve Job' needed for a salary.
    Tom McFarlin$100KFor all the blogging he does.
    Jared Erickson$100MPictures are worth a thousand words, right? So Tom x 1,000.
    Chris Ames$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    + +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    +Robert Frost
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    + +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up.]]>
    + 1 + + 0 + 0 +
    + + 899 + + fake@example.com + + + 2013-03-11 23:45:54 + 2013-03-12 04:45:54 + Gravatar associated with it. + They did not speify a website, so there should be no link to it in the comment. +]]> + 1 + + 0 + 0 + + + 900 + + example@example.org + http://example.org/ + + 2013-03-12 13:17:35 + 2013-03-12 20:17:35 + + 1 + + 0 + 0 + + + 901 + + example@example.org + http://example.org + + 2013-03-14 07:53:26 + 2013-03-14 14:53:26 + + 1 + + 0 + 0 + + + 903 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 07:56:46 + 2013-03-14 14:56:46 + + 1 + + 0 + 24783058 + + + 904 + + example@example.org + http://example.org/ + + 2013-03-14 07:57:01 + 2013-03-14 14:57:01 + + 1 + + 0 + 0 + + + 905 + + example@example.org + http://example.org/ + + 2013-03-14 08:01:21 + 2013-03-14 15:01:21 + + 1 + + 904 + 0 + + + 906 + + example@example.org + http://example.org/ + + 2013-03-14 08:02:06 + 2013-03-14 15:02:06 + + 1 + + 905 + 0 + + + 907 + + example@example.org + http://example.org/ + + 2013-03-14 08:03:22 + 2013-03-14 15:03:22 + + 1 + + 906 + 0 + + + 910 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 08:10:29 + 2013-03-14 15:10:29 + + 1 + + 907 + 24783058 + + + 911 + + example@example.org + http://example.org/ + + 2013-03-14 08:12:16 + 2013-03-14 15:12:16 + + 1 + + 910 + 0 + + + 912 + + example@example.org + http://example.org/ + + 2013-03-14 08:12:58 + 2013-03-14 15:12:58 + + 1 + + 911 + 0 + + + 913 + + example@example.org + http://example.org/ + + 2013-03-14 08:13:42 + 2013-03-14 15:13:42 + + 1 + + 912 + 0 + + + 914 + + example@example.org + http://example.org/ + + 2013-03-14 08:14:13 + 2013-03-14 15:14:13 + + 1 + + 913 + 0 + + + 915 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 08:14:47 + 2013-03-14 15:14:47 + + 1 + + 914 + 24783058 + + + 917 + + example@example.org + http://example.org/ + + 2013-03-14 09:56:43 + 2013-03-14 16:56:43 + + If the image imports... + ]]> + 1 + + 0 + 0 + + + 918 + + example@example.org + http://example.org/ + + 2013-03-14 11:23:24 + 2013-03-14 18:23:24 + + 1 + + 0 + 0 + + + 919 + + example@example.org + http://example.org/ + + 2013-03-14 11:27:54 + 2013-03-14 18:27:54 + + 1 + + 0 + 0 + + + 920 + + example@example.org + http://example.org/ + + 2013-03-14 11:30:33 + 2013-03-14 18:30:33 + + 1 + + 0 + 24783058 + + + 1015 + + auser@example.com + + + 2014-09-29 02:52:15 + 2014-09-29 09:52:15 + + 0 + + 0 + 0 + +
    + + Template: Pingbacks And Trackbacks + https://wpthemetestdata.wordpress.com/2012/01/01/template-pingbacks-an-trackbacks/ + Sun, 01 Jan 2012 17:17:18 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/many-trackbacks/ + + +
  • Above the comments
  • +
  • Below the comments
  • +
  • Included within the normal flow of comments
  • +]]>
    + + 1149 + 2012-01-01 10:17:18 + 2012-01-01 17:17:18 + closed + closed + template-pingbacks-an-trackbacks + publish + 0 + 0 + post + + 0 + + + + + + + + + 921 + + + http://tellyworth.wordpress.com/2007/11/21/ping-1/ + + 2007-11-21 11:31:12 + 2007-11-21 01:31:12 + + 1 + trackback + 0 + 0 + + + 922 + + + http://tellyworth.wordpress.com/2007/11/21/ping-2-with-a-much-longer-title-than-the-previous-ping-which-was-called-ping-1/ + + 2007-11-21 11:35:47 + 2007-11-21 01:35:47 + + 1 + trackback + 0 + 0 + + + 923 + + + http://tellyworth.wordpress.com/2007/11/21/ping-4/ + + 2007-11-21 11:39:25 + 2007-11-21 01:39:25 + + 1 + pingback + 0 + 0 + + + 924 + + + http://tellyworth.wordpress.com/2007/11/21/ping-3/ + + 2007-11-21 11:38:22 + 2007-11-21 01:38:22 + + 1 + pingback + 0 + 0 + + + 925 + + example@example.org + http://example.org/ + + 2010-06-11 15:27:04 + 2010-06-11 22:27:04 + + 1 + + 0 + 0 + +
    + + Template: Comments Disabled + https://wpthemetestdata.wordpress.com/2012/01/02/template-comments-disabled/ + Mon, 02 Jan 2012 17:21:15 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/no-comments/ + + should display pingbacks and trackbacks.]]> + + 1150 + 2012-01-02 10:21:15 + 2012-01-02 17:21:15 + closed + closed + template-comments-disabled + publish + 0 + 0 + post + + 0 + + + + + + + + Edge Case: Many Tags + https://wpthemetestdata.wordpress.com/2009/06/01/edge-case-many-tags/ + Mon, 01 Jun 2009 08:00:34 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/11/24/many-tags/ + + + + 1151 + 2009-06-01 01:00:34 + 2009-06-01 08:00:34 + closed + closed + edge-case-many-tags + publish + 0 + 0 + post + + 0' + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Edge Case: Many Categories + https://wpthemetestdata.wordpress.com/2009/07/02/edge-case-many-categories/ + Thu, 02 Jul 2009 09:00:03 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/11/24/many-categories/ + + + + 1152 + 2009-07-02 02:00:03 + 2009-07-02 09:00:03 + closed + closed + edge-case-many-categories + publish + 0 + 0 + post + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Scheduled + https://wpthemetestdata.wordpress.com/2020/01/01/scheduled/ + Wed, 01 Jan 2030 19:00:18 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=418 + + + + 1153 + 2030-01-01 12:00:18 + 2030-01-01 19:00:18 + closed + closed + scheduled + future + 0 + 0 + post + + 0 + + + + + + Post Format: Image + https://wpthemetestdata.wordpress.com/2010/08/08/post-format-image/ + Sun, 08 Aug 2010 12:00:39 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=568 + +
      + +]]>
    + + 1158 + 2010-08-08 05:00:39 + 2010-08-08 12:00:39 + closed + closed + post-format-image + publish + 0 + 0 + post + + 0 + + + + + +
    + + Post Format: Video (YouTube) + https://wpthemetestdata.wordpress.com/2010/06/02/post-format-video-youtube/ + Wed, 02 Jun 2010 09:00:58 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=582 + + WordPress Embeds.]]> + + 1161 + 2010-06-02 02:00:58 + 2010-06-02 09:00:58 + closed + closed + post-format-video-youtube + publish + 0 + 0 + post + + 0 + + + + + + + Post Format: Image (Caption) + https://wpthemetestdata.wordpress.com/2010/08/07/post-format-image-caption/ + Sat, 07 Aug 2010 13:00:19 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=674 + + Bell on Wharf Bell on wharf in San Francisco[/caption]]]> + + 1163 + 2010-08-07 06:00:19 + 2010-08-07 13:00:19 + closed + closed + post-format-image-caption + publish + 0 + 0 + post + + 0 + + + + + + + + _thumbnail_id + + + + + Draft + https://wpthemetestdata.wordpress.com/?p=1164 + Tue, 09 Apr 2013 18:20:39 +0000 + themedemos + http://wptest.io/demo/?p=922 + + + + 1164 + 2013-04-09 11:20:39 + 2013-04-09 18:20:39 + closed + closed + + draft + 0 + 0 + post + + 0 + + + + + + Template: Password Protected (the password is "enter") + https://wpthemetestdata.wordpress.com/2012/01/04/template-password-protected/ + Wed, 04 Jan 2012 16:38:05 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/test-with-secret-password/ + + + + 1168 + 2012-01-04 09:38:05 + 2012-01-04 16:38:05 + closed + closed + template-password-protected + publish + 0 + 0 + post + enter + 0 + + + + + + + 926 + + example@example.org + http://example.org/ + + 2013-03-14 11:56:08 + 2013-03-14 18:56:08 + + 1 + + 0 + 0 + + + + + <link>https://wpthemetestdata.wordpress.com/2009/09/05/edge-case-no-title/</link> + <pubDate>Sat, 05 Sep 2009 16:00:23 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2007/09/04/14/</guid> + <description/> + <content:encoded><![CDATA[This post has no title, but it still must link to the single post view somehow. + +This is typically done by placing the permalink on the post date.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1169</wp:post_id> + <wp:post_date>2009-09-05 09:00:23</wp:post_date> + <wp:post_date_gmt>2009-09-05 16:00:23</wp:post_date_gmt> + <wp:comment_status>closed</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>edge-case-no-title</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>0</wp:menu_order> + <wp:post_type>post</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="category" nicename="classic"><![CDATA[Classic]]></category> + <category domain="post_tag" nicename="edge-case"><![CDATA[edge case]]></category> + <category domain="category" nicename="edge-case-2"><![CDATA[Edge Case]]></category> + <category domain="post_tag" nicename="layout"><![CDATA[layout]]></category> + <category domain="post_tag" nicename="title"><![CDATA[title]]></category> +</item> +<item> + <title>Edge Case: No Content + https://wpthemetestdata.wordpress.com/2009/08/06/edge-case-no-content/ + Thu, 06 Aug 2009 16:39:56 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/this-post-has-no-body/ + + + + 1170 + 2009-08-06 09:39:56 + 2009-08-06 16:39:56 + closed + closed + edge-case-no-content + publish + 0 + 0 + post + + 0 + + + + + + + 927 + + example@example.org + http://example.org/ + + 2013-03-14 12:35:07 + 2013-03-14 19:35:07 + + 1 + + 0 + 0 + + + + Template: Paginated + https://wpthemetestdata.wordpress.com/2012/01/08/template-paginated/ + Sun, 08 Jan 2012 17:00:20 +0000 + themedemos + https://noeltest.wordpress.com/?p=188 + + + +Post Page 2 + + + +Post Page 3]]> + + 1171 + 2012-01-08 10:00:20 + 2012-01-08 17:00:20 + closed + closed + template-paginated + publish + 0 + 0 + post + + 0 + + + + + + + + + <![CDATA[Markup: Title <em>With</em> <b>Mark<sup>up</sup></b>]]> + https://wpthemetestdata.wordpress.com/2013/01/05/markup-title-with-markup/ + Sat, 05 Jan 2013 17:00:49 +0000 + themedemos + http://wptest.io/demo/?p=861 + + +
  • The post title renders the word "with" in italics and the word "markup" in bold (and "up" is superscript).
  • +
  • The post title markup should be removed from the browser window / tab.
  • +]]>
    + + 1173 + 2013-01-05 10:00:49 + 2013-01-05 17:00:49 + closed + closed + markup-title-with-markup + publish + 0 + 0 + post + + 0 + + + + + +
    + + Markup: Title With Special Characters ~`!@#$%^&*()-_=+{}[]/\;:'"?,.> + https://wpthemetestdata.wordpress.com/2013/01/05/title-with-special-characters/ + Sat, 05 Jan 2013 18:00:20 +0000 + themedemos + http://wptest.io/demo/?p=867 + + Latin Character Tests +This is a test to see if the fonts used in this theme support basic Latin characters. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    !"#$%&'()*
    +,-./01234
    56789:;>=<
    ?@ABCDEFGH
    IJKLMNOPQR
    STUVWXYZ[\
    ]^_`abcdef
    ghijklmnop
    qrstuvwxyz
    {|}~
    ]]>
    + + 1174 + 2013-01-05 11:00:20 + 2013-01-05 18:00:20 + closed + closed + title-with-special-characters + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Taumatawhakatangihangakoauauotamateaturipukakapikimaungahoronukupokaiwhenuakitanatahu + https://wpthemetestdata.wordpress.com/2009/10/05/title-should-not-overflow-the-content-area/ + Mon, 05 Oct 2009 19:00:59 +0000 + themedemos + http://wptest.io/demo/?p=877 + + Title should not overflow the content area + +A few things to check for: +
      +
    • Non-breaking text in the title, content, and comments should have no adverse effects on layout or functionality.
    • +
    • Check the browser window / tab title.
    • +
    • If you are a plugin or widget developer, check that this text does not break anything.
    • +
    + +The following CSS properties will help you support non-breaking text. + +
    -ms-word-wrap: break-word;
    +word-wrap: break-word;
    + ]]>
    + + 1175 + 2009-10-05 12:00:59 + 2009-10-05 19:00:59 + closed + closed + title-should-not-overflow-the-content-area + publish + 0 + 0 + post + + 0 + + + + + + + + +
    + + Markup: Text Alignment + https://wpthemetestdata.wordpress.com/2013/01/09/markup-text-alignment/ + Wed, 09 Jan 2013 16:00:39 +0000 + themedemos + http://wptest.io/demo/?p=895 + + Default +This is a paragraph. It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love. Completely neutral and not picking a side or sitting on the fence. It just is. It just freaking is. It likes where it is. It does not feel compelled to pick a side. Leave him be. It will just be better that way. Trust me. +

    Left Align

    +

    This is a paragraph. It is left aligned. Because of this, it is a bit more liberal in it's views. It's favorite color is green. Left align tends to be more eco-friendly, but it provides no concrete evidence that it really is. Even though it likes share the wealth evenly, it leaves the equal distribution up to justified alignment.

    + +

    Center Align

    +

    This is a paragraph. It is center aligned. Center is, but nature, a fence sitter. A flip flopper. It has a difficult time making up its mind. It wants to pick a side. Really, it does. It has the best intentions, but it tends to complicate matters more than help. The best you can do is try to win it over and hope for the best. I hear center align does take bribes.

    + +

    Right Align

    +

    This is a paragraph. It is right aligned. It is a bit more conservative in it's views. It's prefers to not be told what to do or how to do it. Right align totally owns a slew of guns and loves to head to the range for some practice. Which is cool and all. I mean, it's a pretty good shot from at least four or five football fields away. Dead on. So boss.

    + +

    Justify Align

    +

    This is a paragraph. It is justify aligned. It gets really mad when people associate it with Justin Timberlake. Typically, justified is pretty straight laced. It likes everything to be in it's place and not all cattywampus like the rest of the aligns. I am not saying that makes it better than the rest of the aligns, but it does tend to put off more of an elitist attitude.

    ]]>
    + + 1176 + 2013-01-09 09:00:39 + 2013-01-09 16:00:39 + closed + closed + markup-text-alignment + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Markup: Image Alignment + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/ + Fri, 11 Jan 2013 03:15:40 +0000 + themedemos + http://wptest.io/demo/?p=903 + + None, Left, Right, and Center. In addition, they also get the options of Thumbnail, Medium, Large & Fullsize. Be sure to try this page in RTL mode and it should look the same as LTR. +

    Image Alignment 580x300

    +The image above happens to be centered. + +Image Alignment 150x150 The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +Image Alignment 1200x400 + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 1200x400 + +And we try the large image again, with the center alignment since that sometimes is a problem. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 300x200 + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And just when you thought we were done, we're going to do them all over again with captions! + +[caption id="attachment_906" align="aligncenter" width="580"]Image Alignment 580x300 Look at 580x300 getting some caption love.[/caption] + +The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky. + +[caption id="attachment_904" align="alignleft" width="150"]Image Alignment 150x150 Bigger caption than the image usually is.[/caption] + +The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +[caption id="attachment_907" align="alignnone" width="1200"]Image Alignment 1200x400 Comment for massive image for your eyeballs.[/caption] + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. +[caption id="attachment_907" align="aligncenter" width="1200"]Image Alignment 1200x400 This massive image is centered.[/caption] + +And again with the big image centered. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +[caption id="attachment_905" align="alignright" width="300"]Image Alignment 300x200 Feels good to be right all the time.[/caption] + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! One last thing: The last item in this post's content is a thumbnail floated right. Make sure any elements after the content are clearing properly. + +]]>
    + + 1177 + 2013-01-10 20:15:40 + 2013-01-11 03:15:40 + closed + closed + markup-image-alignment + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + +
    + + Markup: HTML Tags and Formatting + https://wpthemetestdata.wordpress.com/2013/01/11/markup-html-tags-and-formatting/ + Sat, 12 Jan 2013 03:22:19 +0000 + themedemos + http://wptest.io/demo/?p=919 + + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    John Doe$1Because that's all Steve Jobs needed for a salary.
    Jane Doe$100KFor all the blogging she does.
    Fred Bloggs$100MPictures are worth a thousand words, right? So Jane x 1,000.
    Jane Bloggs$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    +Robert Frost
    +
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +This tag shows strike-through text. + +Small Tag + +This tag shows smaller text. + +Strong Tag + +This tag shows bold text. + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +This rarely used tag emulates teletype text, which is usually styled like the <code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +This tag shows underlined text. + +Variable Tag + +This allows you to denote variables.]]>
    + + 1178 + 2013-01-11 20:22:19 + 2013-01-12 03:22:19 + closed + closed + markup-html-tags-and-formatting + publish + 0 + 0 + post + + 0 + + + + + + + +
    + + Media: Twitter Embeds + https://wpthemetestdata.wordpress.com/2011/03/15/media-twitter-embeds/ + Tue, 15 Mar 2011 22:47:16 +0000 + themedemos + http://wptest.io/demo/?p=1027 + + Twitter Embeds feature.]]> + + 1179 + 2011-03-15 15:47:16 + 2011-03-15 22:47:16 + closed + closed + media-twitter-embeds + publish + 0 + 0 + post + + 0 + + + + + + + + _oembed_time_d01e104b758ab65a49dfdede5913069c + + + + _oembed_ac49b172e1844531a885a53eff2efd91 + ]]> + + + _oembed_time_ac49b172e1844531a885a53eff2efd91 + + + + _oembed_d01e104b758ab65a49dfdede5913069c + ]]> + + + + Template: Sticky + https://wpthemetestdata.wordpress.com/2012/01/07/template-sticky/ + Sat, 07 Jan 2012 14:07:21 +0000 + themedemos + http://wptest.io/demo/?p=1241 + + +
  • The sticky post should be distinctly recognizable in some way in comparison to normal posts. You can style the .sticky class if you are using the post_class() function to generate your post classes, which is a best practice.
  • +
  • They should show at the very top of the blog index page, even though they could be several posts back chronologically.
  • +
  • They should still show up again in their chronologically correct postion in time, but without the sticky indicator.
  • +
  • If you have a plugin or widget that lists popular posts or comments, make sure that this sticky post is not always at the top of those lists unless it really is popular.
  • +]]>
    + + 1241 + 2012-01-07 07:07:21 + 2012-01-07 14:07:21 + closed + closed + template-sticky + publish + 0 + 0 + post + + 1 + + + + +
    + + Template: Excerpt (Generated) + https://wpthemetestdata.wordpress.com/2012/03/14/template-excerpt-generated/ + Wed, 14 Mar 2012 16:49:22 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=1446 + + excerpt_length and excerpt_more, display properly.]]> + + 1446 + 2012-03-14 09:49:22 + 2012-03-14 16:49:22 + closed + closed + template-excerpt-generated + publish + 0 + 0 + post + + 0 + + + + + + + + + Block category: Common + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-common/ + Fri, 02 Nov 2018 16:20:28 +0000 + >themereviewteam + https://wpthemetestdata.wordpress.com/?p=1730 + + +

    The Common category includes the following blocks: Paragraph, image, headings, list, gallery, quote, audio, cover, video.

    + + + +

    The paragraph block is the default block type.  It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love.

    + + + +

    This paragraph is left aligned.

    + + + +

    This italic paragraph is right aligned.

    + + + +

    Neither of these paragraphs care about politics, but this one is bold, medium sized and has a drop cap.

    + + + +

    This paragraph is centered.

    + + + +

    This paragraph prefers Jazz over Justin Timberlake. It also uses the small font size.

    + + + +

    This paragraph has something important to say:  It has a large font size, which defaults to 36px.

    + + + +

    The huge text size defaults to 46px, but the size can be customized.

    + + + +

    This paragraph is colorful, with a red background and white text (maybe). Colored blocks should have a high enough contrast, so that the text is readable.

    + + + +

    Below this block, you will see a single image with a circle mask applied.

    + + + +
    Image Alignment 150x150
    + + + +

    H1 Heading

    + + + +

    H2 Heading

    + + + +

    H3 Heading

    + + + +

    H4 Heading

    + + + +
    H5 Heading
    + + + +
    H6 Heading
    + + + +

    Ordered list

    + + + +
    1. The software should be licensed under the GNU Public License.
    2. The software should be freely available to anyone to use for any purpose, and without permission.
    3. The software should be open to modifications.
      1. Any modifications should be freely distributable at no cost and without permission from its creators.
    4. The software should provide a framework for translation to make it globally accessible to speakers of all languages.
    5. The software should provide a framework for extensions so modifications and enhancements can be made without modifying core code
    + + + +

    Unordered list

    + + + +
    • One
    • Two
    • Three
      • Four
    • Five
    + + + + + + + +

    Quote

    Cite
    + + + +
    + + + +
    +

    Cover block with background image

    +
    + + + +

    The file block has a setting that lets us show or hide a download button with editable text:

    + + + + + + + + + + + +

    Video blocks have settings for showing and hiding the playback controls. Use autoplay and playback controls responsibly.

    + + + +
    This is a video block caption.
    + + + +

    The video block below is muted and has a poster image that displays before the video starts:

    + + + +
    + +]]>
    + + 1730 + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + +
    + + Block category: Formatting + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-formatting/ + Fri, 02 Nov 2018 16:41:42 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1732 + + +

    The formatting category includes the following blocks:

    + + + +
    The code block starts with
    +<!-- wp:code -->
    +<?php echo 'Hello World'; ?>
    +
    + + +

    The classic block can have almost anything in it.

    +
    +
    a heading
    + + +
    The custom HTML block lets you put HTML that isn't configured like blocks in it. (this div has a width of 45%)
    + + + +
    The preformatted block.

    The Road Not Taken

    Robert Frost
    Two roads diverged in a yellow wood,
    And sorry I could not travel both (\_/)
    And be one traveler, long I stood (='.'=)
    And looked down one as far as I could (")_(")
    To where it bent in the undergrowth;

    Then took the other, as just as fair,
    And having perhaps the better claim, |\_/|
    Because it was grassy and wanted wear; / @ @ \
    Though as for that the passing there ( > º < )
    Had worn them really about the same, `>>x<<´
    / O \
    And both that morning equally lay
    In leaves no step had trodden black.
    Oh, I kept the first for another day!
    Yet knowing how way leads on to way,
    I doubted if I should ever come back.
    I shall be telling this with a sigh
    Somewhere ages and ages hence:
    Two roads diverged in a wood, and I—
    I took the one less traveled by,
    And that has made all the difference.



    and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    + + + +

    The pull quote can be aligned or wide or neither.

    Theme Reviewer
    + + + +
    The table blockThis is the default style.
    The cell next to this is empty.
    Cell #5
    Cell #6
    + + + +
    This is the striped style.This row should have a background color.
    The cell next to this is empty.

    This table has fixed width table cells.

    Make sure that the text wraps correctly.

    + + + +
    The Verse block

    A block for haiku?
    Why not?
    Blocks for all the things!
    +]]>
    + + 1732 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Block category: Layout Elements + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-layout-elements/ + Fri, 02 Nov 2018 16:44:37 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1734 + + +
    +

    The Layout Elements category includes the following blocks: Group, Button, Columns, Media & Text, separator, spacer, read more, and page break.

    + + + +

    This group block has a light green background color.

    + + + + + + + +

    The read more block should be right below this text, but only on list pages of themes that show the full content. It won't show on the single page or on themes showing excerpts.

    +
    + + + + + + + +
    +
    +

    The columns:

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    +
    + + + +
    Boardwalk
    +

    Media &Text

    + + + +

    For displaying media and text next to each other. By default, the media is to the left.

    +
    + + + +
    Golden Gate Bridge
    +

    This time our block is full width, and the image is to the right.

    + + + +

    The background color is a pale blue. 

    +
    + + + +

    Test to make sure that the editor and the front match. To test the Stack on mobile setting, reduce the browser window width.

    + + + +

    The control these settings, the block uses the css classes "has-media-on-the-right" and "is-stacked-on-mobile".

    + + + +

    The separator has three styles: default, wide line, and dots.

    + + + +
    + + + +
    + + + +
    + + + +

    The spacer block has a default height of 100 pixels:

    + + + + + + + +

    And finally, the page break:

    + + + + + + + +

    This paragraph block is on page two, after the page break.

    + + + + +]]>
    + + 1734 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block category: Embeds + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-embeds/ + Fri, 02 Nov 2018 16:51:55 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1738 + + + +

    This post tests various embed blocks:

    + + + +
    +https://twitter.com/WordPress/status/1057136472321613824 +
    Twitter,  wide width
    + + + +
    +https://youtu.be/ex8fMxXJDJw +
    YouTube
    + + + +
    +https://www.facebook.com/6427302910/posts/10156380423617911/ +
    + + + +
    +https://www.instagram.com/p/BpmueLLgEn_/?utm_source=ig_share_sheet&igshid=1hcxphic7p9e2 +
    + + + +
    +https://wordpress.tv/2018/10/14/kjell-reigstad-allan-cole-how-we-made-our-first-gutenberg-powered-theme/ +
    WordPress TV, full width
    + + + +

    +]]>
    + + 1738 + + + + + + + 0 + 0 + + + 0 + + + + + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + + + + + + + + + + ]]> + + + + + + + +

    Many of the WordPress contribution teams have been working hard on the new WordPress editor, and the tools, services,...

    Publicerat av WordPress Måndag 3 september 2018
    ]]>
    +
    + + + + + + + ]]> + + + + + + + + ]]> + + + + + + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + + + + + + ]]> + + + + + + + +

    Many of the WordPress contribution teams have been working hard on the new WordPress editor, and the tools, services,...

    Publicerat av WordPress Måndag 3 september 2018
    ]]>
    +
    + + + + + + + ]]> + + + + + + + + ]]> + + + + + +
    + + Block category: Widgets + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-widgets/ + Fri, 02 Nov 2018 16:45:35 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1736 + + +

    The shortcode widget:

    + + + +[gallery columns=2 ids="770,771"] + + + +

    The Archive Widget:

    + + + + + +

    The same Archive widget but as a dropdown:

    + + + + + + + +

    The Category widget block has an additional option for showing category hierarchies:

    + + + + + +

    The Latest Comments widget can display or hide the avatars, the date, and the comment excerpt:

    + + + + + +

    Here is an example of the Comments widget with all the options disabled. The number of comments has been reduced to two.

    + + + + + +

    And here is the Latest Posts widget in the list view, with dates:

    + + + + + +

    Grid view, now sorted from A -Z.

    + + + + + +

    You can also change the number of columns used to display the latest posts. The block below only displays posts from the Block category:

    + + + + + +

    Search widget:

    + + + + + +

    Tag Cloud widget:

    + + + + + +

    RSS Feed widget:

    + + + + ]]>
    + + 1736 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Columns + https://wpthemetestdata.wordpress.com/2018/11/02/block-columns/ + Fri, 02 Nov 2018 12:10:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1743 + + +
    +
    +

    This page tests how the theme displays the columns block. The first block tests a two column block with paragraphs.

    +
    + + + +
    +

    This is the second column. It should align next to the first column. Reduce the browser window width to test the responsiveness.

    +
    +
    + + + +
    +
    +

    This is the second column block. It has 3 columns.

    +
    + + + +
    +

    Paragraph 2 is in the middle.

    +
    + + + +
    +

    Paragraph 3 is in the last column.

    +
    +
    + + + +
    +
    +

    The third column block has 4 columns. Make sure that all the text is visible and that it is not cut off.

    +
    + + + +
    +

    Now the columns are getting narrower.

    +
    + + + +
    +

    The margins between the columns should be wide enough,

    +
    + + + +
    +

    so that the content of the columns does not run into or overlap each other.

    +
    +
    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    + + + +
    +

    Column five.

    +
    +
    + + + +

    To change the number of columns, select the column block to open the settings panel. You can show up to 6 columns. If the theme has support for wide align, you can also set the alignments to wide and full width.

    + + + +

    Below is a column block with six columns, and no alignment:

    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    + + + +
    +

    Column five.

    +
    + + + +
    +

    Column six.

    +
    +
    + + + +

    Next is a 3 column block, with a wide alignment:

    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    +
    + + + +

    And here is a two column block with full width, and a longer text. Make sure that the text wraps correctly.

    + + + +
    +
    +

    This is column one. Sometimes, you may want to use columns to display a larger text, so, lets add some more words. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna. Praesent sit amet ligula id orci venenatis auctor. Phasellus porttitor, metus non tincidunt dapibus, orci pede pretium neque, sit amet adipiscing ipsum lectus et libero. Aenean bibendum. Curabitur mattis quam id urna. Vivamus dui. Donec nonummy lacinia lorem. Cras risus arcu, sodales ac, ultrices ac, mollis quis, justo. Sed a libero. Quisque risus erat, posuere at, tristique non, lacinia quis, eros.

    +
    + + + +
    +

    Column two. Cras volutpat, lacus quis semper pharetra, nisi enim dignissim est, et sollicitudin quam ipsum vel mi. Sed commodo urna ac urna. Nullam eu tortor. Curabitur sodales scelerisque magna. Donec ultricies tristique pede. Nullam libero. Nam sollicitudin felis vel metus. Nullam posuere molestie metus. Nullam molestie, nunc id suscipit rhoncus, felis mi vulputate lacus, a ultrices tortor dolor eget augue. Aenean ultricies felis ut turpis. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Suspendisse placerat tellus ac nulla. Proin adipiscing sem ac risus. Maecenas nisi. Cras semper.

    +
    +
    + + + +

    We can also add blocks inside columns:

    + + + +
    +
    +
    1. This is a numbered list,
    2. inside a 3 column block
    3. with a wide alignment.
    +
    + + + +
    +

    The middle column has a paragraph with an image block below.

    + + + +
    canola
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna.
    +
    + + + +
    +

    -This third column has a quote

    Theme Reviewer
    +
    +
    + + + +

    But wait there is more!  We also have a block called Media & Text, which is a two column block that helps you display media and text content next to each other, without having to first setup a column block:

    + + + +
    dsc20050813_115856_52
    +

    Media & Text

    + + + +

    A paragraph block sits ready to be used, below your headline.

    + + + +

    +
    +]]>
    + + 1743 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Block: Cover + https://wpthemetestdata.wordpress.com/2018/11/02/block-cover/ + Sat, 03 Nov 2018 12:25:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1745 + + +

    This is a left aligned cover block with a background image.

    + + + +

    The cover block lets you add text on top of images or videos.

    + + + +

    This blocktype has several alignment options, and you can also align or center the text inside the block.

    + + + +

    The background image can be fixed and you can change its opacity and add an overlay color.

    + + + +

    Make sure that the text wraps correctly over the image, and that text markup and alignments are working.

    + + + +

    The next image should have a pink overlay color, the text should be bold and aligned to the left:

    + + + +

    A center aligned cover image block, with a left aligned text.

    + + + +

    This is a full width cover block with a fixed background image with a 20% opacity.

    + + + +

    Make sure that all the text is readable.

    + + + +

    Our last cover image block has a wide width.

    + + + +

    This is a wide cover block with a video background.

    + + + +

    Compare the video and image blocks.
    This block is centered.

    + + + +

    The block below has no alignment, and the text is a link. Overlay colors must also work with video backgrounds.

    + + + + +]]>
    + + 1745 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Button + https://wpthemetestdata.wordpress.com/2018/11/02/block-button/ + Sat, 03 Nov 2018 13:20:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1747 + + +

    Button blocks are not semantically buttons, but links inside a styled div. 

    + + + +

    If you do not add a link, a link tag without an anchor will be used.

    + + + + + + + +

    Check to make sure that the text wraps correctly when the button has more than one line of text, and when it is extra long.

    + + + + + + + +

    Buttons have three styles: 

    + + + + + + + + + + + + + + + +

    If the theme has a custom color palette, test that background color and text color settings work correctly. 

    + + + + + + + +

    Now lets test how buttons display together with large texts.

    + + + +

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio.

    + + + + + + + +

    Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna. Praesent sit amet ligula id orci venenatis auctor. Phasellus porttitor, metus non tincidunt dapibus, orci pede pretium neque, sit amet adipiscing ipsum lectus et libero. Aenean bibendum. Curabitur mattis quam id urna.

    + + + + + + + +

    Vivamus dui. Donec nonummy lacinia lorem. Cras risus arcu, sodales ac, ultrices ac, mollis quis, justo. Sed a libero. Quisque risus erat, posuere at, tristique non, lacinia quis, eros.

    +]]>
    + + 1747 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Quote + https://wpthemetestdata.wordpress.com/2018/11/02/block-quote/ + Sat, 03 Nov 2018 03:05:49 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1749 + + +

    The quote block has two styles, regular:

    + + + +

    Gutenberg is more than an editor.

    The Gutenberg Team
    + + + +

    and large:

    + + + +

    Yes, it is a press, certainly, but a press from which shall flow in inexhaustible streams, the most abundant and most marvelous liquor that has ever flowed to relieve the thirst of men!


    Johannes Gutenberg
    + + + +

    The quote blocks themselves have no alignments but the text can be aligned, bold, italic, and linked:

    + + + +

    Right

    Theme Review
    + + + +

    In addition to the quote block, we also have the pull quote, with a regular and a solid color style.

    + + + +

    You can change the color of the border and the text with the regular style:

    + + + +

    In addition to the quote block, we also have the pull quote.

    Theme Reviewer
    + + + +

    Or change the background color and text color with the solid color style:

    + + + +

    a solid color style

    Theme Reviewer
    +]]>
    + + 1749 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Gallery + https://wpthemetestdata.wordpress.com/2018/11/02/block-gallery/ + Sat, 03 Nov 2018 04:34:24 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1752 + + +

    Gallery blocks have two settings: the number of columns, and whether or not images should be cropped. The default number of columns is three, and the maximum number of columns is eight.

    + + + +

    Below is a three column gallery at full width, with cropped images.

    + + + + + + + + + + + +

    Some more text for taking up space.

    + + + +

    A two column gallery, aligned to the left, linked to media file.

    + + + +

    In the editor, the image captions can be edited directly by clicking on the text.

    + + + +

    If the number of images cannot be divided into the number of columns you have selected, the default is to have the last image(s) automatically stretch to the width of your gallery.

    + + + + + + + +

    A four column gallery with a wide width:

    + + + + + + + +

    A five column gallery with normal images:

    + + + + + + + +

    This is the same gallery, but with cropped images.

    + + + + + + + +

    Six columns: does it work at all window sizes?

    + + + + + + + +

    Seven columns: how does this look on a narrow window?

    + + + + + + + +

    Eight columns:

    + + + + +]]>
    + + 1752 + + + + + + + 0 + 0 + + + 0 + + + + + + + + + +
    + + Block: Image + https://wpthemetestdata.wordpress.com/2018/11/03/block-image/ + Sat, 03 Nov 2018 15:20:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1755 + + +

    Welcome to image alignment! If you recognize this post, it is because these are blocks that have been converted from the classic Markup: Image Alignment post. The best way to demonstrate the ebb and flow of the various image positioning options is to nestle them snuggly among an ocean of words. Grab a paddle and let's get started. Be sure to try it in RTL mode. Left should stay left and right should stay right for both reading directions.

    + + + +

    On the topic of alignment, it should be noted that users can choose from the options of None, Left, Right, and Center. If the theme has added support for align wide, images can also be wide and full width. Be sure to test this page in RTL mode.

    + + + +

    In addition, they also get the options of the image dimensions 25%, 50%, 75%, 100% or a set width and height.

    + + + +
    Image Alignment 580x300
    + + + +

    The image above happens to be centered.

    + + + +
    Image Alignment 150x150
    + + + +

    The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned.

    + + + +

    As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished!

    + + + +

    And now for a massively large image. It also has no alignment.

    + + + +
    Image Alignment 1200x400
    + + + +

    The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.

    + + + +
    Image Alignment 300x200
    + + + +

    And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there… Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently.

    + + + +

    In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah… Just like that. It never felt so good to be right.

    + + + +

    And just when you thought we were done, we're going to do them all over again with captions!

    + + + +
    Image Alignment 580x300
    Look at 580x300 getting some caption love.
    + + + +

    The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky.

    + + + +
    Image Alignment 150x150
    Itty-bitty caption.
    + + + +

    The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned.

    + + + +

    As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished!

    + + + +

    And now for a massively large image. It also has no alignment.

    + + + +
    Image Alignment 1200x400
    Massive image comment for your eyeballs.
    + + + +

    The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.

    + + + +
    Image Alignment 300x200
    Feels good to be right all the time.
    + + + +

    And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there… Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently.

    + + + +

    In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah… Just like that. It never felt so good to be right.

    + + + +

    Imagine that we would find a use for the extra wide image! This image has the wide width alignment:

    + + + +
    Image Alignment 1200x4002
    + + + +

    Can we go bigger? This image has the full width alignment:

    + + + +
    Image Alignment 1200x4002
    + + + +

    And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! One last thing: The last item in this post's content is a thumbnail floated right. Make sure any elements after the content are clearing properly.

    + + + +
    +]]>
    + + 1755 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Ελληνικά-Greek + https://wpthemetestdata.wordpress.com/greek/ + Fri, 14 Feb 2020 10:31:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1809 + + Headings Επικεφαλίδες +

    Επικεφαλίδα 1 Header one

    +

    Επικεφαλίδα 2 Header two

    +

    Επικεφαλίδα 3 Header three

    +

    Επικεφαλίδα 2 Header four

    +
    Επικεφαλίδα 5 Header five
    +
    Επικεφαλίδα 6Header six
    +

    Παράθεση άλλου Blockquotes

    +Single line blockquote: Μια γραμμή +
    Πάντα να είναι περίεργος.
    +Πολλές γραμμέ με αναφορά Multi line blockquote with a cite reference: +
    Το HTML <blockquote> ElementHTML Block Quotation Element) καταδεικνύει ότι το κείμενο έχει μια παράθεση. Συνήθως οπτικοποιείται με εσοχή (δείτε Σημειώσεις για το πως να το αλλάξετε. Ίσως να δίνεται και URL πηγής με την χρήση του cite attribute, μπλα, μπλα <cite> .
    +multiple contributors - MDN HTML element reference - blockquote +

    Πίνακες Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Υπάλληλος EmployeeΜισθός Salary
    Τάδε κάποιος$1Γιατί τόσα χρειάζεται για να ζήσει
    Jane Doe$100KFor all the blogging she does.
    Fred Bloggs$100MPictures are worth a thousand words, right? So Jane x 1,000.
    Jane Bloggs$100BWith hair like that?! Enough said...
    +

    Λίστες Definition Lists

    +
    +
    Τίτλος λίστας Definition List Title
    +
    Υποδιαίρεση λίστας Definition list division.
    +
    +

    Λίστα με κουκίδες Unordered Lists (Nested)

    +
      +
    • Πρώτο στοιχείο List item one +
        +
      • Στοιχείο πρώτο List item one +
          +
        • Στοιχείο λίστα ένα List item one
        • +
        • Στοιχείο λίστας δύο List item two
        • +
        +
      • +
      • Στοιχείο δεύτερο -item two
      • +
      +
    • +
    • Στοιχειο δύο List item two
    • +
    +

    Αριθμημένη λίστα(Nested)

    +
      +
    1. Στοιχειο ξεκινά με 8-start at 8 +
        +
      1. Στοιχείο λίστας ενα List item one +
          +
        1. Στοιχείο λίστας ενα -reversed attribute
        2. +
        3. Στοιχείο λίστας δύο
        4. +
        +
      2. +
      3. Δεύτερο στοιχείο
      4. +
      +
    2. +
    3. Στοιχείο δύο
    4. +
    +

    Ετικέττες HTML Tags

    +Διεύθυνση Address Tag + +
    1 Απέραντη διαδρομή Infinite Loop +Απλωπολή , ΤΚ 95014 +Ελλάδα
    Αγκυρωση Anchor Tag (aka. Link) + +Πάραδειγμα συνδέσμου. + +Συντομογραφία Abbreviation Tag + +Η συντομογραφία κτλ σημαίνει "Και τα λοιπά". + +Ακρωνύμιο Acronym Tag + +Το ακρωνύμιο κυρ σημαίνει "Κύριος". + +Big Tag + +Αυτό είναι μεγάλο θέμα + +Cite Tag + +"Φάε το φαϊ σου" --Όλες οι μαμάδες + +Code Tag + +This tag styles blocks of code. +.post-title { +margin: 0 0 5px; +font-weight: bold; +font-size: 38px; +line-height: 1.2; +και μία γραμμή με πολύ πάρα πολύ υπερβολικά πάρα πολύ μεγάλο κείμενο που πρέπει να δούμε πως το χειρίζεται η γραμματοσειρά και αν ξεχειλίζει από τις γραμμές και δημιουργεί πρόβλημα; +} + +Διαγραφή Delete Tag + +Μπορείτε να διαγράφεται κείμενο, αλλά δεν συνιστάται. + +Έμφαση Emphasize Tag + +Θα πρέπει να κάνει ιταλικ italicize το κείμενο. + +Εισαγωγή Insert Tag + +Αυτό το tag υποδηλώνει εισηγμένο inserted κείμενο. + +Keyboard Tag + +Αυτό το ελάχιστο γνωστό κείμενο πληκτρολογίου keyboard Tag, συνήθως μορφοποιείται όμοια με το <κώδικα code> tag. + +Προδιαμορφωμένο Preformatted Tag +

    Ο Δρόμος που δεν διάλεξα - The Road Not Taken

    +
    Robert Frost
    +	 Δυο δρόμοι διασταυρώθηκαν σ' ένα χρυσαφένιο δάσος ,
    +	 Και προς λύπη μου και τους δυο τα πόδια μου να ταξιδέψουν δεν μπορούσαν
    +	 Κι επί μακρόν εστάθηκα , καθώς ένας ήμουν ταξιδευτής μονάχος ,
    +	 κι έστρεψα το βλέμμα μου στον πρώτο όσο να χαθεί στο βάθος
    +	 μέχρι εκεί που χάνονταν στα άγρια χόρτα που βλαστούσαν.
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	και μία μακριά, πάρα πολύ μακριά, υπερβολικά μακροσκελής δίχως νόημα πρόταση για να δούμε πως το χειρίζεται το θέμα εμφάνισης και αν αναδιπλώνεται, κρύβεται ή ξεχειλίζει;
    +
    +Quote Tag for short, inline quotes + +Προγραμματιστές, προγραμματιστές, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +Αυτή η ετικέτα είναι με διαγράμμιση strike-through κείμενο text. + +Μικρά Small Tag + +Αυτή η ετικέτα είναι μικρότερο smaller κείμενο text. + +Strong Tag + +Αυτή η ετικέτα δείχνει έντονο bold κείμενο text. + +Subscript Tag + +Getting our science styling on with H2 δύοO, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2 δύο, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +Αυτή η ετικέτα δείχνει τυλετυπος teletype κείμενο, which is usually styled like the <κώδικα code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +Αυτή η ετικέτα δείχνει υπογράμμιση underlined text. + +Variable Tag + +Αυτή η ετικέτα δείχνει παράμετροι variables.]]>
    + + 1809 + + + + + + + 0 + 0 + + + 0 + + + + + + + + +
    + + Επίπεδο 2 -Second Greek level + https://wpthemetestdata.wordpress.com//greek/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-2/ + Fri, 14 Feb 2020 10:31:47 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1811 + + + + 1811 + + + + + + + 1809 + 0 + + + 0 + + + + + + + + + + + Επίπεδο 3 + https://wpthemetestdata.wordpress.com/greek/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-2/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-3/ + Fri, 14 Feb 2020 10:32:50 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1813 + + + + 1813 + + + + + + + 1811 + 0 + + + 0 + + + + + + + + + + + <![CDATA[WP 6.1 Font size scale]]> + https://wpthemetestdata.wordpress.com/wp-6-1-font-size-scale/ + Mon, 16 Jan 2023 07:08:31 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-font-size-scale/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Small H2 Heading

    + + + +

    Medium H2 Heading

    + + + +

    Large H2 Heading

    + + + +

    Extra Large H2 Heading

    + + + +

    Small paragraph

    + + + +

    Medium paragraph

    + + + +

    Large paragraph

    + + + +

    Extra Large paragraph

    +]]> +
    + + 163 + + + + + + + + + 0 + 0 + + + 0 + + + + + + +
    + + <![CDATA[WP 6.1 spacing presets]]> + https://wpthemetestdata.wordpress.com/wp-6-1-spacing-presets/ + Mon, 16 Jan 2023 06:56:53 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-spacing-presets/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    On this page, some group blocks have border or background color set to increase visibility.

    + + + +
    +

    This group has a no background color and no additional spacing set.

    +
    + + + +
    +

    This group has a background color but no additional spacing set.

    +
    + + + +
    +

    This group has a 1px border and padding preset 1

    +
    + + + +
    +

    This group has padding preset 1

    +
    + + + +
    +

    This group has a 1px border and padding preset 2

    +
    + + + +
    +

    This group has a background color and padding preset 3

    +
    + + + +
    +

    This group has a background color and padding preset 4

    +
    + + + +
    +

    This group has a background color and padding preset 5

    +
    + + + +
    +

    This group has a background color and padding preset 6

    +
    + + + +
    +

    This group has a background color and padding preset 7

    +
    + + + +
    +

    This group has padding preset 7

    +
    + + + +
    +

    This group has a background color and margin preset 1

    +
    + + + +
    +

    This group has a background color and margin preset 2

    +
    + + + +
    +

    This group has a background color and margin preset 3

    +
    + + + +
    +

    This group has a background color and margin preset 4

    +
    + + + +
    +

    This group has a background color and margin preset 5

    +
    + + + +
    +

    This group has a background color and margin preset 6

    +
    + + + +
    +

    This group has a background color and margin preset 7

    +
    + + + +
    +

    This group has a 1px border, padding preset 4 and margin preset 4

    +
    + + + +
    +

    This group has padding preset 4 and margin preset 4

    +
    +]]>
    + + 150 + + + + + + + + + 0 + 0 + + + 0 + + + + + + +
    + + <![CDATA[WP 6.1 Theme block category]]> + https://wpthemetestdata.wordpress.com/wp-6-1-theme-block-category/ + Fri, 13 Jan 2023 18:38:05 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-theme-block-category/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Navigation block with page list:

    + + + + + + + +

    Site logo:

    + + + + + +

    Site title:

    + + + + + +

    Tagline block:

    + + + + + +

    Query loop "Title & Date" variation:

    + + + +
    + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Title & Excerpt" variation:

    + + + +
    + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Title, Date & Excerpt" variation:

    + + + +
    + + + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Image, Date & Title" variation:

    + + + +
    + + + + + + + + + + + + + + + + + +

    + +
    + + + +

    Avatar block:

    + + + + + +

    Post title block:

    + + + + + +

    Post excerpt:

    + + + + + +

    Post featured image:

    + + + + + +

    Post author:

    + + + + + +

    Post date:

    + + + + + +

    Categories:

    + + + + + +

    Tags:

    + + + + + +

    Next post & previous post:

    + + + + + + + +

    Read More:

    + + + + + +

    Comments block:

    + + + +
    + + + +
    +
    + + + +
    + + +
    + +
    + + + + +
    +
    + + + + + + + + + + + + + + +

    Post comments form block:

    +
    + + + + + +

    Login/out:

    + + + + + + + + + + + +

    Author biography block:

    + + + + + + + + + +

    Term description, archive title, search results title can not be shown on single posts.

    +]]>
    + + 51 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + + + + 2 + + + https://wpthemetestdata.wordpress.com/ + + + + + + + 0 + 0 + +
    + + <![CDATA[WP 6.1 Widgets block category]]> + https://wpthemetestdata.wordpress.com/wp-6-1-widgets-block-category/ + Fri, 13 Jan 2023 18:22:21 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-widgets-block-category/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Archives block:

    + + + + + + + +

    Categories list:

    + + + + + +

    Custom HTML:

    + + + + test + + + +

    Latest comments:

    + + + + + +

    Latest posts:

    + + + + + +

    Page list block:

    + + + + + +

    RSS block:

    + + + + + + + + + + + + + + + +

    Shortcode block:

    + + + + + +

    Social links:

    + + + + + + + + + + + + + + + +

    Tag cloud:

    + + + + + +

    +]]>
    + + 34 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Design category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-design-category-blocks/ + Fri, 13 Jan 2023 18:03:23 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-design-category-blocks/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + + + + + +
    +
    +

    One single column inside a columns block.

    +
    +
    + + + +
    +
    +

    Column one. The background color is on the single column.

    +
    + + + +
    +

    Column two

    +
    +
    + + + +
    +
    +

    Column one. The background color is on the parent columns block.

    +
    + + + +
    +

    Column two

    +
    + + + +
    +

    Column three

    +
    +
    + + + +
    +

    Group with paragraph inside. Below are the group block variations:

    +
    + + + +
    +

    Row

    + + + +

    Row

    +
    + + + +
    +

    Stack

    + + + +

    Stack

    +
    + + + +

    More block:

    + + + + + + + +

    Page break:

    + + + + + + + +

    Separators:

    + + + +

    Default style, no alignment:

    + + + +
    + + + +

    Default style, wide alignment:

    + + + +
    + + + +

    Default style, full width:

    + + + +
    + + + +

    Default style, align center:

    + + + +
    + + + +

    Wide style, no alignment:

    + + + +
    + + + +

    Wide style, wide alignment:

    + + + +
    + + + +

    Wide style, full width:

    + + + +
    + + + +

    Wide style, align center:

    + + + +
    + + + +

    Dotted style, no alignment:

    + + + +
    + + + +

    Dotted style, wide alignment:

    + + + +
    + + + +

    Dotted style, full width:

    + + + +
    + + + +

    Dotted style, align center:

    + + + +
    + + + +

    Spacer:

    + + + + +]]>
    + + 24 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Media category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-media-category-blocks/ + Fri, 13 Jan 2023 18:02:28 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-media-category-blocks/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Image block:

    + + + +
    dsc20050727_091048_222
    + + + +

    Gallery:

    + + + + + + + +

    Audio:

    + + + +
    + + + +

    Cover:

    + + + +
    Wind Farm
    +

    Write title...

    +
    + + + +
    +

    Fixed background

    +
    + + + +
    +

    Repeated background

    +
    + + + +
    +

    Fixed and Repeated background

    +
    + + + +
    dsc20050727_091048_222
    +

    Duotone

    +
    + + + +
    Rain Ripples
    +

    Top left

    +
    + + + +
    Rain Ripples
    +

    Top center

    +
    + + + +
    Rain Ripples
    +

    Top right

    +
    + + + +
    Rain Ripples
    +

    Center left

    +
    + + + +
    Rain Ripples
    +

    Center right

    +
    + + + +
    Rain Ripples
    +

    Bottom left

    +
    + + + +
    Rain Ripples
    +

    Bottom center

    +
    + + + +
    Rain Ripples
    +

    Bottom right

    +
    + + + + + + + +
    Boardwalk
    +

    This is the Media & Text block with an image on the left.

    +
    + + + +
    Image Alignment 1200x4002
    +

    This is the Media & Text block with a cropped image on the left

    +
    + + + +
    +

    This is the Media & Text block with a video the right.

    +
    + + + +
    +]]>
    + + 21 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Text category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-text-category-blocks/ + Fri, 13 Jan 2023 17:46:19 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-text-category-blocks + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Paragraph

    + + + +

    H1 Heading

    + + + +

    H2 Heading

    + + + +

    H3 Heading

    + + + +

    H4 Heading

    + + + +
    H5 Heading
    + + + +
    H6 Heading
    + + + +
      +
    • List
    • + + + +
    • List
    • +
    + + + +
      +
    1. List
    2. + + + +
    3. List
    4. +
    + + + +
      +
    1. List +
        +
      • List
      • +
      +
    2. +
    + + + +
    +

    Quote block

    +citation
    + + +

    classic block

    + + +
    code block
    + + + +
    Preformatted block
    + + + +

    Pull quote

    Citation
    + + + +
    table celltable cell two
    table cell threetable cell four
    Table caption
    + + + +
    header label oneheader label two
    table celltable cell two
    table cell threetable cell four
    footer label onefooter label two
    Table caption
    + + + +
    Verse block
    +]]>
    + + 8 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + +
    + + Keyboard navigation + https://wpthemetestdata.wordpress.com/2018/10/20/keyboard-navigation/ + Sun, 21 Oct 2018 03:03:48 +0000 + + https://wpthemetestdata.wordpress.com/?p=1724 + + +

    There are many different ways to use the web besides a mouse and a pair of eyes. Users navigate for example with a keyboard only or with their voice.

    + + + +

    All the functionality, including menus, links and forms should work using a keyboard only. This is essential for all assistive technology to work properly. The only way to test this, at the moment, is manually. The best time to test this is during development.

    + + + +

    How to keyboard test:

    + + + +

    Tab through your pages, links and forms to do the following tests:

    + + + +
    • Confirm that all links can be reached and activated via keyboard, including any in dropdown submenus.
    • Confirm that all links get a visible focus indicator (e.g., a border highlight).
    • Confirm that all visually hidden links (e.g. skip links) become visible when in focus.
    • Confirm that all form input fields and buttons can be accessed and used via keyboard.
    • Confirm that all interactions, buttons, and other controls can be triggered via keyboard — any action you can complete with a mouse must also be performable via keyboard.
    • Confirm that focus doesn’t move in unexpected ways around the page.
    • Confirm that using shift+tab to move backwards works as well.
    + + + +

    Resources

    + + + + +]]>
    + + 1724 + + + + + + + 0 + 0 + + + + 0 +
    + + About The Tests + https://wpthemetestdata.wordpress.com/about/ + Mon, 26 Jul 2010 02:40:01 +0000 + themedemos + https://wpthemetestdata.wordpress.com/about/ + + WordPress Theme Development Resources + +
      +
    1. See the WordPress Theme Developer Handbook for examples of best practices.
    2. +
    3. See the WordPress Code Reference for more information about WordPress' functions, classes, methods, and hooks.
    4. +
    5. See Theme Unit Test for a robust test suite for your Theme and get the latest version of the test data you see here.
    6. +
    7. See Releasing Your Theme for a guide to submitting your Theme to the Theme Directory.
    8. +
    ]]>
    + + 2 + 2010-07-25 19:40:01 + 2010-07-26 02:40:01 + closed + closed + about + publish + 0 + 1 + page + + 0 +
    + + Lorem Ipsum + https://wpthemetestdata.wordpress.com/lorem-ipsum/ + Tue, 04 Sep 2007 16:52:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/lorem-ipsum/ + + + + 146 + 2007-09-04 09:52:50 + 2007-09-04 16:52:50 + closed + closed + lorem-ipsum + publish + 0 + 7 + page + + 0 + + + Page with comments + https://wpthemetestdata.wordpress.com/about/page-with-comments/ + Tue, 04 Sep 2007 17:47:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/page-with-comments/ + + + + 155 + 2007-09-04 10:47:47 + 2007-09-04 17:47:47 + open + closed + page-with-comments + publish + 2 + 3 + page + + 0 + + 167 + + anon@example.com + + + 2007-09-04 10:49:28 + 2007-09-04 00:49:28 + + 1 + + 0 + 0 + + + 168 + + tellyworth+test2@example.com + + + 2007-09-04 10:49:03 + 2007-09-04 00:49:03 + + 1 + + 0 + 0 + + + 169 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2007-09-04 10:48:51 + 2007-09-04 17:48:51 + + 1 + + 0 + 0 + + + 1017 + + themereviewteam@gmail.com + + + 2014-12-10 01:56:24 + 2014-12-10 08:56:24 + + 0 + + 168 + 0 + + + + Page with comments disabled + https://wpthemetestdata.wordpress.com/about/page-with-comments-disabled/ + Tue, 04 Sep 2007 17:48:10 +0000 + themedemos + https://wpthemetestdata.wordpress.com/page-with-comments-disabled/ + + + + 156 + 2007-09-04 10:48:10 + 2007-09-04 17:48:10 + closed + closed + page-with-comments-disabled + publish + 2 + 4 + page + + 0 + + + Level 3 + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3/ + Tue, 11 Dec 2007 06:23:16 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-3/ + + + + 172 + 2007-12-11 16:23:16 + 2007-12-11 06:23:16 + closed + closed + level-3 + publish + 173 + 0 + page + + 0 + + + Level 2 + https://wpthemetestdata.wordpress.com/level-1/level-2/ + Tue, 11 Dec 2007 06:23:33 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-2/ + + + + 173 + 2007-12-11 16:23:33 + 2007-12-11 06:23:33 + closed + closed + level-2 + publish + 174 + 0 + page + + 0 + + + Level 1 + https://wpthemetestdata.wordpress.com/level-1/ + Tue, 11 Dec 2007 23:25:40 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-1/ + + + + 174 + 2007-12-11 16:25:40 + 2007-12-11 23:25:40 + closed + closed + level-1 + publish + 0 + 5 + page + + 0 + + + Clearing Floats + https://wpthemetestdata.wordpress.com/about/clearing-floats/ + Sun, 01 Aug 2010 16:42:26 +0000 + themedemos + https://wpthemetestdata.wordpress.com/ + + This is the second page]]> + + 501 + 2010-08-01 09:42:26 + 2010-08-01 16:42:26 + closed + closed + clearing-floats + publish + 2 + 2 + page + + 0 + + + canola2 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/canola2/ + Mon, 16 Jun 2008 13:17:54 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/canola2.jpg + + + + 611 + 2008-06-16 06:17:54 + 2008-06-16 13:17:54 + open + closed + canola2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/canola2.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + dsc20050727_091048_222 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050727_091048_222/ + Mon, 16 Jun 2008 13:20:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050727_091048_222.jpg + + + + 616 + 2008-06-16 06:20:37 + 2008-06-16 13:20:37 + open + closed + dsc20050727_091048_222 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050727_091048_222.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + dsc20050813_115856_52 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050813_115856_52/ + Mon, 16 Jun 2008 13:20:57 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050813_115856_52.jpg + + + + 617 + 2008-06-16 06:20:57 + 2008-06-16 13:20:57 + open + closed + dsc20050813_115856_52 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050813_115856_52.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Front Page + https://wpthemetestdata.wordpress.com/front-page/ + Sat, 21 May 2011 01:49:43 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=701 + + + + 701 + 2011-05-20 18:49:43 + 2011-05-21 01:49:43 + open + closed + front-page + publish + 0 + 0 + page + + 0 + + + a Blog page + https://wpthemetestdata.wordpress.com/blog/ + Sat, 21 May 2011 01:51:43 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=703 + + + + 703 + 2011-05-20 18:51:43 + 2011-05-21 01:51:43 + open + closed + blog + publish + 0 + 0 + page + + 0 + + 1016 + + example@example.com + + + 2014-11-29 21:03:05 + 2014-11-30 04:03:05 + + 0 + + 0 + 0 + + + + Bell on Wharf + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/100_5478/ + Mon, 16 Jun 2008 21:34:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/100_5478.jpg + + + + 754 + 2008-06-16 14:34:50 + 2008-06-16 21:34:50 + open + closed + 100_5478 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/100_5478.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Golden Gate Bridge + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/100_5540/ + Mon, 16 Jun 2008 21:35:55 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/100_5540.jpg + + + + 755 + 2008-06-16 14:35:55 + 2008-06-16 21:35:55 + open + closed + 100_5540 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/100_5540.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sunburst Over River + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/cep00032/ + Mon, 16 Jun 2008 21:41:24 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/cep00032.jpg + + + + 756 + 2008-06-16 14:41:24 + 2008-06-16 21:41:24 + open + closed + cep00032 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/cep00032.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Boardwalk + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dcp_2082/ + Mon, 16 Jun 2008 21:41:27 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dcp_2082.jpg + + + + 757 + 2008-06-16 14:41:27 + 2008-06-16 21:41:27 + open + closed + dcp_2082 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dcp_2082.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Yachtsody in Blue + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc03149/ + Mon, 16 Jun 2008 21:41:33 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc03149.jpg + + + + 758 + 2008-06-16 14:41:33 + 2008-06-16 21:41:33 + open + closed + dsc03149 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc03149.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Rain Ripples + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc04563/ + Mon, 16 Jun 2008 21:41:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc04563.jpg + + + + 759 + 2008-06-16 14:41:37 + 2008-06-16 21:41:37 + open + closed + dsc04563 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc04563.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sydney Harbor Bridge + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc09114/ + Mon, 16 Jun 2008 21:41:41 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc09114.jpg + + + + 760 + 2008-06-16 14:41:41 + 2008-06-16 21:41:41 + open + closed + dsc09114 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc09114.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Wind Farm + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050102_192118_51/ + Mon, 16 Jun 2008 21:41:42 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050102_192118_51.jpg + + + + 761 + 2008-06-16 14:41:42 + 2008-06-16 21:41:42 + open + closed + dsc20050102_192118_51 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050102_192118_51.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Antique Farm Machinery + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20051220_160808_102/ + Mon, 16 Jun 2008 21:41:45 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_160808_102.jpg + + + + 762 + 2008-06-16 14:41:45 + 2008-06-16 21:41:45 + open + closed + dsc20051220_160808_102 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_160808_102.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Rusty Rail + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20051220_173257_119/ + Mon, 16 Jun 20081 21:47:17 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_173257_119.jpg + + + + 764 + 2008-06-16 14:47:17 + 2008-06-16 21:47:17 + open + closed + dsc20051220_173257_119 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_173257_119.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sea and Rocks + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dscn3316/ + Mon, 16 Jun 2008 21:47:20 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dscn3316.jpg + + + + 765 + 2008-06-16 14:47:20 + 2008-06-16 21:47:20 + open + closed + dscn3316 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dscn3316.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Big Sur + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/michelle_049/ + Mon, 16 Jun 2008 21:47:23 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/michelle_049.jpg + + + + 766 + 2008-06-16 14:47:23 + 2008-06-16 21:47:23 + open + closed + michelle_049 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/michelle_049.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Windmill + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dcf-1-0/ + Mon, 16 Jun 2008 21:47:26 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/windmill.jpg + + + + 767 + 2008-06-16 14:47:26 + 2008-06-16 21:47:26 + open + closed + dcf-1-0 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/windmill.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Huatulco Coastline + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/alas-i-have-found-my-shangri-la/ + Mon, 16 Jun 2008 21:49:48 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0513-1.jpg + + + + 768 + 2008-06-16 14:49:48 + 2008-06-16 21:49:48 + open + closed + alas-i-have-found-my-shangri-la + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0513-1.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Brazil Beach + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_0747/ + Mon, 16 Jun 2008 21:50:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0747.jpg + + + + 769 + 2008-06-16 14:50:37 + 2008-06-16 21:50:37 + open + closed + img_0747 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0747.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Huatulco Coastline + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_0767/ + Mon, 16 Jun 2008 21:51:19 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0767.jpg + + + + 770 + 2008-06-16 14:51:19 + 2008-06-16 21:51:19 + open + closed + img_0767 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0767.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Boat Barco Texture + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_8399/ + Mon, 16 Jun 2008 21:51:57 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_8399.jpg + + + + 771 + 2008-06-16 14:51:57 + 2008-06-16 21:51:57 + open + closed + img_8399 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_8399.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Resinous + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20040724_152504_532-2/ + Mon, 04 Jun 2012 18:36:56 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg + + + + 807 + 2012-06-04 11:36:56 + 2012-06-04 18:36:56 + open + closed + dsc20040724_152504_532-2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg + + _attachment_original_parent_id + + + + + St. Louis Blues + https://wpthemetestdata.wordpress.com/2010/07/02/post-format-audio/originaldixielandjazzbandwithalbernard-stlouisblues/ + Mon, 16 Jun 2008 16:49:29 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3 + + + + 821 + 2008-06-16 09:49:29 + 2008-06-16 16:49:29 + open + closed + originaldixielandjazzbandwithalbernard-stlouisblues + inherit + 587 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3 + + + OLYMPUS DIGITAL CAMERA + https://wpthemetestdata.wordpress.com/about/clearing-floats/olympus-digital-camera/ + Thu, 05 Aug 2010 18:07:34 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2010/08/manhattansummer.jpg + + + + 827 + 2010-08-05 11:07:34 + 2010-08-05 18:07:34 + open + closed + olympus-digital-camera + inherit + 501 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2010/08/manhattansummer.jpg + + + Image Alignment 580x300 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-580x300/ + Fri, 15 Mar 2013 00:44:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg + + + + 967 + 2013-03-14 19:44:50 + 2013-03-15 00:44:50 + open + open + image-alignment-580x300 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Image Alignment 150x150 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-150x150/ + Fri, 15 Mar 2013 00:44:49 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg + + + + 968 + 2013-03-14 19:44:49 + 2013-03-15 00:44:49 + open + open + image-alignment-150x150 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Horizontal Featured Image + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-horizontal/featured-image-horizontal-2/ + Fri, 15 Mar 2013 20:40:38 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-horizontal.jpg + + + + 1022 + 2013-03-15 15:40:38 + 2013-03-15 20:40:38 + open + open + featured-image-horizontal-2 + inherit + 1011 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-horizontal.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + I Am Worth Loving Wallpaper + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/soworthloving-wallpaper/ + Thu, 14 Mar 2013 14:58:24 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/soworthloving-wallpaper.jpg + + + + 1023 + 2013-03-14 09:58:24 + 2013-03-14 14:58:24 + open + open + soworthloving-wallpaper + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/soworthloving-wallpaper.jpg + + _wp_attachment_image_alt + + + + + Image Alignment 300x200 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-300x200/ + Fri, 15 Mar 2013 00:44:49 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg + + + + 1025 + 2013-03-14 19:44:49 + 2013-03-15 00:44:49 + open + open + image-alignment-300x200 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Vertical Featured Image + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-vertical/featured-image-vertical-2/ + Fri, 15 Mar 2013 20:41:09 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-vertical.jpg + + + + 1027 + 2013-03-15 15:41:09 + 2013-03-15 20:41:09 + open + open + featured-image-vertical-2 + inherit + 1016 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-vertical.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Image Alignment 1200x4002 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-1200x4002/ + Fri, 15 Mar 2013 00:44:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg + + + + 1029 + 2013-03-14 19:44:50 + 2013-03-15 00:44:50 + open + open + image-alignment-1200x4002 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Unicorn Wallpaper + https://wpthemetestdata.wordpress.com/2010/08/08/post-format-image/unicorn-wallpaper/ + Fri, 14 Dec 2012 03:10:39 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2012/12/unicorn-wallpaper.jpg + + + + 1045 + 2012-12-13 22:10:39 + 2012-12-14 03:10:39 + open + open + unicorn-wallpaper + inherit + 1158 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2012/12/unicorn-wallpaper.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Pages + https://wpthemetestdata.wordpress.com/2013/04/09/pages/ + Tue, 09 Apr 2013 13:37:45 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/pages + + + + 1100 + 2013-04-09 06:37:45 + 2013-04-09 13:37:45 + open + closed + pages + publish + 0 + 2 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Categories + https://wpthemetestdata.wordpress.com/2013/04/09/categories/ + Tue, 09 Apr 2013 13:37:45 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/categories + + + + 1101 + 2013-04-09 06:37:45 + 2013-04-09 13:37:45 + open + closed + categories + publish + 0 + 10 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1112/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1112</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test markup tags and styles.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1112</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1112</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>21</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[4675]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1115/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1115</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test post formats.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1115</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1115</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>24</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[44090582]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1118/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1118</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test unpublished posts.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1118</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1118</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>28</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[54090]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>Depth + https://wpthemetestdata.wordpress.com/2013/04/09/depth/ + Tue, 09 Apr 2013 13:37:46 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/depth + + + + 1119 + 2013-04-09 06:37:46 + 2013-04-09 13:37:46 + open + closed + depth + publish + 0 + 29 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 01 + https://wpthemetestdata.wordpress.com/2013/04/09/level-01/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-01 + + + + 1120 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-01 + publish + 0 + 30 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 02 + https://wpthemetestdata.wordpress.com/2013/04/09/level-02/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-02 + + + + 1121 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-02 + publish + 0 + 31 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 03 + https://wpthemetestdata.wordpress.com/2013/04/09/level-03/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-03 + + + + 1122 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-03 + publish + 0 + 32 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 04 + https://wpthemetestdata.wordpress.com/2013/04/09/level-04/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-04 + + + + 1123 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-04 + publish + 0 + 33 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 05 + https://wpthemetestdata.wordpress.com/2013/04/09/level-05/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-05 + + + + 1124 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-05 + publish + 0 + 34 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 06 + https://wpthemetestdata.wordpress.com/2013/04/09/level-06/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-06 + + + + 1125 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-06 + publish + 0 + 35 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 07 + https://wpthemetestdata.wordpress.com/2013/04/09/level-07/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-07 + + + + 1126 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-07 + publish + 0 + 36 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 08 + https://wpthemetestdata.wordpress.com/2013/04/09/level-08/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-08 + + + + 1127 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-08 + publish + 0 + 37 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 09 + https://wpthemetestdata.wordpress.com/2013/04/09/level-09/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-09 + + + + 1128 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-09 + publish + 0 + 38 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 10 + https://wpthemetestdata.wordpress.com/2013/04/09/level-10/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-10 + + + + 1129 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-10 + publish + 0 + 39 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Advanced + https://wpthemetestdata.wordpress.com/2013/04/09/advanced/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/advanced + + + + 1130 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + advanced + publish + 0 + 40 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu Description + https://wpthemetestdata.wordpress.com/2013/04/09/menu-description/ + Tue, 09 Apr 2013 13:37:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-description + + + + 1142 + 2013-04-09 06:37:50 + 2013-04-09 13:37:50 + open + closed + menu-description + publish + 0 + 44 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu Title Attribute + https://wpthemetestdata.wordpress.com/2013/04/09/menu-title-attribute/ + Tue, 09 Apr 2013 13:37:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-title-attribute + + + + 1143 + 2013-04-09 06:37:50 + 2013-04-09 13:37:50 + open + closed + menu-title-attribute + publish + 0 + 41 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu CSS Class + https://wpthemetestdata.wordpress.com/2013/04/09/menu-css-class/ + Tue, 09 Apr 2013 13:37:51 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-css-class + + + + 1144 + 2013-04-09 06:37:51 + 2013-04-09 13:37:51 + open + closed + menu-css-class + publish + 0 + 42 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + New Window / Tab + https://wpthemetestdata.wordpress.com/2013/04/09/new-window-tab/ + Tue, 09 Apr 2013 13:37:51 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/new-window-tab + + + + 1145 + 2013-04-09 06:37:51 + 2013-04-09 13:37:51 + open + closed + new-window-tab + publish + 0 + 43 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1263/</link> + <pubDate>Tue, 09 Apr 2013 13:38:00 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1263</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1263</wp:post_id> + <wp:post_date>2013-04-09 06:38:00</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:38:00</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1263</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1100]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1264/</link> + <pubDate>Tue, 09 Apr 2013 13:38:01 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1264</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1264</wp:post_id> + <wp:post_date>2013-04-09 06:38:01</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:38:01</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1264</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1100]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>twitter.com + https://wpthemetestdata.wordpress.com/2018/10/20/twitter-com/ + Sun, 21 Oct 2018 02:57:33 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/twitter-com/ + + + + 1719 + + + + + + + 0 + 1 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + facebook.com + https://wpthemetestdata.wordpress.com/2018/10/20/facebook-com/ + Sun, 21 Oct 2018 02:57:35 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/facebook-com/ + + + + 1720 + + + + + + + 0 + 2 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + github.com + https://wpthemetestdata.wordpress.com/2018/10/20/github-com/ + Sun, 21 Oct 2018 02:57:37 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/github-com + + + + 1721 + + + + + + + 0 + 3 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + instagram.com + https://wpthemetestdata.wordpress.com/2018/10/20/instagram-com + Sun, 21 Oct 2018 02:57:41 +000 + themereviewteam> + https://wpthemetestdata.wordpress.com/2018/10/20/instagram-com + + + + 1723 + + + + + + + 0 + 5 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + linkedin.com + https://wpthemetestdata.wordpress.com/2018/10/20/linkedin-com/ + Sun, 21 Oct 2018 02:57:39 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/linkedin-com/ + + + + 1722 + + + + + + + 0 + 4 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + triforce-wallpaper + https://wpthemetestdata.wordpress.com/2010/08/07/post-format-image-caption/triforce-wallpaper/ + Tue, 17 Aug 2010 20:17:31 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2010/08/triforce-wallpaper.jpg + + + + 1628 + 2010-08-17 13:17:31 + 2010-08-17 20:17:31 + open + closed + triforce-wallpaper + inherit + 1163 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2010/08/triforce-wallpaper.jpg + + + + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1636/</link> + <pubDate>Tue, 07 May 2013 19:54:30 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1636</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1636</wp:post_id> + <wp:post_date>2013-05-07 12:54:30</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:30</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1636</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1637/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1637</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1637</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1637</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1638/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1638</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1638</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1638</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1639/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1639</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1639</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1639</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1640/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1640</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1640</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1640</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1641/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1641</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1641</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1641</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1643/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1643</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1643</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1643</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1644/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1644</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1644</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1644</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[701]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1645/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1645</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1645</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1645</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1646/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1646</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1646</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1646</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1647/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1647</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1647</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1647</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1648/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1648</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1648</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1648</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1649/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1649</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1649</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1649</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1650/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1650</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1650</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1650</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1651/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1651</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1651</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1651</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>10</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[174]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1652/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1652</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1652</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1652</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>11</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[173]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1653/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1653</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1653</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1653</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>12</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[172]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1654/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1654</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1654</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1654</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>13</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[746]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1655/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1655</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1655</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1655</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>14</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[748]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1656/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1656</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1656</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1656</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>15</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[742]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1657/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1657</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1657</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1657</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>16</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[744]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1658/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1658</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1658</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1658</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>17</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1659/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1659</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1659</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1659</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>18</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[733]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1660/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1660</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1660</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1660</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>19</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[735]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1643/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1643</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1643</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1643</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1644/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1644</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1644</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1644</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[701]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1645/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1645</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1645</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1645</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1646/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1646</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1646</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1646</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1647/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1647</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1647</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1647</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1648/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1648</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1648</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1648</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1649/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1649</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1649</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1649</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1650/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1650</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1650</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1650</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1651/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1651</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1651</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1651</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>10</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[174]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1652/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1652</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1652</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1652</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>11</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[173]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1653/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1653</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1653</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1653</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>12</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[172]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1654/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1654</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1654</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1654</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>13</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[746]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1655/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1655</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1655</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1655</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>14</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[748]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1656/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1656</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1656</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1656</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>15</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[742]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1657/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1657</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1657</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1657</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>16</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[744]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1658/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1658</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1658</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1658</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>17</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1659/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1659</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1659</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1659</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>18</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[733]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1660/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1660</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1660</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1660</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>19</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[735]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>dsc20040724_152504_532 + https://wpthemetestdata.wordpress.com/?attachment_id=1686 + Wed, 18 Sep 2013 21:37:05 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20040724_152504_532.jpg + + + + 1686 + 2013-09-18 14:37:05 + 2013-09-18 21:37:05 + open + closed + dsc20040724_152504_532 + inherit + 0 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20040724_152504_532.jpg + + + dsc20050604_133440_34211 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050604_133440_34211/ + Wed, 18 Sep 2013 21:37:07 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20050604_133440_34211.jpg + + + + 1687 + 2013-09-18 14:37:07 + 2013-09-18 21:37:07 + open + closed + dsc20050604_133440_34211 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20050604_133440_34211.jpg + + + 2014-slider-mobile-behavior + https://wpthemetestdata.wordpress.com/?attachment_id=1690 + Wed, 04 Dec 2013 18:08:29 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/12/2014-slider-mobile-behavior.mov + + + + 1690 + 2013-12-04 11:08:29 + 2013-12-04 18:08:29 + open + closed + 2014-slider-mobile-behavior + inherit + 0 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/12/2014-slider-mobile-behavior.mov + + + dsc20050315_145007_132 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050315_145007_132-2/ + Sun, 05 Jan 2014 18:45:21 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2014/01/dsc20050315_145007_132.jpg + + + + 1691 + 2014-01-05 11:45:21 + 2014-01-05 18:45:21 + open + closed + dsc20050315_145007_132-2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2014/01/dsc20050315_145007_132.jpg + + + spectacles + https://wpthemetestdata.wordpress.com/about/clearing-floats/spectacles-2/ + Sun, 05 Jan 2014 18:45:36 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2014/01/spectacles.gif + + + + 1692 + 2014-01-05 11:45:36 + 2014-01-05 18:45:36 + open + closed + spectacles-2 + inherit + 501 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2014/01/spectacles.gif + + + Post Format: Standard + https://wpthemetestdata.wordpress.com/2010/10/05/post-format-standard/ + Tue, 05 Oct 2010 07:27:25 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=358 + + + +Mrs. Darling first heard of Peter when she was tidying up her children's minds. It is the nightly custom of every good mother after her children are asleep to rummage in their minds and put things straight for next morning, repacking into their proper places the many articles that have wandered during the day. + +If you could keep awake (but of course you can't) you would see your own mother doing this, and you would find it very interesting to watch her. It is quite like tidying up drawers. You would see her on her knees, I expect, lingering humorously over some of your contents, wondering where on earth you had picked this thing up, making discoveries sweet and not so sweet, pressing this to her cheek as if it were as nice as a kitten, and hurriedly stowing that out of sight. When you wake in the morning, the naughtiness and evil passions with which you went to bed have been folded up small and placed at the bottom of your mind and on the top, beautifully aired, are spread out your prettier thoughts, ready for you to put on. + +I don't know whether you have ever seen a map of a person's mind. Doctors sometimes draw maps of other parts of you, and your own map can become intensely interesting, but catch them trying to draw a map of a child's mind, which is not only confused, but keeps going round all the time. There are zigzag lines on it, just like your temperature on a card, and these are probably roads in the island, for the Neverland is always more or less an island, with astonishing splashes of colour here and there, and coral reefs and rakish-looking craft in the offing, and savages and lonely lairs, and gnomes who are mostly tailors, and caves through which a river runs, and princes with six elder brothers, and a hut fast going to decay, and one very small old lady with a hooked nose. It would be an easy map if that were all, but there is also first day at school, religion, fathers, the round pond, needle-work, murders, hangings, verbs that take the dative, chocolate pudding day, getting into braces, say ninety-nine, three-pence for pulling out your tooth yourself, and so on, and either these are part of the island or they are another map showing through, and it is all rather confusing, especially as nothing will stand still. + +Of course the Neverlands vary a good deal. John's, for instance, had a lagoon with flamingoes flying over it at which John was shooting, while Michael, who was very small, had a flamingo with lagoons flying over it. John lived in a boat turned upside down on the sands, Michael in a wigwam, Wendy in a house of leaves deftly sewn together. John had no friends, Michael had friends at night, Wendy had a pet wolf forsaken by its parents, but on the whole the Neverlands have a family resemblance, and if they stood still in a row you could say of them that they have each other's nose, and so forth. On these magic shores children at play are for ever beaching their coracles [simple boat]. We too have been there; we can still hear the sound of the surf, though we shall land no more. + +Of all delectable islands the Neverland is the snuggest and most compact, not large and sprawly, you know, with tedious distances between one adventure and another, but nicely crammed. When you play at it by day with the chairs and table-cloth, it is not in the least alarming, but in the two minutes before you go to sleep it becomes very real. That is why there are night-lights. + +Occasionally in her travels through her children's minds Mrs. Darling found things she could not understand, and of these quite the most perplexing was the word Peter. She knew of no Peter, and yet he was here and there in John and Michael's minds, while Wendy's began to be scrawled all over with him. The name stood out in bolder letters than any of the other words, and as Mrs. Darling gazed she felt that it had an oddly cocky appearance.]]> + + 358 + 2010-10-05 00:27:25 + 2010-10-05 07:27:25 + closed + closed + post-format-standard + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Gallery + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/ + Fri, 10 Sep 2010 14:24:14 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=555 + + + +You can use this page to test the Theme's handling of the gallery shortcode, including the columns parameter, from 1 to 9 columns. Themes are only required to support the default setting (3 columns), so this page is entirely optional. +

    One Column

    +[gallery columns="1"] +

    Two Columns

    +[gallery columns="2"] +

    Three Columns

    +[gallery columns="3"] +

    Four Columns

    +[gallery columns="4"] +

    Five Columns

    +[gallery columns="5"] +

    Six Columns

    +[gallery columns="6"] +

    Seven Columns

    +[gallery columns="7"] +

    Eight Columns

    +[gallery columns="8"] +

    Nine Columns

    +[gallery columns="9"]]]>
    + + 555 + 2010-09-10 07:24:14 + 2010-09-10 14:24:14 + closed + closed + post-format-gallery + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Post Format: Aside + https://wpthemetestdata.wordpress.com/2010/05/09/post-format-aside/ + Sun, 09 May 2010 14:51:54 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=559 + + + + 559 + 2010-05-09 07:51:54 + 2010-05-09 14:51:54 + closed + closed + post-format-aside + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Chat + https://wpthemetestdata.wordpress.com/2010/01/08/post-format-chat/ + Fri, 08 Jan 2010 14:59:31 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=562 + + + + 562 + 2010-01-08 07:59:31 + 2010-01-08 14:59:31 + closed + closed + post-format-chat + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Link + https://wpthemetestdata.wordpress.com/2010/03/07/post-format-link/ + Sun, 07 Mar 2010 15:06:53 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=565 + + The WordPress Theme Review Team Website]]> + + 565 + 2010-03-07 08:06:53 + 2010-03-07 15:06:53 + closed + closed + post-format-link + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Image (Linked) + https://wpthemetestdata.wordpress.com/2010/08/06/post-format-image-linked/ + Fri, 06 Aug 2010 15:09:39 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=568 + + chunk of resinous blackboy husk[/caption] +]]> + + 568 + 2010-08-06 08:09:39 + 2010-08-06 15:09:39 + closed + closed + post-format-image-linked + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Quote + https://wpthemetestdata.wordpress.com/2010/02/05/post-format-quote/ + Fri, 05 Feb 2010 15:13:15 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=575 + + Only one thing is impossible for God: To find any sense in any copyright law on the planet. +Mark Twain]]> + + 575 + 2010-02-05 08:13:15 + 2010-02-05 15:13:15 + closed + closed + post-format-quote + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Status + https://wpthemetestdata.wordpress.com/2010/04/04/post-format-status/ + Sun, 04 Apr 2010 15:21:24 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=579 + + + + 579 + 2010-04-04 08:21:24 + 2010-04-04 15:21:24 + closed + closed + post-format-status + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Video (WordPress.tv) + https://wpthemetestdata.wordpress.com/2010/06/03/post-format-video-wordpresstv/ + Thu, 03 Jun 2010 15:25:58 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=582 + + instructions in the Codex.]]> + + 582 + 2010-06-03 08:25:58 + 2010-06-03 15:25:58 + closed + closed + post-format-video-wordpresstv + publish + 0 + 0 + post + + 0 + + + + + + + + + _oembed_4321638fc1a6fee26443f7fe8a70a871 + ]]> + + + _oembed_29351fff85c1be1d1e9a965a0332a861 + ]]> + + + _oembed_9fcc86d7d9398ff736577f922307f64d + ]]> + + + _oembed_366237792d32461d0052efb2edec37f5 + ]]> + + + _oembed_37fdfe862c13c46a93be2921279bf675 + ]]> + + + + Post Format: Audio + https://wpthemetestdata.wordpress.com/2010/07/02/post-format-audio/ + Fri, 02 Jul 2010 15:36:44 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=587 + + St. Louis Blues + +Audio shortcode: + +[audio https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3]]]> + + 587 + 2010-07-02 08:36:44 + 2010-07-02 15:36:44 + closed + closed + post-format-audio + publish + 0 + 0 + post + + 0 + + + + + + + + enclosure + + + + + Page A + https://wpthemetestdata.wordpress.com/page-a/ + Fri, 24 Jun 2011 01:38:52 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=733 + + + + 733 + 2011-06-23 18:38:52 + 2011-06-24 01:38:52 + open + closed + page-a + publish + 0 + 10 + page + + 0 + + + Page B + https://wpthemetestdata.wordpress.com/page-b/ + Fri, 24 Jun 2011 01:39:14 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=735 + + + + 735 + 2011-06-23 18:39:14 + 2011-06-24 01:39:14 + open + closed + page-b + publish + 0 + 11 + page + + 0 + + + Level 2a + https://wpthemetestdata.wordpress.com/level-1/level-2a/ + Fri, 24 Jun 2011 02:03:33 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=742 + + + + 742 + 2011-06-23 19:03:33 + 2011-06-24 02:03:33 + open + closed + level-2a + publish + 174 + 0 + page + + 0 + + + Level 2b + https://wpthemetestdata.wordpress.com/level-1/level-2b/ + Fri, 24 Jun 2011 02:04:03 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=744 + + + + 744 + 2011-06-23 19:04:03 + 2011-06-24 02:04:03 + open + closed + level-2b + publish + 174 + 0 + page + + 0 + + + Level 3a + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3a/ + Fri, 24 Jun 2011 02:04:24 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=746 + + + + 746 + 2011-06-23 19:04:24 + 2011-06-24 02:04:24 + open + closed + level-3a + publish + 173 + 0 + page + + 0 + + + Level 3b + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3b/ + Fri, 24 Jun 2011 02:04:46 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=748 + + + + 748 + 2011-06-23 19:04:46 + 2011-06-24 02:04:46 + open + closed + level-3b + publish + 173 + 0 + page + + 0 + + + Template: Excerpt (Defined) + https://wpthemetestdata.wordpress.com/2012/03/15/template-excerpt-defined/ + Thu, 15 Mar 2012 21:38:08 +0000 + themedemos + http://wptest.io/demo/?p=993 + + should be displayed in place of the user-defined excerpt in single-page views.]]> + should be displayed in place of the post content in archive-index pages. It can be longer than the automatically generated excerpts, and can have HTML tags.]]> + 993 + 2012-03-15 14:38:08 + 2012-03-15 21:38:08 + closed + closed + template-excerpt-defined + publish + 0 + 0 + post + + 0 + + + + + + + + + Template: More Tag + https://wpthemetestdata.wordpress.com/2012/03/15/template-more-tag/ + Thu, 15 Mar 2012 21:41:11 +0000 + themedemos + http://wptest.io/demo/?p=996 + + more tag. + +Right after this sentence should be a "continue reading" button of some sort on list pages of themes that show full content. It won't show on single pages or on themes showing excerpts. + + + +And this content is after the more tag. (which should be the anchor link for when the button is clicked)]]> + + 996 + 2012-03-15 14:41:11 + 2012-03-15 21:41:11 + closed + closed + template-more-tag + publish + 0 + 0 + post + + 0 + + + + + + + + + Edge Case: Nested And Mixed Lists + https://wpthemetestdata.wordpress.com/2009/05/15/edge-case-nested-and-mixed-lists/ + Fri, 15 May 2009 21:48:32 +0000 + themedemos + http://wptest.io/demo/?p=1000 + + +
  • Lists within lists do not break the ordered list numbering order
  • +
  • Your list styles go deep enough.
  • + +

    Ordered - Unordered - Ordered

    +
      +
    1. ordered item
    2. +
    3. ordered item +
        +
      • unordered
      • +
      • unordered +
          +
        1. ordered item
        2. +
        3. ordered item
        4. +
        +
      • +
      +
    4. +
    5. ordered item
    6. +
    7. ordered item
    8. +
    +

    Ordered - Unordered - Unordered

    +
      +
    1. ordered item
    2. +
    3. ordered item +
        +
      • unordered
      • +
      • unordered +
          +
        • unordered item
        • +
        • unordered item
        • +
        +
      • +
      +
    4. +
    5. ordered item
    6. +
    7. ordered item
    8. +
    +

    Unordered - Ordered - Unordered

    +
      +
    • unordered item
    • +
    • unordered item +
        +
      1. ordered
      2. +
      3. ordered +
          +
        • unordered item
        • +
        • unordered item
        • +
        +
      4. +
      +
    • +
    • unordered item
    • +
    • unordered item
    • +
    +

    Unordered - Unordered - Ordered

    +
      +
    • unordered item
    • +
    • unordered item +
        +
      • unordered
      • +
      • unordered +
          +
        1. ordered item
        2. +
        3. ordered item
        4. +
        +
      • +
      +
    • +
    • unordered item
    • +
    • unordered item
    • +
    ]]>
    + + 1000 + 2009-05-15 14:48:32 + 2009-05-15 21:48:32 + closed + closed + edge-case-nested-and-mixed-lists + publish + 0 + 0 + post + + 0 + + + + + + + +
    + + Template: Featured Image (Horizontal) + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-horizontal/ + Thu, 15 Mar 2012 22:15:12 +0000 + themedemos + http://wptest.io/demo/?p=1011 + + featured image, if the theme supports it. + +Non-square images can provide some unique styling issues. + +This post tests a horizontal featured image.]]> + + 1011 + 2012-03-15 15:15:12 + 2012-03-15 22:15:12 + closed + closed + template-featured-image-horizontal + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + + + + Template: Featured Image (Vertical) + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-vertical/ + Thu, 15 Mar 2012 22:36:32 +0000 + themedemos + http://wptest.io/demo/?p=1016 + + featured image, if the theme supports it. + +Non-square images can provide some unique styling issues. + +This post tests a vertical featured image.]]> + + 1016 + 2012-03-15 15:36:32 + 2012-03-15 22:36:32 + closed + closed + template-featured-image-vertical + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + + + + Post Format: Gallery (Tiled) + https://wpthemetestdata.wordpress.com/2010/09/09/post-format-gallery-tiled/ + Fri, 10 Sep 2010 00:23:27 +0000 + themedemos + http://wptest.io/demo/?p=1031 + + Jetpack to test. + +[gallery type="rectangular" columns="4" ids="755,757,758,760,766,763" orderby="rand"] + +This is some text after the Tiled Gallery just to make sure that everything spaces nicely.]]> + + 1031 + 2010-09-09 17:23:27 + 2010-09-10 00:23:27 + closed + closed + post-format-gallery-tiled + publish + 0 + 0 + post + + 0 + + + + + + + + + + + Page Image Alignment + https://wpthemetestdata.wordpress.com/about/page-image-alignment/ + Fri, 15 Mar 2013 23:19:23 +0000 + themedemos + http://wptest.io/demo/?page_id=1080 + + None, Left, Right, and Center. In addition, they also get the options of Thumbnail, Medium, Large & Fullsize. Be sure to try this page in RTL mode and it should look the same as LTR. +

    Image Alignment 580x300

    +The image above happens to be centered. + +Image Alignment 150x150 The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see there should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +Image Alignment 1200x400 + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 1200x400 + +And we try the large image again, with the center alignment since that sometimes is a problem. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 300x200 + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And just when you thought we were done, we're going to do them all over again with captions! + +[caption id="attachment_906" align="aligncenter" width="580"]Image Alignment 580x300 Look at 580x300 getting some caption love.[/caption] + +The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky. + +[caption id="attachment_904" align="alignleft" width="150"]Image Alignment 150x150 Bigger caption than the image usually is.[/caption] + +The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +[caption id="attachment_907" align="alignnone" width="1200"]Image Alignment 1200x400 Comment for massive image for your eyeballs.[/caption] + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. +[caption id="attachment_907" align="aligncenter" width="1200"]Image Alignment 1200x400 This massive image is centered.[/caption] + +And again with the big image centered. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +[caption id="attachment_905" align="alignright" width="300"]Image Alignment 300x200 Feels good to be right all the time.[/caption] + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! Last thing is a small image aligned right. Whatever follows should be unaffected. Image Alignment 150x150]]>
    + + 1133 + 2013-03-15 18:19:23 + 2013-03-15 23:19:23 + open + open + page-image-alignment + publish + 2 + 0 + page + + 0 +
    + + Page Markup And Formatting + https://wpthemetestdata.wordpress.com/about/page-markup-and-formatting/ + Fri, 15 Mar 2013 23:20:05 +0000 + themedemos + http://wptest.io/demo/?page_id=1083 + + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    Jane$1Because that's all Steve Jobs needed for a salary.
    John$100KFor all the blogging he does.
    Jane$100MPictures are worth a thousand words, right? So Tom x 1,000.
    Jane$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    + Robert Frost
    +
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +This tag shows strike-through text. + +Small Tag + +This tag shows smaller text. + +Strong Tag + +This tag shows bold text. + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +This rarely used tag emulates teletype text, which is usually styled like the <code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +This tag shows underlined text. + +Variable Tag + +This allows you to denote variables.]]>
    + + 1134 + 2013-03-15 18:20:05 + 2013-03-15 23:20:05 + open + open + page-markup-and-formatting + publish + 2 + 0 + page + + 0 +
    + + Template: Comments + https://wpthemetestdata.wordpress.com/2012/01/03/template-comments/ + Tue, 03 Jan 2012 17:11:37 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/comment-test/ + + +
  • Threaded comments up to 10 levels deep
  • +
  • Paginated comments (set Settings > Discussion > Break comments into pages to 5 top level comments per page)
  • +
  • Comment markup / formatting
  • +
  • Comment images
  • +
  • Comment videos
  • +
  • Author comments
  • +
  • Gravatars and default fallbacks
  • +]]>
    + + 1148 + 2012-01-03 10:11:37 + 2012-01-03 17:11:37 + open + closed + template-comments + publish + 0 + 0 + post + + 0 + + + + + + + 881 + + example@example.org + http://example.org/ + + 2012-09-03 10:18:04 + 2012-09-03 17:18:04 + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    John Saddington$1Because that's all Steve Job' needed for a salary.
    Tom McFarlin$100KFor all the blogging he does.
    Jared Erickson$100MPictures are worth a thousand words, right? So Tom x 1,000.
    Chris Ames$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    + +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    +Robert Frost
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    + +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up.]]>
    + 1 + + 0 + 0 +
    + + 899 + + fake@example.com + + + 2013-03-11 23:45:54 + 2013-03-12 04:45:54 + Gravatar associated with it. + They did not speify a website, so there should be no link to it in the comment. +]]> + 1 + + 0 + 0 + + + 900 + + example@example.org + http://example.org/ + + 2013-03-12 13:17:35 + 2013-03-12 20:17:35 + + 1 + + 0 + 0 + + + 901 + + example@example.org + http://example.org + + 2013-03-14 07:53:26 + 2013-03-14 14:53:26 + + 1 + + 0 + 0 + + + 903 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 07:56:46 + 2013-03-14 14:56:46 + + 1 + + 0 + 24783058 + + + 904 + + example@example.org + http://example.org/ + + 2013-03-14 07:57:01 + 2013-03-14 14:57:01 + + 1 + + 0 + 0 + + + 905 + + example@example.org + http://example.org/ + + 2013-03-14 08:01:21 + 2013-03-14 15:01:21 + + 1 + + 904 + 0 + + + 906 + + example@example.org + http://example.org/ + + 2013-03-14 08:02:06 + 2013-03-14 15:02:06 + + 1 + + 905 + 0 + + + 907 + + example@example.org + http://example.org/ + + 2013-03-14 08:03:22 + 2013-03-14 15:03:22 + + 1 + + 906 + 0 + + + 910 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 08:10:29 + 2013-03-14 15:10:29 + + 1 + + 907 + 24783058 + + + 911 + + example@example.org + http://example.org/ + + 2013-03-14 08:12:16 + 2013-03-14 15:12:16 + + 1 + + 910 + 0 + + + 912 + + example@example.org + http://example.org/ + + 2013-03-14 08:12:58 + 2013-03-14 15:12:58 + + 1 + + 911 + 0 + + + 913 + + example@example.org + http://example.org/ + + 2013-03-14 08:13:42 + 2013-03-14 15:13:42 + + 1 + + 912 + 0 + + + 914 + + example@example.org + http://example.org/ + + 2013-03-14 08:14:13 + 2013-03-14 15:14:13 + + 1 + + 913 + 0 + + + 915 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 08:14:47 + 2013-03-14 15:14:47 + + 1 + + 914 + 24783058 + + + 917 + + example@example.org + http://example.org/ + + 2013-03-14 09:56:43 + 2013-03-14 16:56:43 + + If the image imports... + ]]> + 1 + + 0 + 0 + + + 918 + + example@example.org + http://example.org/ + + 2013-03-14 11:23:24 + 2013-03-14 18:23:24 + + 1 + + 0 + 0 + + + 919 + + example@example.org + http://example.org/ + + 2013-03-14 11:27:54 + 2013-03-14 18:27:54 + + 1 + + 0 + 0 + + + 920 + + example@example.org + http://example.org/ + + 2013-03-14 11:30:33 + 2013-03-14 18:30:33 + + 1 + + 0 + 24783058 + + + 1015 + + auser@example.com + + + 2014-09-29 02:52:15 + 2014-09-29 09:52:15 + + 0 + + 0 + 0 + +
    + + Template: Pingbacks And Trackbacks + https://wpthemetestdata.wordpress.com/2012/01/01/template-pingbacks-an-trackbacks/ + Sun, 01 Jan 2012 17:17:18 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/many-trackbacks/ + + +
  • Above the comments
  • +
  • Below the comments
  • +
  • Included within the normal flow of comments
  • +]]>
    + + 1149 + 2012-01-01 10:17:18 + 2012-01-01 17:17:18 + closed + closed + template-pingbacks-an-trackbacks + publish + 0 + 0 + post + + 0 + + + + + + + + + 921 + + + http://tellyworth.wordpress.com/2007/11/21/ping-1/ + + 2007-11-21 11:31:12 + 2007-11-21 01:31:12 + + 1 + trackback + 0 + 0 + + + 922 + + + http://tellyworth.wordpress.com/2007/11/21/ping-2-with-a-much-longer-title-than-the-previous-ping-which-was-called-ping-1/ + + 2007-11-21 11:35:47 + 2007-11-21 01:35:47 + + 1 + trackback + 0 + 0 + + + 923 + + + http://tellyworth.wordpress.com/2007/11/21/ping-4/ + + 2007-11-21 11:39:25 + 2007-11-21 01:39:25 + + 1 + pingback + 0 + 0 + + + 924 + + + http://tellyworth.wordpress.com/2007/11/21/ping-3/ + + 2007-11-21 11:38:22 + 2007-11-21 01:38:22 + + 1 + pingback + 0 + 0 + + + 925 + + example@example.org + http://example.org/ + + 2010-06-11 15:27:04 + 2010-06-11 22:27:04 + + 1 + + 0 + 0 + +
    + + Template: Comments Disabled + https://wpthemetestdata.wordpress.com/2012/01/02/template-comments-disabled/ + Mon, 02 Jan 2012 17:21:15 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/no-comments/ + + should display pingbacks and trackbacks.]]> + + 1150 + 2012-01-02 10:21:15 + 2012-01-02 17:21:15 + closed + closed + template-comments-disabled + publish + 0 + 0 + post + + 0 + + + + + + + + Edge Case: Many Tags + https://wpthemetestdata.wordpress.com/2009/06/01/edge-case-many-tags/ + Mon, 01 Jun 2009 08:00:34 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/11/24/many-tags/ + + + + 1151 + 2009-06-01 01:00:34 + 2009-06-01 08:00:34 + closed + closed + edge-case-many-tags + publish + 0 + 0 + post + + 0' + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Edge Case: Many Categories + https://wpthemetestdata.wordpress.com/2009/07/02/edge-case-many-categories/ + Thu, 02 Jul 2009 09:00:03 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/11/24/many-categories/ + + + + 1152 + 2009-07-02 02:00:03 + 2009-07-02 09:00:03 + closed + closed + edge-case-many-categories + publish + 0 + 0 + post + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Scheduled + https://wpthemetestdata.wordpress.com/2020/01/01/scheduled/ + Wed, 01 Jan 2030 19:00:18 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=418 + + + + 1153 + 2030-01-01 12:00:18 + 2030-01-01 19:00:18 + closed + closed + scheduled + future + 0 + 0 + post + + 0 + + + + + + Post Format: Image + https://wpthemetestdata.wordpress.com/2010/08/08/post-format-image/ + Sun, 08 Aug 2010 12:00:39 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=568 + +
      + +]]>
    + + 1158 + 2010-08-08 05:00:39 + 2010-08-08 12:00:39 + closed + closed + post-format-image + publish + 0 + 0 + post + + 0 + + + + + +
    + + Post Format: Video (YouTube) + https://wpthemetestdata.wordpress.com/2010/06/02/post-format-video-youtube/ + Wed, 02 Jun 2010 09:00:58 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=582 + + WordPress Embeds.]]> + + 1161 + 2010-06-02 02:00:58 + 2010-06-02 09:00:58 + closed + closed + post-format-video-youtube + publish + 0 + 0 + post + + 0 + + + + + + + Post Format: Image (Caption) + https://wpthemetestdata.wordpress.com/2010/08/07/post-format-image-caption/ + Sat, 07 Aug 2010 13:00:19 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=674 + + Bell on Wharf Bell on wharf in San Francisco[/caption]]]> + + 1163 + 2010-08-07 06:00:19 + 2010-08-07 13:00:19 + closed + closed + post-format-image-caption + publish + 0 + 0 + post + + 0 + + + + + + + + _thumbnail_id + + + + + Draft + https://wpthemetestdata.wordpress.com/?p=1164 + Tue, 09 Apr 2013 18:20:39 +0000 + themedemos + http://wptest.io/demo/?p=922 + + + + 1164 + 2013-04-09 11:20:39 + 2013-04-09 18:20:39 + closed + closed + + draft + 0 + 0 + post + + 0 + + + + + + Template: Password Protected (the password is "enter") + https://wpthemetestdata.wordpress.com/2012/01/04/template-password-protected/ + Wed, 04 Jan 2012 16:38:05 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/test-with-secret-password/ + + + + 1168 + 2012-01-04 09:38:05 + 2012-01-04 16:38:05 + closed + closed + template-password-protected + publish + 0 + 0 + post + enter + 0 + + + + + + + 926 + + example@example.org + http://example.org/ + + 2013-03-14 11:56:08 + 2013-03-14 18:56:08 + + 1 + + 0 + 0 + + + + + <link>https://wpthemetestdata.wordpress.com/2009/09/05/edge-case-no-title/</link> + <pubDate>Sat, 05 Sep 2009 16:00:23 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2007/09/04/14/</guid> + <description/> + <content:encoded><![CDATA[This post has no title, but it still must link to the single post view somehow. + +This is typically done by placing the permalink on the post date.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1169</wp:post_id> + <wp:post_date>2009-09-05 09:00:23</wp:post_date> + <wp:post_date_gmt>2009-09-05 16:00:23</wp:post_date_gmt> + <wp:comment_status>closed</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>edge-case-no-title</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>0</wp:menu_order> + <wp:post_type>post</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="category" nicename="classic"><![CDATA[Classic]]></category> + <category domain="post_tag" nicename="edge-case"><![CDATA[edge case]]></category> + <category domain="category" nicename="edge-case-2"><![CDATA[Edge Case]]></category> + <category domain="post_tag" nicename="layout"><![CDATA[layout]]></category> + <category domain="post_tag" nicename="title"><![CDATA[title]]></category> +</item> +<item> + <title>Edge Case: No Content + https://wpthemetestdata.wordpress.com/2009/08/06/edge-case-no-content/ + Thu, 06 Aug 2009 16:39:56 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/this-post-has-no-body/ + + + + 1170 + 2009-08-06 09:39:56 + 2009-08-06 16:39:56 + closed + closed + edge-case-no-content + publish + 0 + 0 + post + + 0 + + + + + + + 927 + + example@example.org + http://example.org/ + + 2013-03-14 12:35:07 + 2013-03-14 19:35:07 + + 1 + + 0 + 0 + + + + Template: Paginated + https://wpthemetestdata.wordpress.com/2012/01/08/template-paginated/ + Sun, 08 Jan 2012 17:00:20 +0000 + themedemos + https://noeltest.wordpress.com/?p=188 + + + +Post Page 2 + + + +Post Page 3]]> + + 1171 + 2012-01-08 10:00:20 + 2012-01-08 17:00:20 + closed + closed + template-paginated + publish + 0 + 0 + post + + 0 + + + + + + + + + <![CDATA[Markup: Title <em>With</em> <b>Mark<sup>up</sup></b>]]> + https://wpthemetestdata.wordpress.com/2013/01/05/markup-title-with-markup/ + Sat, 05 Jan 2013 17:00:49 +0000 + themedemos + http://wptest.io/demo/?p=861 + + +
  • The post title renders the word "with" in italics and the word "markup" in bold (and "up" is superscript).
  • +
  • The post title markup should be removed from the browser window / tab.
  • +]]>
    + + 1173 + 2013-01-05 10:00:49 + 2013-01-05 17:00:49 + closed + closed + markup-title-with-markup + publish + 0 + 0 + post + + 0 + + + + + +
    + + Markup: Title With Special Characters ~`!@#$%^&*()-_=+{}[]/\;:'"?,.> + https://wpthemetestdata.wordpress.com/2013/01/05/title-with-special-characters/ + Sat, 05 Jan 2013 18:00:20 +0000 + themedemos + http://wptest.io/demo/?p=867 + + Latin Character Tests +This is a test to see if the fonts used in this theme support basic Latin characters. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    !"#$%&'()*
    +,-./01234
    56789:;>=<
    ?@ABCDEFGH
    IJKLMNOPQR
    STUVWXYZ[\
    ]^_`abcdef
    ghijklmnop
    qrstuvwxyz
    {|}~
    ]]>
    + + 1174 + 2013-01-05 11:00:20 + 2013-01-05 18:00:20 + closed + closed + title-with-special-characters + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Taumatawhakatangihangakoauauotamateaturipukakapikimaungahoronukupokaiwhenuakitanatahu + https://wpthemetestdata.wordpress.com/2009/10/05/title-should-not-overflow-the-content-area/ + Mon, 05 Oct 2009 19:00:59 +0000 + themedemos + http://wptest.io/demo/?p=877 + + Title should not overflow the content area + +A few things to check for: +
      +
    • Non-breaking text in the title, content, and comments should have no adverse effects on layout or functionality.
    • +
    • Check the browser window / tab title.
    • +
    • If you are a plugin or widget developer, check that this text does not break anything.
    • +
    + +The following CSS properties will help you support non-breaking text. + +
    -ms-word-wrap: break-word;
    +word-wrap: break-word;
    + ]]>
    + + 1175 + 2009-10-05 12:00:59 + 2009-10-05 19:00:59 + closed + closed + title-should-not-overflow-the-content-area + publish + 0 + 0 + post + + 0 + + + + + + + + +
    + + Markup: Text Alignment + https://wpthemetestdata.wordpress.com/2013/01/09/markup-text-alignment/ + Wed, 09 Jan 2013 16:00:39 +0000 + themedemos + http://wptest.io/demo/?p=895 + + Default +This is a paragraph. It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love. Completely neutral and not picking a side or sitting on the fence. It just is. It just freaking is. It likes where it is. It does not feel compelled to pick a side. Leave him be. It will just be better that way. Trust me. +

    Left Align

    +

    This is a paragraph. It is left aligned. Because of this, it is a bit more liberal in it's views. It's favorite color is green. Left align tends to be more eco-friendly, but it provides no concrete evidence that it really is. Even though it likes share the wealth evenly, it leaves the equal distribution up to justified alignment.

    + +

    Center Align

    +

    This is a paragraph. It is center aligned. Center is, but nature, a fence sitter. A flip flopper. It has a difficult time making up its mind. It wants to pick a side. Really, it does. It has the best intentions, but it tends to complicate matters more than help. The best you can do is try to win it over and hope for the best. I hear center align does take bribes.

    + +

    Right Align

    +

    This is a paragraph. It is right aligned. It is a bit more conservative in it's views. It's prefers to not be told what to do or how to do it. Right align totally owns a slew of guns and loves to head to the range for some practice. Which is cool and all. I mean, it's a pretty good shot from at least four or five football fields away. Dead on. So boss.

    + +

    Justify Align

    +

    This is a paragraph. It is justify aligned. It gets really mad when people associate it with Justin Timberlake. Typically, justified is pretty straight laced. It likes everything to be in it's place and not all cattywampus like the rest of the aligns. I am not saying that makes it better than the rest of the aligns, but it does tend to put off more of an elitist attitude.

    ]]>
    + + 1176 + 2013-01-09 09:00:39 + 2013-01-09 16:00:39 + closed + closed + markup-text-alignment + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Markup: Image Alignment + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/ + Fri, 11 Jan 2013 03:15:40 +0000 + themedemos + http://wptest.io/demo/?p=903 + + None, Left, Right, and Center. In addition, they also get the options of Thumbnail, Medium, Large & Fullsize. Be sure to try this page in RTL mode and it should look the same as LTR. +

    Image Alignment 580x300

    +The image above happens to be centered. + +Image Alignment 150x150 The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +Image Alignment 1200x400 + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 1200x400 + +And we try the large image again, with the center alignment since that sometimes is a problem. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 300x200 + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And just when you thought we were done, we're going to do them all over again with captions! + +[caption id="attachment_906" align="aligncenter" width="580"]Image Alignment 580x300 Look at 580x300 getting some caption love.[/caption] + +The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky. + +[caption id="attachment_904" align="alignleft" width="150"]Image Alignment 150x150 Bigger caption than the image usually is.[/caption] + +The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +[caption id="attachment_907" align="alignnone" width="1200"]Image Alignment 1200x400 Comment for massive image for your eyeballs.[/caption] + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. +[caption id="attachment_907" align="aligncenter" width="1200"]Image Alignment 1200x400 This massive image is centered.[/caption] + +And again with the big image centered. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +[caption id="attachment_905" align="alignright" width="300"]Image Alignment 300x200 Feels good to be right all the time.[/caption] + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! One last thing: The last item in this post's content is a thumbnail floated right. Make sure any elements after the content are clearing properly. + +]]>
    + + 1177 + 2013-01-10 20:15:40 + 2013-01-11 03:15:40 + closed + closed + markup-image-alignment + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + +
    + + Markup: HTML Tags and Formatting + https://wpthemetestdata.wordpress.com/2013/01/11/markup-html-tags-and-formatting/ + Sat, 12 Jan 2013 03:22:19 +0000 + themedemos + http://wptest.io/demo/?p=919 + + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    John Doe$1Because that's all Steve Jobs needed for a salary.
    Jane Doe$100KFor all the blogging she does.
    Fred Bloggs$100MPictures are worth a thousand words, right? So Jane x 1,000.
    Jane Bloggs$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    +Robert Frost
    +
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +This tag shows strike-through text. + +Small Tag + +This tag shows smaller text. + +Strong Tag + +This tag shows bold text. + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +This rarely used tag emulates teletype text, which is usually styled like the <code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +This tag shows underlined text. + +Variable Tag + +This allows you to denote variables.]]>
    + + 1178 + 2013-01-11 20:22:19 + 2013-01-12 03:22:19 + closed + closed + markup-html-tags-and-formatting + publish + 0 + 0 + post + + 0 + + + + + + + +
    + + Media: Twitter Embeds + https://wpthemetestdata.wordpress.com/2011/03/15/media-twitter-embeds/ + Tue, 15 Mar 2011 22:47:16 +0000 + themedemos + http://wptest.io/demo/?p=1027 + + Twitter Embeds feature.]]> + + 1179 + 2011-03-15 15:47:16 + 2011-03-15 22:47:16 + closed + closed + media-twitter-embeds + publish + 0 + 0 + post + + 0 + + + + + + + + _oembed_time_d01e104b758ab65a49dfdede5913069c + + + + _oembed_ac49b172e1844531a885a53eff2efd91 + ]]> + + + _oembed_time_ac49b172e1844531a885a53eff2efd91 + + + + _oembed_d01e104b758ab65a49dfdede5913069c + ]]> + + + + Template: Sticky + https://wpthemetestdata.wordpress.com/2012/01/07/template-sticky/ + Sat, 07 Jan 2012 14:07:21 +0000 + themedemos + http://wptest.io/demo/?p=1241 + + +
  • The sticky post should be distinctly recognizable in some way in comparison to normal posts. You can style the .sticky class if you are using the post_class() function to generate your post classes, which is a best practice.
  • +
  • They should show at the very top of the blog index page, even though they could be several posts back chronologically.
  • +
  • They should still show up again in their chronologically correct postion in time, but without the sticky indicator.
  • +
  • If you have a plugin or widget that lists popular posts or comments, make sure that this sticky post is not always at the top of those lists unless it really is popular.
  • +]]>
    + + 1241 + 2012-01-07 07:07:21 + 2012-01-07 14:07:21 + closed + closed + template-sticky + publish + 0 + 0 + post + + 1 + + + + +
    + + Template: Excerpt (Generated) + https://wpthemetestdata.wordpress.com/2012/03/14/template-excerpt-generated/ + Wed, 14 Mar 2012 16:49:22 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=1446 + + excerpt_length and excerpt_more, display properly.]]> + + 1446 + 2012-03-14 09:49:22 + 2012-03-14 16:49:22 + closed + closed + template-excerpt-generated + publish + 0 + 0 + post + + 0 + + + + + + + + + Block category: Common + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-common/ + Fri, 02 Nov 2018 16:20:28 +0000 + >themereviewteam + https://wpthemetestdata.wordpress.com/?p=1730 + + +

    The Common category includes the following blocks: Paragraph, image, headings, list, gallery, quote, audio, cover, video.

    + + + +

    The paragraph block is the default block type.  It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love.

    + + + +

    This paragraph is left aligned.

    + + + +

    This italic paragraph is right aligned.

    + + + +

    Neither of these paragraphs care about politics, but this one is bold, medium sized and has a drop cap.

    + + + +

    This paragraph is centered.

    + + + +

    This paragraph prefers Jazz over Justin Timberlake. It also uses the small font size.

    + + + +

    This paragraph has something important to say:  It has a large font size, which defaults to 36px.

    + + + +

    The huge text size defaults to 46px, but the size can be customized.

    + + + +

    This paragraph is colorful, with a red background and white text (maybe). Colored blocks should have a high enough contrast, so that the text is readable.

    + + + +

    Below this block, you will see a single image with a circle mask applied.

    + + + +
    Image Alignment 150x150
    + + + +

    H1 Heading

    + + + +

    H2 Heading

    + + + +

    H3 Heading

    + + + +

    H4 Heading

    + + + +
    H5 Heading
    + + + +
    H6 Heading
    + + + +

    Ordered list

    + + + +
    1. The software should be licensed under the GNU Public License.
    2. The software should be freely available to anyone to use for any purpose, and without permission.
    3. The software should be open to modifications.
      1. Any modifications should be freely distributable at no cost and without permission from its creators.
    4. The software should provide a framework for translation to make it globally accessible to speakers of all languages.
    5. The software should provide a framework for extensions so modifications and enhancements can be made without modifying core code
    + + + +

    Unordered list

    + + + +
    • One
    • Two
    • Three
      • Four
    • Five
    + + + + + + + +

    Quote

    Cite
    + + + +
    + + + +
    +

    Cover block with background image

    +
    + + + +

    The file block has a setting that lets us show or hide a download button with editable text:

    + + + + + + + + + + + +

    Video blocks have settings for showing and hiding the playback controls. Use autoplay and playback controls responsibly.

    + + + +
    This is a video block caption.
    + + + +

    The video block below is muted and has a poster image that displays before the video starts:

    + + + +
    + +]]>
    + + 1730 + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + +
    + + Block category: Formatting + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-formatting/ + Fri, 02 Nov 2018 16:41:42 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1732 + + +

    The formatting category includes the following blocks:

    + + + +
    The code block starts with
    +<!-- wp:code -->
    +<?php echo 'Hello World'; ?>
    +
    + + +

    The classic block can have almost anything in it.

    +
    +
    a heading
    + + +
    The custom HTML block lets you put HTML that isn't configured like blocks in it. (this div has a width of 45%)
    + + + +
    The preformatted block.

    The Road Not Taken

    Robert Frost
    Two roads diverged in a yellow wood,
    And sorry I could not travel both (\_/)
    And be one traveler, long I stood (='.'=)
    And looked down one as far as I could (")_(")
    To where it bent in the undergrowth;

    Then took the other, as just as fair,
    And having perhaps the better claim, |\_/|
    Because it was grassy and wanted wear; / @ @ \
    Though as for that the passing there ( > º < )
    Had worn them really about the same, `>>x<<´
    / O \
    And both that morning equally lay
    In leaves no step had trodden black.
    Oh, I kept the first for another day!
    Yet knowing how way leads on to way,
    I doubted if I should ever come back.
    I shall be telling this with a sigh
    Somewhere ages and ages hence:
    Two roads diverged in a wood, and I—
    I took the one less traveled by,
    And that has made all the difference.



    and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    + + + +

    The pull quote can be aligned or wide or neither.

    Theme Reviewer
    + + + +
    The table blockThis is the default style.
    The cell next to this is empty.
    Cell #5
    Cell #6
    + + + +
    This is the striped style.This row should have a background color.
    The cell next to this is empty.

    This table has fixed width table cells.

    Make sure that the text wraps correctly.

    + + + +
    The Verse block

    A block for haiku?
    Why not?
    Blocks for all the things!
    +]]>
    + + 1732 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Block category: Layout Elements + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-layout-elements/ + Fri, 02 Nov 2018 16:44:37 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1734 + + +
    +

    The Layout Elements category includes the following blocks: Group, Button, Columns, Media & Text, separator, spacer, read more, and page break.

    + + + +

    This group block has a light green background color.

    + + + + + + + +

    The read more block should be right below this text, but only on list pages of themes that show the full content. It won't show on the single page or on themes showing excerpts.

    +
    + + + + + + + +
    +
    +

    The columns:

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    +
    + + + +
    Boardwalk
    +

    Media &Text

    + + + +

    For displaying media and text next to each other. By default, the media is to the left.

    +
    + + + +
    Golden Gate Bridge
    +

    This time our block is full width, and the image is to the right.

    + + + +

    The background color is a pale blue. 

    +
    + + + +

    Test to make sure that the editor and the front match. To test the Stack on mobile setting, reduce the browser window width.

    + + + +

    The control these settings, the block uses the css classes "has-media-on-the-right" and "is-stacked-on-mobile".

    + + + +

    The separator has three styles: default, wide line, and dots.

    + + + +
    + + + +
    + + + +
    + + + +

    The spacer block has a default height of 100 pixels:

    + + + + + + + +

    And finally, the page break:

    + + + + + + + +

    This paragraph block is on page two, after the page break.

    + + + + +]]>
    + + 1734 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block category: Embeds + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-embeds/ + Fri, 02 Nov 2018 16:51:55 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1738 + + + +

    This post tests various embed blocks:

    + + + +
    +https://twitter.com/WordPress/status/1057136472321613824 +
    Twitter,  wide width
    + + + +
    +https://youtu.be/ex8fMxXJDJw +
    YouTube
    + + + +
    +https://www.facebook.com/6427302910/posts/10156380423617911/ +
    + + + +
    +https://www.instagram.com/p/BpmueLLgEn_/?utm_source=ig_share_sheet&igshid=1hcxphic7p9e2 +
    + + + +
    +https://wordpress.tv/2018/10/14/kjell-reigstad-allan-cole-how-we-made-our-first-gutenberg-powered-theme/ +
    WordPress TV, full width
    + + + +

    +]]>
    + + 1738 + + + + + + + 0 + 0 + + + 0 + + + + + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + + + + + + + + + + ]]> + + + + + + + +

    Many of the WordPress contribution teams have been working hard on the new WordPress editor, and the tools, services,...

    Publicerat av WordPress Måndag 3 september 2018
    ]]>
    +
    + + + + + + + ]]> + + + + + + + + ]]> + + + + + + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + + + + + + ]]> + + + + + + + +

    Many of the WordPress contribution teams have been working hard on the new WordPress editor, and the tools, services,...

    Publicerat av WordPress Måndag 3 september 2018
    ]]>
    +
    + + + + + + + ]]> + + + + + + + + ]]> + + + + + +
    + + Block category: Widgets + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-widgets/ + Fri, 02 Nov 2018 16:45:35 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1736 + + +

    The shortcode widget:

    + + + +[gallery columns=2 ids="770,771"] + + + +

    The Archive Widget:

    + + + + + +

    The same Archive widget but as a dropdown:

    + + + + + + + +

    The Category widget block has an additional option for showing category hierarchies:

    + + + + + +

    The Latest Comments widget can display or hide the avatars, the date, and the comment excerpt:

    + + + + + +

    Here is an example of the Comments widget with all the options disabled. The number of comments has been reduced to two.

    + + + + + +

    And here is the Latest Posts widget in the list view, with dates:

    + + + + + +

    Grid view, now sorted from A -Z.

    + + + + + +

    You can also change the number of columns used to display the latest posts. The block below only displays posts from the Block category:

    + + + + + +

    Search widget:

    + + + + + +

    Tag Cloud widget:

    + + + + + +

    RSS Feed widget:

    + + + + ]]>
    + + 1736 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Columns + https://wpthemetestdata.wordpress.com/2018/11/02/block-columns/ + Fri, 02 Nov 2018 12:10:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1743 + + +
    +
    +

    This page tests how the theme displays the columns block. The first block tests a two column block with paragraphs.

    +
    + + + +
    +

    This is the second column. It should align next to the first column. Reduce the browser window width to test the responsiveness.

    +
    +
    + + + +
    +
    +

    This is the second column block. It has 3 columns.

    +
    + + + +
    +

    Paragraph 2 is in the middle.

    +
    + + + +
    +

    Paragraph 3 is in the last column.

    +
    +
    + + + +
    +
    +

    The third column block has 4 columns. Make sure that all the text is visible and that it is not cut off.

    +
    + + + +
    +

    Now the columns are getting narrower.

    +
    + + + +
    +

    The margins between the columns should be wide enough,

    +
    + + + +
    +

    so that the content of the columns does not run into or overlap each other.

    +
    +
    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    + + + +
    +

    Column five.

    +
    +
    + + + +

    To change the number of columns, select the column block to open the settings panel. You can show up to 6 columns. If the theme has support for wide align, you can also set the alignments to wide and full width.

    + + + +

    Below is a column block with six columns, and no alignment:

    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    + + + +
    +

    Column five.

    +
    + + + +
    +

    Column six.

    +
    +
    + + + +

    Next is a 3 column block, with a wide alignment:

    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    +
    + + + +

    And here is a two column block with full width, and a longer text. Make sure that the text wraps correctly.

    + + + +
    +
    +

    This is column one. Sometimes, you may want to use columns to display a larger text, so, lets add some more words. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna. Praesent sit amet ligula id orci venenatis auctor. Phasellus porttitor, metus non tincidunt dapibus, orci pede pretium neque, sit amet adipiscing ipsum lectus et libero. Aenean bibendum. Curabitur mattis quam id urna. Vivamus dui. Donec nonummy lacinia lorem. Cras risus arcu, sodales ac, ultrices ac, mollis quis, justo. Sed a libero. Quisque risus erat, posuere at, tristique non, lacinia quis, eros.

    +
    + + + +
    +

    Column two. Cras volutpat, lacus quis semper pharetra, nisi enim dignissim est, et sollicitudin quam ipsum vel mi. Sed commodo urna ac urna. Nullam eu tortor. Curabitur sodales scelerisque magna. Donec ultricies tristique pede. Nullam libero. Nam sollicitudin felis vel metus. Nullam posuere molestie metus. Nullam molestie, nunc id suscipit rhoncus, felis mi vulputate lacus, a ultrices tortor dolor eget augue. Aenean ultricies felis ut turpis. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Suspendisse placerat tellus ac nulla. Proin adipiscing sem ac risus. Maecenas nisi. Cras semper.

    +
    +
    + + + +

    We can also add blocks inside columns:

    + + + +
    +
    +
    1. This is a numbered list,
    2. inside a 3 column block
    3. with a wide alignment.
    +
    + + + +
    +

    The middle column has a paragraph with an image block below.

    + + + +
    canola
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna.
    +
    + + + +
    +

    -This third column has a quote

    Theme Reviewer
    +
    +
    + + + +

    But wait there is more!  We also have a block called Media & Text, which is a two column block that helps you display media and text content next to each other, without having to first setup a column block:

    + + + +
    dsc20050813_115856_52
    +

    Media & Text

    + + + +

    A paragraph block sits ready to be used, below your headline.

    + + + +

    +
    +]]>
    + + 1743 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Block: Cover + https://wpthemetestdata.wordpress.com/2018/11/02/block-cover/ + Sat, 03 Nov 2018 12:25:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1745 + + +

    This is a left aligned cover block with a background image.

    + + + +

    The cover block lets you add text on top of images or videos.

    + + + +

    This blocktype has several alignment options, and you can also align or center the text inside the block.

    + + + +

    The background image can be fixed and you can change its opacity and add an overlay color.

    + + + +

    Make sure that the text wraps correctly over the image, and that text markup and alignments are working.

    + + + +

    The next image should have a pink overlay color, the text should be bold and aligned to the left:

    + + + +

    A center aligned cover image block, with a left aligned text.

    + + + +

    This is a full width cover block with a fixed background image with a 20% opacity.

    + + + +

    Make sure that all the text is readable.

    + + + +

    Our last cover image block has a wide width.

    + + + +

    This is a wide cover block with a video background.

    + + + +

    Compare the video and image blocks.
    This block is centered.

    + + + +

    The block below has no alignment, and the text is a link. Overlay colors must also work with video backgrounds.

    + + + + +]]>
    + + 1745 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Button + https://wpthemetestdata.wordpress.com/2018/11/02/block-button/ + Sat, 03 Nov 2018 13:20:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1747 + + +

    Button blocks are not semantically buttons, but links inside a styled div. 

    + + + +

    If you do not add a link, a link tag without an anchor will be used.

    + + + + + + + +

    Check to make sure that the text wraps correctly when the button has more than one line of text, and when it is extra long.

    + + + + + + + +

    Buttons have three styles: 

    + + + + + + + + + + + + + + + +

    If the theme has a custom color palette, test that background color and text color settings work correctly. 

    + + + + + + + +

    Now lets test how buttons display together with large texts.

    + + + +

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio.

    + + + + + + + +

    Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna. Praesent sit amet ligula id orci venenatis auctor. Phasellus porttitor, metus non tincidunt dapibus, orci pede pretium neque, sit amet adipiscing ipsum lectus et libero. Aenean bibendum. Curabitur mattis quam id urna.

    + + + + + + + +

    Vivamus dui. Donec nonummy lacinia lorem. Cras risus arcu, sodales ac, ultrices ac, mollis quis, justo. Sed a libero. Quisque risus erat, posuere at, tristique non, lacinia quis, eros.

    +]]>
    + + 1747 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Quote + https://wpthemetestdata.wordpress.com/2018/11/02/block-quote/ + Sat, 03 Nov 2018 03:05:49 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1749 + + +

    The quote block has two styles, regular:

    + + + +

    Gutenberg is more than an editor.

    The Gutenberg Team
    + + + +

    and large:

    + + + +

    Yes, it is a press, certainly, but a press from which shall flow in inexhaustible streams, the most abundant and most marvelous liquor that has ever flowed to relieve the thirst of men!


    Johannes Gutenberg
    + + + +

    The quote blocks themselves have no alignments but the text can be aligned, bold, italic, and linked:

    + + + +

    Right

    Theme Review
    + + + +

    In addition to the quote block, we also have the pull quote, with a regular and a solid color style.

    + + + +

    You can change the color of the border and the text with the regular style:

    + + + +

    In addition to the quote block, we also have the pull quote.

    Theme Reviewer
    + + + +

    Or change the background color and text color with the solid color style:

    + + + +

    a solid color style

    Theme Reviewer
    +]]>
    + + 1749 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Gallery + https://wpthemetestdata.wordpress.com/2018/11/02/block-gallery/ + Sat, 03 Nov 2018 04:34:24 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1752 + + +

    Gallery blocks have two settings: the number of columns, and whether or not images should be cropped. The default number of columns is three, and the maximum number of columns is eight.

    + + + +

    Below is a three column gallery at full width, with cropped images.

    + + + + + + + + + + + +

    Some more text for taking up space.

    + + + +

    A two column gallery, aligned to the left, linked to media file.

    + + + +

    In the editor, the image captions can be edited directly by clicking on the text.

    + + + +

    If the number of images cannot be divided into the number of columns you have selected, the default is to have the last image(s) automatically stretch to the width of your gallery.

    + + + + + + + +

    A four column gallery with a wide width:

    + + + + + + + +

    A five column gallery with normal images:

    + + + + + + + +

    This is the same gallery, but with cropped images.

    + + + + + + + +

    Six columns: does it work at all window sizes?

    + + + + + + + +

    Seven columns: how does this look on a narrow window?

    + + + + + + + +

    Eight columns:

    + + + + +]]>
    + + 1752 + + + + + + + 0 + 0 + + + 0 + + + + + + + + + +
    + + Block: Image + https://wpthemetestdata.wordpress.com/2018/11/03/block-image/ + Sat, 03 Nov 2018 15:20:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1755 + + +

    Welcome to image alignment! If you recognize this post, it is because these are blocks that have been converted from the classic Markup: Image Alignment post. The best way to demonstrate the ebb and flow of the various image positioning options is to nestle them snuggly among an ocean of words. Grab a paddle and let's get started. Be sure to try it in RTL mode. Left should stay left and right should stay right for both reading directions.

    + + + +

    On the topic of alignment, it should be noted that users can choose from the options of None, Left, Right, and Center. If the theme has added support for align wide, images can also be wide and full width. Be sure to test this page in RTL mode.

    + + + +

    In addition, they also get the options of the image dimensions 25%, 50%, 75%, 100% or a set width and height.

    + + + +
    Image Alignment 580x300
    + + + +

    The image above happens to be centered.

    + + + +
    Image Alignment 150x150
    + + + +

    The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned.

    + + + +

    As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished!

    + + + +

    And now for a massively large image. It also has no alignment.

    + + + +
    Image Alignment 1200x400
    + + + +

    The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.

    + + + +
    Image Alignment 300x200
    + + + +

    And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there… Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently.

    + + + +

    In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah… Just like that. It never felt so good to be right.

    + + + +

    And just when you thought we were done, we're going to do them all over again with captions!

    + + + +
    Image Alignment 580x300
    Look at 580x300 getting some caption love.
    + + + +

    The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky.

    + + + +
    Image Alignment 150x150
    Itty-bitty caption.
    + + + +

    The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned.

    + + + +

    As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished!

    + + + +

    And now for a massively large image. It also has no alignment.

    + + + +
    Image Alignment 1200x400
    Massive image comment for your eyeballs.
    + + + +

    The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.

    + + + +
    Image Alignment 300x200
    Feels good to be right all the time.
    + + + +

    And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there… Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently.

    + + + +

    In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah… Just like that. It never felt so good to be right.

    + + + +

    Imagine that we would find a use for the extra wide image! This image has the wide width alignment:

    + + + +
    Image Alignment 1200x4002
    + + + +

    Can we go bigger? This image has the full width alignment:

    + + + +
    Image Alignment 1200x4002
    + + + +

    And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! One last thing: The last item in this post's content is a thumbnail floated right. Make sure any elements after the content are clearing properly.

    + + + +
    +]]>
    + + 1755 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Ελληνικά-Greek + https://wpthemetestdata.wordpress.com/greek/ + Fri, 14 Feb 2020 10:31:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1809 + + Headings Επικεφαλίδες +

    Επικεφαλίδα 1 Header one

    +

    Επικεφαλίδα 2 Header two

    +

    Επικεφαλίδα 3 Header three

    +

    Επικεφαλίδα 2 Header four

    +
    Επικεφαλίδα 5 Header five
    +
    Επικεφαλίδα 6Header six
    +

    Παράθεση άλλου Blockquotes

    +Single line blockquote: Μια γραμμή +
    Πάντα να είναι περίεργος.
    +Πολλές γραμμέ με αναφορά Multi line blockquote with a cite reference: +
    Το HTML <blockquote> ElementHTML Block Quotation Element) καταδεικνύει ότι το κείμενο έχει μια παράθεση. Συνήθως οπτικοποιείται με εσοχή (δείτε Σημειώσεις για το πως να το αλλάξετε. Ίσως να δίνεται και URL πηγής με την χρήση του cite attribute, μπλα, μπλα <cite> .
    +multiple contributors - MDN HTML element reference - blockquote +

    Πίνακες Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Υπάλληλος EmployeeΜισθός Salary
    Τάδε κάποιος$1Γιατί τόσα χρειάζεται για να ζήσει
    Jane Doe$100KFor all the blogging she does.
    Fred Bloggs$100MPictures are worth a thousand words, right? So Jane x 1,000.
    Jane Bloggs$100BWith hair like that?! Enough said...
    +

    Λίστες Definition Lists

    +
    +
    Τίτλος λίστας Definition List Title
    +
    Υποδιαίρεση λίστας Definition list division.
    +
    +

    Λίστα με κουκίδες Unordered Lists (Nested)

    +
      +
    • Πρώτο στοιχείο List item one +
        +
      • Στοιχείο πρώτο List item one +
          +
        • Στοιχείο λίστα ένα List item one
        • +
        • Στοιχείο λίστας δύο List item two
        • +
        +
      • +
      • Στοιχείο δεύτερο -item two
      • +
      +
    • +
    • Στοιχειο δύο List item two
    • +
    +

    Αριθμημένη λίστα(Nested)

    +
      +
    1. Στοιχειο ξεκινά με 8-start at 8 +
        +
      1. Στοιχείο λίστας ενα List item one +
          +
        1. Στοιχείο λίστας ενα -reversed attribute
        2. +
        3. Στοιχείο λίστας δύο
        4. +
        +
      2. +
      3. Δεύτερο στοιχείο
      4. +
      +
    2. +
    3. Στοιχείο δύο
    4. +
    +

    Ετικέττες HTML Tags

    +Διεύθυνση Address Tag + +
    1 Απέραντη διαδρομή Infinite Loop +Απλωπολή , ΤΚ 95014 +Ελλάδα
    Αγκυρωση Anchor Tag (aka. Link) + +Πάραδειγμα συνδέσμου. + +Συντομογραφία Abbreviation Tag + +Η συντομογραφία κτλ σημαίνει "Και τα λοιπά". + +Ακρωνύμιο Acronym Tag + +Το ακρωνύμιο κυρ σημαίνει "Κύριος". + +Big Tag + +Αυτό είναι μεγάλο θέμα + +Cite Tag + +"Φάε το φαϊ σου" --Όλες οι μαμάδες + +Code Tag + +This tag styles blocks of code. +.post-title { +margin: 0 0 5px; +font-weight: bold; +font-size: 38px; +line-height: 1.2; +και μία γραμμή με πολύ πάρα πολύ υπερβολικά πάρα πολύ μεγάλο κείμενο που πρέπει να δούμε πως το χειρίζεται η γραμματοσειρά και αν ξεχειλίζει από τις γραμμές και δημιουργεί πρόβλημα; +} + +Διαγραφή Delete Tag + +Μπορείτε να διαγράφεται κείμενο, αλλά δεν συνιστάται. + +Έμφαση Emphasize Tag + +Θα πρέπει να κάνει ιταλικ italicize το κείμενο. + +Εισαγωγή Insert Tag + +Αυτό το tag υποδηλώνει εισηγμένο inserted κείμενο. + +Keyboard Tag + +Αυτό το ελάχιστο γνωστό κείμενο πληκτρολογίου keyboard Tag, συνήθως μορφοποιείται όμοια με το <κώδικα code> tag. + +Προδιαμορφωμένο Preformatted Tag +

    Ο Δρόμος που δεν διάλεξα - The Road Not Taken

    +
    Robert Frost
    +	 Δυο δρόμοι διασταυρώθηκαν σ' ένα χρυσαφένιο δάσος ,
    +	 Και προς λύπη μου και τους δυο τα πόδια μου να ταξιδέψουν δεν μπορούσαν
    +	 Κι επί μακρόν εστάθηκα , καθώς ένας ήμουν ταξιδευτής μονάχος ,
    +	 κι έστρεψα το βλέμμα μου στον πρώτο όσο να χαθεί στο βάθος
    +	 μέχρι εκεί που χάνονταν στα άγρια χόρτα που βλαστούσαν.
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	και μία μακριά, πάρα πολύ μακριά, υπερβολικά μακροσκελής δίχως νόημα πρόταση για να δούμε πως το χειρίζεται το θέμα εμφάνισης και αν αναδιπλώνεται, κρύβεται ή ξεχειλίζει;
    +
    +Quote Tag for short, inline quotes + +Προγραμματιστές, προγραμματιστές, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +Αυτή η ετικέτα είναι με διαγράμμιση strike-through κείμενο text. + +Μικρά Small Tag + +Αυτή η ετικέτα είναι μικρότερο smaller κείμενο text. + +Strong Tag + +Αυτή η ετικέτα δείχνει έντονο bold κείμενο text. + +Subscript Tag + +Getting our science styling on with H2 δύοO, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2 δύο, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +Αυτή η ετικέτα δείχνει τυλετυπος teletype κείμενο, which is usually styled like the <κώδικα code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +Αυτή η ετικέτα δείχνει υπογράμμιση underlined text. + +Variable Tag + +Αυτή η ετικέτα δείχνει παράμετροι variables.]]>
    + + 1809 + + + + + + + 0 + 0 + + + 0 + + + + + + + + +
    + + Επίπεδο 2 -Second Greek level + https://wpthemetestdata.wordpress.com//greek/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-2/ + Fri, 14 Feb 2020 10:31:47 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1811 + + + + 1811 + + + + + + + 1809 + 0 + + + 0 + + + + + + + + + + + Επίπεδο 3 + https://wpthemetestdata.wordpress.com/greek/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-2/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-3/ + Fri, 14 Feb 2020 10:32:50 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1813 + + + + 1813 + + + + + + + 1811 + 0 + + + 0 + + + + + + + + + + + <![CDATA[WP 6.1 Font size scale]]> + https://wpthemetestdata.wordpress.com/wp-6-1-font-size-scale/ + Mon, 16 Jan 2023 07:08:31 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-font-size-scale/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Small H2 Heading

    + + + +

    Medium H2 Heading

    + + + +

    Large H2 Heading

    + + + +

    Extra Large H2 Heading

    + + + +

    Small paragraph

    + + + +

    Medium paragraph

    + + + +

    Large paragraph

    + + + +

    Extra Large paragraph

    +]]> +
    + + 163 + + + + + + + + + 0 + 0 + + + 0 + + + + + + +
    + + <![CDATA[WP 6.1 spacing presets]]> + https://wpthemetestdata.wordpress.com/wp-6-1-spacing-presets/ + Mon, 16 Jan 2023 06:56:53 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-spacing-presets/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    On this page, some group blocks have border or background color set to increase visibility.

    + + + +
    +

    This group has a no background color and no additional spacing set.

    +
    + + + +
    +

    This group has a background color but no additional spacing set.

    +
    + + + +
    +

    This group has a 1px border and padding preset 1

    +
    + + + +
    +

    This group has padding preset 1

    +
    + + + +
    +

    This group has a 1px border and padding preset 2

    +
    + + + +
    +

    This group has a background color and padding preset 3

    +
    + + + +
    +

    This group has a background color and padding preset 4

    +
    + + + +
    +

    This group has a background color and padding preset 5

    +
    + + + +
    +

    This group has a background color and padding preset 6

    +
    + + + +
    +

    This group has a background color and padding preset 7

    +
    + + + +
    +

    This group has padding preset 7

    +
    + + + +
    +

    This group has a background color and margin preset 1

    +
    + + + +
    +

    This group has a background color and margin preset 2

    +
    + + + +
    +

    This group has a background color and margin preset 3

    +
    + + + +
    +

    This group has a background color and margin preset 4

    +
    + + + +
    +

    This group has a background color and margin preset 5

    +
    + + + +
    +

    This group has a background color and margin preset 6

    +
    + + + +
    +

    This group has a background color and margin preset 7

    +
    + + + +
    +

    This group has a 1px border, padding preset 4 and margin preset 4

    +
    + + + +
    +

    This group has padding preset 4 and margin preset 4

    +
    +]]>
    + + 150 + + + + + + + + + 0 + 0 + + + 0 + + + + + + +
    + + <![CDATA[WP 6.1 Theme block category]]> + https://wpthemetestdata.wordpress.com/wp-6-1-theme-block-category/ + Fri, 13 Jan 2023 18:38:05 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-theme-block-category/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Navigation block with page list:

    + + + + + + + +

    Site logo:

    + + + + + +

    Site title:

    + + + + + +

    Tagline block:

    + + + + + +

    Query loop "Title & Date" variation:

    + + + +
    + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Title & Excerpt" variation:

    + + + +
    + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Title, Date & Excerpt" variation:

    + + + +
    + + + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Image, Date & Title" variation:

    + + + +
    + + + + + + + + + + + + + + + + + +

    + +
    + + + +

    Avatar block:

    + + + + + +

    Post title block:

    + + + + + +

    Post excerpt:

    + + + + + +

    Post featured image:

    + + + + + +

    Post author:

    + + + + + +

    Post date:

    + + + + + +

    Categories:

    + + + + + +

    Tags:

    + + + + + +

    Next post & previous post:

    + + + + + + + +

    Read More:

    + + + + + +

    Comments block:

    + + + +
    + + + +
    +
    + + + +
    + + +
    + +
    + + + + +
    +
    + + + + + + + + + + + + + + +

    Post comments form block:

    +
    + + + + + +

    Login/out:

    + + + + + + + + + + + +

    Author biography block:

    + + + + + + + + + +

    Term description, archive title, search results title can not be shown on single posts.

    +]]>
    + + 51 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + + + + 2 + + + https://wpthemetestdata.wordpress.com/ + + + + + + + 0 + 0 + +
    + + <![CDATA[WP 6.1 Widgets block category]]> + https://wpthemetestdata.wordpress.com/wp-6-1-widgets-block-category/ + Fri, 13 Jan 2023 18:22:21 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-widgets-block-category/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Archives block:

    + + + + + + + +

    Categories list:

    + + + + + +

    Custom HTML:

    + + + + test + + + +

    Latest comments:

    + + + + + +

    Latest posts:

    + + + + + +

    Page list block:

    + + + + + +

    RSS block:

    + + + + + + + + + + + + + + + +

    Shortcode block:

    + + + + + +

    Social links:

    + + + + + + + + + + + + + + + +

    Tag cloud:

    + + + + + +

    +]]>
    + + 34 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Design category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-design-category-blocks/ + Fri, 13 Jan 2023 18:03:23 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-design-category-blocks/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + + + + + +
    +
    +

    One single column inside a columns block.

    +
    +
    + + + +
    +
    +

    Column one. The background color is on the single column.

    +
    + + + +
    +

    Column two

    +
    +
    + + + +
    +
    +

    Column one. The background color is on the parent columns block.

    +
    + + + +
    +

    Column two

    +
    + + + +
    +

    Column three

    +
    +
    + + + +
    +

    Group with paragraph inside. Below are the group block variations:

    +
    + + + +
    +

    Row

    + + + +

    Row

    +
    + + + +
    +

    Stack

    + + + +

    Stack

    +
    + + + +

    More block:

    + + + + + + + +

    Page break:

    + + + + + + + +

    Separators:

    + + + +

    Default style, no alignment:

    + + + +
    + + + +

    Default style, wide alignment:

    + + + +
    + + + +

    Default style, full width:

    + + + +
    + + + +

    Default style, align center:

    + + + +
    + + + +

    Wide style, no alignment:

    + + + +
    + + + +

    Wide style, wide alignment:

    + + + +
    + + + +

    Wide style, full width:

    + + + +
    + + + +

    Wide style, align center:

    + + + +
    + + + +

    Dotted style, no alignment:

    + + + +
    + + + +

    Dotted style, wide alignment:

    + + + +
    + + + +

    Dotted style, full width:

    + + + +
    + + + +

    Dotted style, align center:

    + + + +
    + + + +

    Spacer:

    + + + + +]]>
    + + 24 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Media category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-media-category-blocks/ + Fri, 13 Jan 2023 18:02:28 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-media-category-blocks/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Image block:

    + + + +
    dsc20050727_091048_222
    + + + +

    Gallery:

    + + + + + + + +

    Audio:

    + + + +
    + + + +

    Cover:

    + + + +
    Wind Farm
    +

    Write title...

    +
    + + + +
    +

    Fixed background

    +
    + + + +
    +

    Repeated background

    +
    + + + +
    +

    Fixed and Repeated background

    +
    + + + +
    dsc20050727_091048_222
    +

    Duotone

    +
    + + + +
    Rain Ripples
    +

    Top left

    +
    + + + +
    Rain Ripples
    +

    Top center

    +
    + + + +
    Rain Ripples
    +

    Top right

    +
    + + + +
    Rain Ripples
    +

    Center left

    +
    + + + +
    Rain Ripples
    +

    Center right

    +
    + + + +
    Rain Ripples
    +

    Bottom left

    +
    + + + +
    Rain Ripples
    +

    Bottom center

    +
    + + + +
    Rain Ripples
    +

    Bottom right

    +
    + + + + + + + +
    Boardwalk
    +

    This is the Media & Text block with an image on the left.

    +
    + + + +
    Image Alignment 1200x4002
    +

    This is the Media & Text block with a cropped image on the left

    +
    + + + +
    +

    This is the Media & Text block with a video the right.

    +
    + + + +
    +]]>
    + + 21 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Text category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-text-category-blocks/ + Fri, 13 Jan 2023 17:46:19 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-text-category-blocks + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Paragraph

    + + + +

    H1 Heading

    + + + +

    H2 Heading

    + + + +

    H3 Heading

    + + + +

    H4 Heading

    + + + +
    H5 Heading
    + + + +
    H6 Heading
    + + + +
      +
    • List
    • + + + +
    • List
    • +
    + + + +
      +
    1. List
    2. + + + +
    3. List
    4. +
    + + + +
      +
    1. List +
        +
      • List
      • +
      +
    2. +
    + + + +
    +

    Quote block

    +citation
    + + +

    classic block

    + + +
    code block
    + + + +
    Preformatted block
    + + + +

    Pull quote

    Citation
    + + + +
    table celltable cell two
    table cell threetable cell four
    Table caption
    + + + +
    header label oneheader label two
    table celltable cell two
    table cell threetable cell four
    footer label onefooter label two
    Table caption
    + + + +
    Verse block
    +]]>
    + + 8 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + +
    + + Keyboard navigation + https://wpthemetestdata.wordpress.com/2018/10/20/keyboard-navigation/ + Sun, 21 Oct 2018 03:03:48 +0000 + + https://wpthemetestdata.wordpress.com/?p=1724 + + +

    There are many different ways to use the web besides a mouse and a pair of eyes. Users navigate for example with a keyboard only or with their voice.

    + + + +

    All the functionality, including menus, links and forms should work using a keyboard only. This is essential for all assistive technology to work properly. The only way to test this, at the moment, is manually. The best time to test this is during development.

    + + + +

    How to keyboard test:

    + + + +

    Tab through your pages, links and forms to do the following tests:

    + + + +
    • Confirm that all links can be reached and activated via keyboard, including any in dropdown submenus.
    • Confirm that all links get a visible focus indicator (e.g., a border highlight).
    • Confirm that all visually hidden links (e.g. skip links) become visible when in focus.
    • Confirm that all form input fields and buttons can be accessed and used via keyboard.
    • Confirm that all interactions, buttons, and other controls can be triggered via keyboard — any action you can complete with a mouse must also be performable via keyboard.
    • Confirm that focus doesn’t move in unexpected ways around the page.
    • Confirm that using shift+tab to move backwards works as well.
    + + + +

    Resources

    + + + + +]]>
    + + 1724 + + + + + + + 0 + 0 + + + + 0 +
    + + About The Tests + https://wpthemetestdata.wordpress.com/about/ + Mon, 26 Jul 2010 02:40:01 +0000 + themedemos + https://wpthemetestdata.wordpress.com/about/ + + WordPress Theme Development Resources + +
      +
    1. See the WordPress Theme Developer Handbook for examples of best practices.
    2. +
    3. See the WordPress Code Reference for more information about WordPress' functions, classes, methods, and hooks.
    4. +
    5. See Theme Unit Test for a robust test suite for your Theme and get the latest version of the test data you see here.
    6. +
    7. See Releasing Your Theme for a guide to submitting your Theme to the Theme Directory.
    8. +
    ]]>
    + + 2 + 2010-07-25 19:40:01 + 2010-07-26 02:40:01 + closed + closed + about + publish + 0 + 1 + page + + 0 +
    + + Lorem Ipsum + https://wpthemetestdata.wordpress.com/lorem-ipsum/ + Tue, 04 Sep 2007 16:52:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/lorem-ipsum/ + + + + 146 + 2007-09-04 09:52:50 + 2007-09-04 16:52:50 + closed + closed + lorem-ipsum + publish + 0 + 7 + page + + 0 + + + Page with comments + https://wpthemetestdata.wordpress.com/about/page-with-comments/ + Tue, 04 Sep 2007 17:47:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/page-with-comments/ + + + + 155 + 2007-09-04 10:47:47 + 2007-09-04 17:47:47 + open + closed + page-with-comments + publish + 2 + 3 + page + + 0 + + 167 + + anon@example.com + + + 2007-09-04 10:49:28 + 2007-09-04 00:49:28 + + 1 + + 0 + 0 + + + 168 + + tellyworth+test2@example.com + + + 2007-09-04 10:49:03 + 2007-09-04 00:49:03 + + 1 + + 0 + 0 + + + 169 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2007-09-04 10:48:51 + 2007-09-04 17:48:51 + + 1 + + 0 + 0 + + + 1017 + + themereviewteam@gmail.com + + + 2014-12-10 01:56:24 + 2014-12-10 08:56:24 + + 0 + + 168 + 0 + + + + Page with comments disabled + https://wpthemetestdata.wordpress.com/about/page-with-comments-disabled/ + Tue, 04 Sep 2007 17:48:10 +0000 + themedemos + https://wpthemetestdata.wordpress.com/page-with-comments-disabled/ + + + + 156 + 2007-09-04 10:48:10 + 2007-09-04 17:48:10 + closed + closed + page-with-comments-disabled + publish + 2 + 4 + page + + 0 + + + Level 3 + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3/ + Tue, 11 Dec 2007 06:23:16 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-3/ + + + + 172 + 2007-12-11 16:23:16 + 2007-12-11 06:23:16 + closed + closed + level-3 + publish + 173 + 0 + page + + 0 + + + Level 2 + https://wpthemetestdata.wordpress.com/level-1/level-2/ + Tue, 11 Dec 2007 06:23:33 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-2/ + + + + 173 + 2007-12-11 16:23:33 + 2007-12-11 06:23:33 + closed + closed + level-2 + publish + 174 + 0 + page + + 0 + + + Level 1 + https://wpthemetestdata.wordpress.com/level-1/ + Tue, 11 Dec 2007 23:25:40 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-1/ + + + + 174 + 2007-12-11 16:25:40 + 2007-12-11 23:25:40 + closed + closed + level-1 + publish + 0 + 5 + page + + 0 + + + Clearing Floats + https://wpthemetestdata.wordpress.com/about/clearing-floats/ + Sun, 01 Aug 2010 16:42:26 +0000 + themedemos + https://wpthemetestdata.wordpress.com/ + + This is the second page]]> + + 501 + 2010-08-01 09:42:26 + 2010-08-01 16:42:26 + closed + closed + clearing-floats + publish + 2 + 2 + page + + 0 + + + canola2 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/canola2/ + Mon, 16 Jun 2008 13:17:54 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/canola2.jpg + + + + 611 + 2008-06-16 06:17:54 + 2008-06-16 13:17:54 + open + closed + canola2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/canola2.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + dsc20050727_091048_222 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050727_091048_222/ + Mon, 16 Jun 2008 13:20:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050727_091048_222.jpg + + + + 616 + 2008-06-16 06:20:37 + 2008-06-16 13:20:37 + open + closed + dsc20050727_091048_222 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050727_091048_222.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + dsc20050813_115856_52 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050813_115856_52/ + Mon, 16 Jun 2008 13:20:57 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050813_115856_52.jpg + + + + 617 + 2008-06-16 06:20:57 + 2008-06-16 13:20:57 + open + closed + dsc20050813_115856_52 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050813_115856_52.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Front Page + https://wpthemetestdata.wordpress.com/front-page/ + Sat, 21 May 2011 01:49:43 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=701 + + + + 701 + 2011-05-20 18:49:43 + 2011-05-21 01:49:43 + open + closed + front-page + publish + 0 + 0 + page + + 0 + + + a Blog page + https://wpthemetestdata.wordpress.com/blog/ + Sat, 21 May 2011 01:51:43 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=703 + + + + 703 + 2011-05-20 18:51:43 + 2011-05-21 01:51:43 + open + closed + blog + publish + 0 + 0 + page + + 0 + + 1016 + + example@example.com + + + 2014-11-29 21:03:05 + 2014-11-30 04:03:05 + + 0 + + 0 + 0 + + + + Bell on Wharf + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/100_5478/ + Mon, 16 Jun 2008 21:34:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/100_5478.jpg + + + + 754 + 2008-06-16 14:34:50 + 2008-06-16 21:34:50 + open + closed + 100_5478 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/100_5478.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Golden Gate Bridge + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/100_5540/ + Mon, 16 Jun 2008 21:35:55 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/100_5540.jpg + + + + 755 + 2008-06-16 14:35:55 + 2008-06-16 21:35:55 + open + closed + 100_5540 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/100_5540.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sunburst Over River + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/cep00032/ + Mon, 16 Jun 2008 21:41:24 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/cep00032.jpg + + + + 756 + 2008-06-16 14:41:24 + 2008-06-16 21:41:24 + open + closed + cep00032 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/cep00032.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Boardwalk + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dcp_2082/ + Mon, 16 Jun 2008 21:41:27 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dcp_2082.jpg + + + + 757 + 2008-06-16 14:41:27 + 2008-06-16 21:41:27 + open + closed + dcp_2082 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dcp_2082.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Yachtsody in Blue + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc03149/ + Mon, 16 Jun 2008 21:41:33 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc03149.jpg + + + + 758 + 2008-06-16 14:41:33 + 2008-06-16 21:41:33 + open + closed + dsc03149 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc03149.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Rain Ripples + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc04563/ + Mon, 16 Jun 2008 21:41:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc04563.jpg + + + + 759 + 2008-06-16 14:41:37 + 2008-06-16 21:41:37 + open + closed + dsc04563 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc04563.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sydney Harbor Bridge + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc09114/ + Mon, 16 Jun 2008 21:41:41 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc09114.jpg + + + + 760 + 2008-06-16 14:41:41 + 2008-06-16 21:41:41 + open + closed + dsc09114 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc09114.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Wind Farm + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050102_192118_51/ + Mon, 16 Jun 2008 21:41:42 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050102_192118_51.jpg + + + + 761 + 2008-06-16 14:41:42 + 2008-06-16 21:41:42 + open + closed + dsc20050102_192118_51 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050102_192118_51.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Antique Farm Machinery + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20051220_160808_102/ + Mon, 16 Jun 2008 21:41:45 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_160808_102.jpg + + + + 762 + 2008-06-16 14:41:45 + 2008-06-16 21:41:45 + open + closed + dsc20051220_160808_102 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_160808_102.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Rusty Rail + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20051220_173257_119/ + Mon, 16 Jun 20081 21:47:17 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_173257_119.jpg + + + + 764 + 2008-06-16 14:47:17 + 2008-06-16 21:47:17 + open + closed + dsc20051220_173257_119 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_173257_119.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sea and Rocks + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dscn3316/ + Mon, 16 Jun 2008 21:47:20 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dscn3316.jpg + + + + 765 + 2008-06-16 14:47:20 + 2008-06-16 21:47:20 + open + closed + dscn3316 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dscn3316.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Big Sur + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/michelle_049/ + Mon, 16 Jun 2008 21:47:23 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/michelle_049.jpg + + + + 766 + 2008-06-16 14:47:23 + 2008-06-16 21:47:23 + open + closed + michelle_049 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/michelle_049.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Windmill + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dcf-1-0/ + Mon, 16 Jun 2008 21:47:26 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/windmill.jpg + + + + 767 + 2008-06-16 14:47:26 + 2008-06-16 21:47:26 + open + closed + dcf-1-0 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/windmill.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Huatulco Coastline + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/alas-i-have-found-my-shangri-la/ + Mon, 16 Jun 2008 21:49:48 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0513-1.jpg + + + + 768 + 2008-06-16 14:49:48 + 2008-06-16 21:49:48 + open + closed + alas-i-have-found-my-shangri-la + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0513-1.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Brazil Beach + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_0747/ + Mon, 16 Jun 2008 21:50:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0747.jpg + + + + 769 + 2008-06-16 14:50:37 + 2008-06-16 21:50:37 + open + closed + img_0747 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0747.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Huatulco Coastline + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_0767/ + Mon, 16 Jun 2008 21:51:19 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0767.jpg + + + + 770 + 2008-06-16 14:51:19 + 2008-06-16 21:51:19 + open + closed + img_0767 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0767.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Boat Barco Texture + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_8399/ + Mon, 16 Jun 2008 21:51:57 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_8399.jpg + + + + 771 + 2008-06-16 14:51:57 + 2008-06-16 21:51:57 + open + closed + img_8399 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_8399.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Resinous + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20040724_152504_532-2/ + Mon, 04 Jun 2012 18:36:56 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg + + + + 807 + 2012-06-04 11:36:56 + 2012-06-04 18:36:56 + open + closed + dsc20040724_152504_532-2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg + + _attachment_original_parent_id + + + + + St. Louis Blues + https://wpthemetestdata.wordpress.com/2010/07/02/post-format-audio/originaldixielandjazzbandwithalbernard-stlouisblues/ + Mon, 16 Jun 2008 16:49:29 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3 + + + + 821 + 2008-06-16 09:49:29 + 2008-06-16 16:49:29 + open + closed + originaldixielandjazzbandwithalbernard-stlouisblues + inherit + 587 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3 + + + OLYMPUS DIGITAL CAMERA + https://wpthemetestdata.wordpress.com/about/clearing-floats/olympus-digital-camera/ + Thu, 05 Aug 2010 18:07:34 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2010/08/manhattansummer.jpg + + + + 827 + 2010-08-05 11:07:34 + 2010-08-05 18:07:34 + open + closed + olympus-digital-camera + inherit + 501 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2010/08/manhattansummer.jpg + + + Image Alignment 580x300 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-580x300/ + Fri, 15 Mar 2013 00:44:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg + + + + 967 + 2013-03-14 19:44:50 + 2013-03-15 00:44:50 + open + open + image-alignment-580x300 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Image Alignment 150x150 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-150x150/ + Fri, 15 Mar 2013 00:44:49 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg + + + + 968 + 2013-03-14 19:44:49 + 2013-03-15 00:44:49 + open + open + image-alignment-150x150 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Horizontal Featured Image + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-horizontal/featured-image-horizontal-2/ + Fri, 15 Mar 2013 20:40:38 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-horizontal.jpg + + + + 1022 + 2013-03-15 15:40:38 + 2013-03-15 20:40:38 + open + open + featured-image-horizontal-2 + inherit + 1011 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-horizontal.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + I Am Worth Loving Wallpaper + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/soworthloving-wallpaper/ + Thu, 14 Mar 2013 14:58:24 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/soworthloving-wallpaper.jpg + + + + 1023 + 2013-03-14 09:58:24 + 2013-03-14 14:58:24 + open + open + soworthloving-wallpaper + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/soworthloving-wallpaper.jpg + + _wp_attachment_image_alt + + + + + Image Alignment 300x200 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-300x200/ + Fri, 15 Mar 2013 00:44:49 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg + + + + 1025 + 2013-03-14 19:44:49 + 2013-03-15 00:44:49 + open + open + image-alignment-300x200 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Vertical Featured Image + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-vertical/featured-image-vertical-2/ + Fri, 15 Mar 2013 20:41:09 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-vertical.jpg + + + + 1027 + 2013-03-15 15:41:09 + 2013-03-15 20:41:09 + open + open + featured-image-vertical-2 + inherit + 1016 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-vertical.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Image Alignment 1200x4002 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-1200x4002/ + Fri, 15 Mar 2013 00:44:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg + + + + 1029 + 2013-03-14 19:44:50 + 2013-03-15 00:44:50 + open + open + image-alignment-1200x4002 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Unicorn Wallpaper + https://wpthemetestdata.wordpress.com/2010/08/08/post-format-image/unicorn-wallpaper/ + Fri, 14 Dec 2012 03:10:39 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2012/12/unicorn-wallpaper.jpg + + + + 1045 + 2012-12-13 22:10:39 + 2012-12-14 03:10:39 + open + open + unicorn-wallpaper + inherit + 1158 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2012/12/unicorn-wallpaper.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Pages + https://wpthemetestdata.wordpress.com/2013/04/09/pages/ + Tue, 09 Apr 2013 13:37:45 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/pages + + + + 1100 + 2013-04-09 06:37:45 + 2013-04-09 13:37:45 + open + closed + pages + publish + 0 + 2 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Categories + https://wpthemetestdata.wordpress.com/2013/04/09/categories/ + Tue, 09 Apr 2013 13:37:45 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/categories + + + + 1101 + 2013-04-09 06:37:45 + 2013-04-09 13:37:45 + open + closed + categories + publish + 0 + 10 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1112/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1112</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test markup tags and styles.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1112</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1112</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>21</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[4675]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1115/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1115</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test post formats.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1115</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1115</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>24</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[44090582]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1118/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1118</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test unpublished posts.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1118</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1118</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>28</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[54090]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>Depth + https://wpthemetestdata.wordpress.com/2013/04/09/depth/ + Tue, 09 Apr 2013 13:37:46 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/depth + + + + 1119 + 2013-04-09 06:37:46 + 2013-04-09 13:37:46 + open + closed + depth + publish + 0 + 29 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 01 + https://wpthemetestdata.wordpress.com/2013/04/09/level-01/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-01 + + + + 1120 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-01 + publish + 0 + 30 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 02 + https://wpthemetestdata.wordpress.com/2013/04/09/level-02/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-02 + + + + 1121 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-02 + publish + 0 + 31 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 03 + https://wpthemetestdata.wordpress.com/2013/04/09/level-03/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-03 + + + + 1122 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-03 + publish + 0 + 32 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 04 + https://wpthemetestdata.wordpress.com/2013/04/09/level-04/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-04 + + + + 1123 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-04 + publish + 0 + 33 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 05 + https://wpthemetestdata.wordpress.com/2013/04/09/level-05/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-05 + + + + 1124 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-05 + publish + 0 + 34 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 06 + https://wpthemetestdata.wordpress.com/2013/04/09/level-06/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-06 + + + + 1125 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-06 + publish + 0 + 35 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 07 + https://wpthemetestdata.wordpress.com/2013/04/09/level-07/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-07 + + + + 1126 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-07 + publish + 0 + 36 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 08 + https://wpthemetestdata.wordpress.com/2013/04/09/level-08/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-08 + + + + 1127 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-08 + publish + 0 + 37 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 09 + https://wpthemetestdata.wordpress.com/2013/04/09/level-09/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-09 + + + + 1128 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-09 + publish + 0 + 38 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 10 + https://wpthemetestdata.wordpress.com/2013/04/09/level-10/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-10 + + + + 1129 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-10 + publish + 0 + 39 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Advanced + https://wpthemetestdata.wordpress.com/2013/04/09/advanced/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/advanced + + + + 1130 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + advanced + publish + 0 + 40 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu Description + https://wpthemetestdata.wordpress.com/2013/04/09/menu-description/ + Tue, 09 Apr 2013 13:37:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-description + + + + 1142 + 2013-04-09 06:37:50 + 2013-04-09 13:37:50 + open + closed + menu-description + publish + 0 + 44 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu Title Attribute + https://wpthemetestdata.wordpress.com/2013/04/09/menu-title-attribute/ + Tue, 09 Apr 2013 13:37:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-title-attribute + + + + 1143 + 2013-04-09 06:37:50 + 2013-04-09 13:37:50 + open + closed + menu-title-attribute + publish + 0 + 41 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu CSS Class + https://wpthemetestdata.wordpress.com/2013/04/09/menu-css-class/ + Tue, 09 Apr 2013 13:37:51 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-css-class + + + + 1144 + 2013-04-09 06:37:51 + 2013-04-09 13:37:51 + open + closed + menu-css-class + publish + 0 + 42 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + New Window / Tab + https://wpthemetestdata.wordpress.com/2013/04/09/new-window-tab/ + Tue, 09 Apr 2013 13:37:51 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/new-window-tab + + + + 1145 + 2013-04-09 06:37:51 + 2013-04-09 13:37:51 + open + closed + new-window-tab + publish + 0 + 43 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1263/</link> + <pubDate>Tue, 09 Apr 2013 13:38:00 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1263</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1263</wp:post_id> + <wp:post_date>2013-04-09 06:38:00</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:38:00</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1263</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1100]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1264/</link> + <pubDate>Tue, 09 Apr 2013 13:38:01 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1264</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1264</wp:post_id> + <wp:post_date>2013-04-09 06:38:01</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:38:01</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1264</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1100]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>twitter.com + https://wpthemetestdata.wordpress.com/2018/10/20/twitter-com/ + Sun, 21 Oct 2018 02:57:33 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/twitter-com/ + + + + 1719 + + + + + + + 0 + 1 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + facebook.com + https://wpthemetestdata.wordpress.com/2018/10/20/facebook-com/ + Sun, 21 Oct 2018 02:57:35 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/facebook-com/ + + + + 1720 + + + + + + + 0 + 2 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + github.com + https://wpthemetestdata.wordpress.com/2018/10/20/github-com/ + Sun, 21 Oct 2018 02:57:37 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/github-com + + + + 1721 + + + + + + + 0 + 3 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + instagram.com + https://wpthemetestdata.wordpress.com/2018/10/20/instagram-com + Sun, 21 Oct 2018 02:57:41 +000 + themereviewteam> + https://wpthemetestdata.wordpress.com/2018/10/20/instagram-com + + + + 1723 + + + + + + + 0 + 5 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + linkedin.com + https://wpthemetestdata.wordpress.com/2018/10/20/linkedin-com/ + Sun, 21 Oct 2018 02:57:39 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/linkedin-com/ + + + + 1722 + + + + + + + 0 + 4 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + triforce-wallpaper + https://wpthemetestdata.wordpress.com/2010/08/07/post-format-image-caption/triforce-wallpaper/ + Tue, 17 Aug 2010 20:17:31 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2010/08/triforce-wallpaper.jpg + + + + 1628 + 2010-08-17 13:17:31 + 2010-08-17 20:17:31 + open + closed + triforce-wallpaper + inherit + 1163 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2010/08/triforce-wallpaper.jpg + + + + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1636/</link> + <pubDate>Tue, 07 May 2013 19:54:30 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1636</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1636</wp:post_id> + <wp:post_date>2013-05-07 12:54:30</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:30</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1636</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1637/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1637</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1637</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1637</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1638/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1638</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1638</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1638</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1639/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1639</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1639</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1639</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1640/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1640</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1640</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1640</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1641/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1641</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1641</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1641</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1643/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1643</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1643</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1643</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1644/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1644</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1644</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1644</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[701]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1645/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1645</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1645</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1645</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1646/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1646</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1646</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1646</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1647/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1647</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1647</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1647</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1648/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1648</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1648</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1648</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1649/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1649</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1649</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1649</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1650/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1650</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1650</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1650</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1651/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1651</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1651</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1651</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>10</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[174]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1652/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1652</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1652</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1652</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>11</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[173]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1653/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1653</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1653</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1653</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>12</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[172]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1654/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1654</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1654</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1654</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>13</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[746]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1655/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1655</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1655</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1655</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>14</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[748]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1656/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1656</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1656</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1656</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>15</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[742]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1657/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1657</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1657</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1657</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>16</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[744]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1658/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1658</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1658</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1658</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>17</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1659/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1659</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1659</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1659</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>18</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[733]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1660/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1660</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1660</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1660</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>19</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[735]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1643/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1643</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1643</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1643</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1644/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1644</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1644</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1644</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[701]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1645/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1645</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1645</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1645</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1646/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1646</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1646</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1646</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1647/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1647</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1647</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1647</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1648/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1648</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1648</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1648</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1649/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1649</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1649</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1649</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1650/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1650</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1650</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1650</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1651/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1651</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1651</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1651</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>10</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[174]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1652/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1652</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1652</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1652</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>11</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[173]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1653/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1653</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1653</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1653</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>12</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[172]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1654/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1654</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1654</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1654</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>13</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[746]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1655/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1655</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1655</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1655</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>14</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[748]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1656/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1656</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1656</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1656</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>15</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[742]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1657/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1657</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1657</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1657</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>16</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[744]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1658/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1658</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1658</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1658</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>17</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1659/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1659</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1659</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1659</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>18</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[733]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1660/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1660</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1660</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1660</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>19</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[735]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>dsc20040724_152504_532 + https://wpthemetestdata.wordpress.com/?attachment_id=1686 + Wed, 18 Sep 2013 21:37:05 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20040724_152504_532.jpg + + + + 1686 + 2013-09-18 14:37:05 + 2013-09-18 21:37:05 + open + closed + dsc20040724_152504_532 + inherit + 0 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20040724_152504_532.jpg + + + dsc20050604_133440_34211 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050604_133440_34211/ + Wed, 18 Sep 2013 21:37:07 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20050604_133440_34211.jpg + + + + 1687 + 2013-09-18 14:37:07 + 2013-09-18 21:37:07 + open + closed + dsc20050604_133440_34211 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20050604_133440_34211.jpg + + + 2014-slider-mobile-behavior + https://wpthemetestdata.wordpress.com/?attachment_id=1690 + Wed, 04 Dec 2013 18:08:29 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/12/2014-slider-mobile-behavior.mov + + + + 1690 + 2013-12-04 11:08:29 + 2013-12-04 18:08:29 + open + closed + 2014-slider-mobile-behavior + inherit + 0 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/12/2014-slider-mobile-behavior.mov + + + dsc20050315_145007_132 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050315_145007_132-2/ + Sun, 05 Jan 2014 18:45:21 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2014/01/dsc20050315_145007_132.jpg + + + + 1691 + 2014-01-05 11:45:21 + 2014-01-05 18:45:21 + open + closed + dsc20050315_145007_132-2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2014/01/dsc20050315_145007_132.jpg + + + spectacles + https://wpthemetestdata.wordpress.com/about/clearing-floats/spectacles-2/ + Sun, 05 Jan 2014 18:45:36 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2014/01/spectacles.gif + + + + 1692 + 2014-01-05 11:45:36 + 2014-01-05 18:45:36 + open + closed + spectacles-2 + inherit + 501 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2014/01/spectacles.gif + + + Post Format: Standard + https://wpthemetestdata.wordpress.com/2010/10/05/post-format-standard/ + Tue, 05 Oct 2010 07:27:25 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=358 + + + +Mrs. Darling first heard of Peter when she was tidying up her children's minds. It is the nightly custom of every good mother after her children are asleep to rummage in their minds and put things straight for next morning, repacking into their proper places the many articles that have wandered during the day. + +If you could keep awake (but of course you can't) you would see your own mother doing this, and you would find it very interesting to watch her. It is quite like tidying up drawers. You would see her on her knees, I expect, lingering humorously over some of your contents, wondering where on earth you had picked this thing up, making discoveries sweet and not so sweet, pressing this to her cheek as if it were as nice as a kitten, and hurriedly stowing that out of sight. When you wake in the morning, the naughtiness and evil passions with which you went to bed have been folded up small and placed at the bottom of your mind and on the top, beautifully aired, are spread out your prettier thoughts, ready for you to put on. + +I don't know whether you have ever seen a map of a person's mind. Doctors sometimes draw maps of other parts of you, and your own map can become intensely interesting, but catch them trying to draw a map of a child's mind, which is not only confused, but keeps going round all the time. There are zigzag lines on it, just like your temperature on a card, and these are probably roads in the island, for the Neverland is always more or less an island, with astonishing splashes of colour here and there, and coral reefs and rakish-looking craft in the offing, and savages and lonely lairs, and gnomes who are mostly tailors, and caves through which a river runs, and princes with six elder brothers, and a hut fast going to decay, and one very small old lady with a hooked nose. It would be an easy map if that were all, but there is also first day at school, religion, fathers, the round pond, needle-work, murders, hangings, verbs that take the dative, chocolate pudding day, getting into braces, say ninety-nine, three-pence for pulling out your tooth yourself, and so on, and either these are part of the island or they are another map showing through, and it is all rather confusing, especially as nothing will stand still. + +Of course the Neverlands vary a good deal. John's, for instance, had a lagoon with flamingoes flying over it at which John was shooting, while Michael, who was very small, had a flamingo with lagoons flying over it. John lived in a boat turned upside down on the sands, Michael in a wigwam, Wendy in a house of leaves deftly sewn together. John had no friends, Michael had friends at night, Wendy had a pet wolf forsaken by its parents, but on the whole the Neverlands have a family resemblance, and if they stood still in a row you could say of them that they have each other's nose, and so forth. On these magic shores children at play are for ever beaching their coracles [simple boat]. We too have been there; we can still hear the sound of the surf, though we shall land no more. + +Of all delectable islands the Neverland is the snuggest and most compact, not large and sprawly, you know, with tedious distances between one adventure and another, but nicely crammed. When you play at it by day with the chairs and table-cloth, it is not in the least alarming, but in the two minutes before you go to sleep it becomes very real. That is why there are night-lights. + +Occasionally in her travels through her children's minds Mrs. Darling found things she could not understand, and of these quite the most perplexing was the word Peter. She knew of no Peter, and yet he was here and there in John and Michael's minds, while Wendy's began to be scrawled all over with him. The name stood out in bolder letters than any of the other words, and as Mrs. Darling gazed she felt that it had an oddly cocky appearance.]]> + + 358 + 2010-10-05 00:27:25 + 2010-10-05 07:27:25 + closed + closed + post-format-standard + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Gallery + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/ + Fri, 10 Sep 2010 14:24:14 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=555 + + + +You can use this page to test the Theme's handling of the gallery shortcode, including the columns parameter, from 1 to 9 columns. Themes are only required to support the default setting (3 columns), so this page is entirely optional. +

    One Column

    +[gallery columns="1"] +

    Two Columns

    +[gallery columns="2"] +

    Three Columns

    +[gallery columns="3"] +

    Four Columns

    +[gallery columns="4"] +

    Five Columns

    +[gallery columns="5"] +

    Six Columns

    +[gallery columns="6"] +

    Seven Columns

    +[gallery columns="7"] +

    Eight Columns

    +[gallery columns="8"] +

    Nine Columns

    +[gallery columns="9"]]]>
    + + 555 + 2010-09-10 07:24:14 + 2010-09-10 14:24:14 + closed + closed + post-format-gallery + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Post Format: Aside + https://wpthemetestdata.wordpress.com/2010/05/09/post-format-aside/ + Sun, 09 May 2010 14:51:54 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=559 + + + + 559 + 2010-05-09 07:51:54 + 2010-05-09 14:51:54 + closed + closed + post-format-aside + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Chat + https://wpthemetestdata.wordpress.com/2010/01/08/post-format-chat/ + Fri, 08 Jan 2010 14:59:31 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=562 + + + + 562 + 2010-01-08 07:59:31 + 2010-01-08 14:59:31 + closed + closed + post-format-chat + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Link + https://wpthemetestdata.wordpress.com/2010/03/07/post-format-link/ + Sun, 07 Mar 2010 15:06:53 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=565 + + The WordPress Theme Review Team Website]]> + + 565 + 2010-03-07 08:06:53 + 2010-03-07 15:06:53 + closed + closed + post-format-link + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Image (Linked) + https://wpthemetestdata.wordpress.com/2010/08/06/post-format-image-linked/ + Fri, 06 Aug 2010 15:09:39 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=568 + + chunk of resinous blackboy husk[/caption] +]]> + + 568 + 2010-08-06 08:09:39 + 2010-08-06 15:09:39 + closed + closed + post-format-image-linked + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Quote + https://wpthemetestdata.wordpress.com/2010/02/05/post-format-quote/ + Fri, 05 Feb 2010 15:13:15 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=575 + + Only one thing is impossible for God: To find any sense in any copyright law on the planet. +Mark Twain]]> + + 575 + 2010-02-05 08:13:15 + 2010-02-05 15:13:15 + closed + closed + post-format-quote + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Status + https://wpthemetestdata.wordpress.com/2010/04/04/post-format-status/ + Sun, 04 Apr 2010 15:21:24 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=579 + + + + 579 + 2010-04-04 08:21:24 + 2010-04-04 15:21:24 + closed + closed + post-format-status + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Video (WordPress.tv) + https://wpthemetestdata.wordpress.com/2010/06/03/post-format-video-wordpresstv/ + Thu, 03 Jun 2010 15:25:58 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=582 + + instructions in the Codex.]]> + + 582 + 2010-06-03 08:25:58 + 2010-06-03 15:25:58 + closed + closed + post-format-video-wordpresstv + publish + 0 + 0 + post + + 0 + + + + + + + + + _oembed_4321638fc1a6fee26443f7fe8a70a871 + ]]> + + + _oembed_29351fff85c1be1d1e9a965a0332a861 + ]]> + + + _oembed_9fcc86d7d9398ff736577f922307f64d + ]]> + + + _oembed_366237792d32461d0052efb2edec37f5 + ]]> + + + _oembed_37fdfe862c13c46a93be2921279bf675 + ]]> + + + + Post Format: Audio + https://wpthemetestdata.wordpress.com/2010/07/02/post-format-audio/ + Fri, 02 Jul 2010 15:36:44 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=587 + + St. Louis Blues + +Audio shortcode: + +[audio https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3]]]> + + 587 + 2010-07-02 08:36:44 + 2010-07-02 15:36:44 + closed + closed + post-format-audio + publish + 0 + 0 + post + + 0 + + + + + + + + enclosure + + + + + Page A + https://wpthemetestdata.wordpress.com/page-a/ + Fri, 24 Jun 2011 01:38:52 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=733 + + + + 733 + 2011-06-23 18:38:52 + 2011-06-24 01:38:52 + open + closed + page-a + publish + 0 + 10 + page + + 0 + + + Page B + https://wpthemetestdata.wordpress.com/page-b/ + Fri, 24 Jun 2011 01:39:14 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=735 + + + + 735 + 2011-06-23 18:39:14 + 2011-06-24 01:39:14 + open + closed + page-b + publish + 0 + 11 + page + + 0 + + + Level 2a + https://wpthemetestdata.wordpress.com/level-1/level-2a/ + Fri, 24 Jun 2011 02:03:33 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=742 + + + + 742 + 2011-06-23 19:03:33 + 2011-06-24 02:03:33 + open + closed + level-2a + publish + 174 + 0 + page + + 0 + + + Level 2b + https://wpthemetestdata.wordpress.com/level-1/level-2b/ + Fri, 24 Jun 2011 02:04:03 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=744 + + + + 744 + 2011-06-23 19:04:03 + 2011-06-24 02:04:03 + open + closed + level-2b + publish + 174 + 0 + page + + 0 + + + Level 3a + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3a/ + Fri, 24 Jun 2011 02:04:24 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=746 + + + + 746 + 2011-06-23 19:04:24 + 2011-06-24 02:04:24 + open + closed + level-3a + publish + 173 + 0 + page + + 0 + + + Level 3b + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3b/ + Fri, 24 Jun 2011 02:04:46 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=748 + + + + 748 + 2011-06-23 19:04:46 + 2011-06-24 02:04:46 + open + closed + level-3b + publish + 173 + 0 + page + + 0 + + + Template: Excerpt (Defined) + https://wpthemetestdata.wordpress.com/2012/03/15/template-excerpt-defined/ + Thu, 15 Mar 2012 21:38:08 +0000 + themedemos + http://wptest.io/demo/?p=993 + + should be displayed in place of the user-defined excerpt in single-page views.]]> + should be displayed in place of the post content in archive-index pages. It can be longer than the automatically generated excerpts, and can have HTML tags.]]> + 993 + 2012-03-15 14:38:08 + 2012-03-15 21:38:08 + closed + closed + template-excerpt-defined + publish + 0 + 0 + post + + 0 + + + + + + + + + Template: More Tag + https://wpthemetestdata.wordpress.com/2012/03/15/template-more-tag/ + Thu, 15 Mar 2012 21:41:11 +0000 + themedemos + http://wptest.io/demo/?p=996 + + more tag. + +Right after this sentence should be a "continue reading" button of some sort on list pages of themes that show full content. It won't show on single pages or on themes showing excerpts. + + + +And this content is after the more tag. (which should be the anchor link for when the button is clicked)]]> + + 996 + 2012-03-15 14:41:11 + 2012-03-15 21:41:11 + closed + closed + template-more-tag + publish + 0 + 0 + post + + 0 + + + + + + + + + Edge Case: Nested And Mixed Lists + https://wpthemetestdata.wordpress.com/2009/05/15/edge-case-nested-and-mixed-lists/ + Fri, 15 May 2009 21:48:32 +0000 + themedemos + http://wptest.io/demo/?p=1000 + + +
  • Lists within lists do not break the ordered list numbering order
  • +
  • Your list styles go deep enough.
  • + +

    Ordered - Unordered - Ordered

    +
      +
    1. ordered item
    2. +
    3. ordered item +
        +
      • unordered
      • +
      • unordered +
          +
        1. ordered item
        2. +
        3. ordered item
        4. +
        +
      • +
      +
    4. +
    5. ordered item
    6. +
    7. ordered item
    8. +
    +

    Ordered - Unordered - Unordered

    +
      +
    1. ordered item
    2. +
    3. ordered item +
        +
      • unordered
      • +
      • unordered +
          +
        • unordered item
        • +
        • unordered item
        • +
        +
      • +
      +
    4. +
    5. ordered item
    6. +
    7. ordered item
    8. +
    +

    Unordered - Ordered - Unordered

    +
      +
    • unordered item
    • +
    • unordered item +
        +
      1. ordered
      2. +
      3. ordered +
          +
        • unordered item
        • +
        • unordered item
        • +
        +
      4. +
      +
    • +
    • unordered item
    • +
    • unordered item
    • +
    +

    Unordered - Unordered - Ordered

    +
      +
    • unordered item
    • +
    • unordered item +
        +
      • unordered
      • +
      • unordered +
          +
        1. ordered item
        2. +
        3. ordered item
        4. +
        +
      • +
      +
    • +
    • unordered item
    • +
    • unordered item
    • +
    ]]>
    + + 1000 + 2009-05-15 14:48:32 + 2009-05-15 21:48:32 + closed + closed + edge-case-nested-and-mixed-lists + publish + 0 + 0 + post + + 0 + + + + + + + +
    + + Template: Featured Image (Horizontal) + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-horizontal/ + Thu, 15 Mar 2012 22:15:12 +0000 + themedemos + http://wptest.io/demo/?p=1011 + + featured image, if the theme supports it. + +Non-square images can provide some unique styling issues. + +This post tests a horizontal featured image.]]> + + 1011 + 2012-03-15 15:15:12 + 2012-03-15 22:15:12 + closed + closed + template-featured-image-horizontal + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + + + + Template: Featured Image (Vertical) + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-vertical/ + Thu, 15 Mar 2012 22:36:32 +0000 + themedemos + http://wptest.io/demo/?p=1016 + + featured image, if the theme supports it. + +Non-square images can provide some unique styling issues. + +This post tests a vertical featured image.]]> + + 1016 + 2012-03-15 15:36:32 + 2012-03-15 22:36:32 + closed + closed + template-featured-image-vertical + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + + + + Post Format: Gallery (Tiled) + https://wpthemetestdata.wordpress.com/2010/09/09/post-format-gallery-tiled/ + Fri, 10 Sep 2010 00:23:27 +0000 + themedemos + http://wptest.io/demo/?p=1031 + + Jetpack to test. + +[gallery type="rectangular" columns="4" ids="755,757,758,760,766,763" orderby="rand"] + +This is some text after the Tiled Gallery just to make sure that everything spaces nicely.]]> + + 1031 + 2010-09-09 17:23:27 + 2010-09-10 00:23:27 + closed + closed + post-format-gallery-tiled + publish + 0 + 0 + post + + 0 + + + + + + + + + + + Page Image Alignment + https://wpthemetestdata.wordpress.com/about/page-image-alignment/ + Fri, 15 Mar 2013 23:19:23 +0000 + themedemos + http://wptest.io/demo/?page_id=1080 + + None, Left, Right, and Center. In addition, they also get the options of Thumbnail, Medium, Large & Fullsize. Be sure to try this page in RTL mode and it should look the same as LTR. +

    Image Alignment 580x300

    +The image above happens to be centered. + +Image Alignment 150x150 The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see there should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +Image Alignment 1200x400 + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 1200x400 + +And we try the large image again, with the center alignment since that sometimes is a problem. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 300x200 + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And just when you thought we were done, we're going to do them all over again with captions! + +[caption id="attachment_906" align="aligncenter" width="580"]Image Alignment 580x300 Look at 580x300 getting some caption love.[/caption] + +The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky. + +[caption id="attachment_904" align="alignleft" width="150"]Image Alignment 150x150 Bigger caption than the image usually is.[/caption] + +The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +[caption id="attachment_907" align="alignnone" width="1200"]Image Alignment 1200x400 Comment for massive image for your eyeballs.[/caption] + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. +[caption id="attachment_907" align="aligncenter" width="1200"]Image Alignment 1200x400 This massive image is centered.[/caption] + +And again with the big image centered. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +[caption id="attachment_905" align="alignright" width="300"]Image Alignment 300x200 Feels good to be right all the time.[/caption] + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! Last thing is a small image aligned right. Whatever follows should be unaffected. Image Alignment 150x150]]>
    + + 1133 + 2013-03-15 18:19:23 + 2013-03-15 23:19:23 + open + open + page-image-alignment + publish + 2 + 0 + page + + 0 +
    + + Page Markup And Formatting + https://wpthemetestdata.wordpress.com/about/page-markup-and-formatting/ + Fri, 15 Mar 2013 23:20:05 +0000 + themedemos + http://wptest.io/demo/?page_id=1083 + + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    Jane$1Because that's all Steve Jobs needed for a salary.
    John$100KFor all the blogging he does.
    Jane$100MPictures are worth a thousand words, right? So Tom x 1,000.
    Jane$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    + Robert Frost
    +
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +This tag shows strike-through text. + +Small Tag + +This tag shows smaller text. + +Strong Tag + +This tag shows bold text. + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +This rarely used tag emulates teletype text, which is usually styled like the <code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +This tag shows underlined text. + +Variable Tag + +This allows you to denote variables.]]>
    + + 1134 + 2013-03-15 18:20:05 + 2013-03-15 23:20:05 + open + open + page-markup-and-formatting + publish + 2 + 0 + page + + 0 +
    + + Template: Comments + https://wpthemetestdata.wordpress.com/2012/01/03/template-comments/ + Tue, 03 Jan 2012 17:11:37 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/comment-test/ + + +
  • Threaded comments up to 10 levels deep
  • +
  • Paginated comments (set Settings > Discussion > Break comments into pages to 5 top level comments per page)
  • +
  • Comment markup / formatting
  • +
  • Comment images
  • +
  • Comment videos
  • +
  • Author comments
  • +
  • Gravatars and default fallbacks
  • +]]>
    + + 1148 + 2012-01-03 10:11:37 + 2012-01-03 17:11:37 + open + closed + template-comments + publish + 0 + 0 + post + + 0 + + + + + + + 881 + + example@example.org + http://example.org/ + + 2012-09-03 10:18:04 + 2012-09-03 17:18:04 + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    John Saddington$1Because that's all Steve Job' needed for a salary.
    Tom McFarlin$100KFor all the blogging he does.
    Jared Erickson$100MPictures are worth a thousand words, right? So Tom x 1,000.
    Chris Ames$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    + +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    +Robert Frost
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    + +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up.]]>
    + 1 + + 0 + 0 +
    + + 899 + + fake@example.com + + + 2013-03-11 23:45:54 + 2013-03-12 04:45:54 + Gravatar associated with it. + They did not speify a website, so there should be no link to it in the comment. +]]> + 1 + + 0 + 0 + + + 900 + + example@example.org + http://example.org/ + + 2013-03-12 13:17:35 + 2013-03-12 20:17:35 + + 1 + + 0 + 0 + + + 901 + + example@example.org + http://example.org + + 2013-03-14 07:53:26 + 2013-03-14 14:53:26 + + 1 + + 0 + 0 + + + 903 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 07:56:46 + 2013-03-14 14:56:46 + + 1 + + 0 + 24783058 + + + 904 + + example@example.org + http://example.org/ + + 2013-03-14 07:57:01 + 2013-03-14 14:57:01 + + 1 + + 0 + 0 + + + 905 + + example@example.org + http://example.org/ + + 2013-03-14 08:01:21 + 2013-03-14 15:01:21 + + 1 + + 904 + 0 + + + 906 + + example@example.org + http://example.org/ + + 2013-03-14 08:02:06 + 2013-03-14 15:02:06 + + 1 + + 905 + 0 + + + 907 + + example@example.org + http://example.org/ + + 2013-03-14 08:03:22 + 2013-03-14 15:03:22 + + 1 + + 906 + 0 + + + 910 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 08:10:29 + 2013-03-14 15:10:29 + + 1 + + 907 + 24783058 + + + 911 + + example@example.org + http://example.org/ + + 2013-03-14 08:12:16 + 2013-03-14 15:12:16 + + 1 + + 910 + 0 + + + 912 + + example@example.org + http://example.org/ + + 2013-03-14 08:12:58 + 2013-03-14 15:12:58 + + 1 + + 911 + 0 + + + 913 + + example@example.org + http://example.org/ + + 2013-03-14 08:13:42 + 2013-03-14 15:13:42 + + 1 + + 912 + 0 + + + 914 + + example@example.org + http://example.org/ + + 2013-03-14 08:14:13 + 2013-03-14 15:14:13 + + 1 + + 913 + 0 + + + 915 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 08:14:47 + 2013-03-14 15:14:47 + + 1 + + 914 + 24783058 + + + 917 + + example@example.org + http://example.org/ + + 2013-03-14 09:56:43 + 2013-03-14 16:56:43 + + If the image imports... + ]]> + 1 + + 0 + 0 + + + 918 + + example@example.org + http://example.org/ + + 2013-03-14 11:23:24 + 2013-03-14 18:23:24 + + 1 + + 0 + 0 + + + 919 + + example@example.org + http://example.org/ + + 2013-03-14 11:27:54 + 2013-03-14 18:27:54 + + 1 + + 0 + 0 + + + 920 + + example@example.org + http://example.org/ + + 2013-03-14 11:30:33 + 2013-03-14 18:30:33 + + 1 + + 0 + 24783058 + + + 1015 + + auser@example.com + + + 2014-09-29 02:52:15 + 2014-09-29 09:52:15 + + 0 + + 0 + 0 + +
    + + Template: Pingbacks And Trackbacks + https://wpthemetestdata.wordpress.com/2012/01/01/template-pingbacks-an-trackbacks/ + Sun, 01 Jan 2012 17:17:18 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/many-trackbacks/ + + +
  • Above the comments
  • +
  • Below the comments
  • +
  • Included within the normal flow of comments
  • +]]>
    + + 1149 + 2012-01-01 10:17:18 + 2012-01-01 17:17:18 + closed + closed + template-pingbacks-an-trackbacks + publish + 0 + 0 + post + + 0 + + + + + + + + + 921 + + + http://tellyworth.wordpress.com/2007/11/21/ping-1/ + + 2007-11-21 11:31:12 + 2007-11-21 01:31:12 + + 1 + trackback + 0 + 0 + + + 922 + + + http://tellyworth.wordpress.com/2007/11/21/ping-2-with-a-much-longer-title-than-the-previous-ping-which-was-called-ping-1/ + + 2007-11-21 11:35:47 + 2007-11-21 01:35:47 + + 1 + trackback + 0 + 0 + + + 923 + + + http://tellyworth.wordpress.com/2007/11/21/ping-4/ + + 2007-11-21 11:39:25 + 2007-11-21 01:39:25 + + 1 + pingback + 0 + 0 + + + 924 + + + http://tellyworth.wordpress.com/2007/11/21/ping-3/ + + 2007-11-21 11:38:22 + 2007-11-21 01:38:22 + + 1 + pingback + 0 + 0 + + + 925 + + example@example.org + http://example.org/ + + 2010-06-11 15:27:04 + 2010-06-11 22:27:04 + + 1 + + 0 + 0 + +
    + + Template: Comments Disabled + https://wpthemetestdata.wordpress.com/2012/01/02/template-comments-disabled/ + Mon, 02 Jan 2012 17:21:15 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/no-comments/ + + should display pingbacks and trackbacks.]]> + + 1150 + 2012-01-02 10:21:15 + 2012-01-02 17:21:15 + closed + closed + template-comments-disabled + publish + 0 + 0 + post + + 0 + + + + + + + + Edge Case: Many Tags + https://wpthemetestdata.wordpress.com/2009/06/01/edge-case-many-tags/ + Mon, 01 Jun 2009 08:00:34 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/11/24/many-tags/ + + + + 1151 + 2009-06-01 01:00:34 + 2009-06-01 08:00:34 + closed + closed + edge-case-many-tags + publish + 0 + 0 + post + + 0' + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Edge Case: Many Categories + https://wpthemetestdata.wordpress.com/2009/07/02/edge-case-many-categories/ + Thu, 02 Jul 2009 09:00:03 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/11/24/many-categories/ + + + + 1152 + 2009-07-02 02:00:03 + 2009-07-02 09:00:03 + closed + closed + edge-case-many-categories + publish + 0 + 0 + post + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Scheduled + https://wpthemetestdata.wordpress.com/2020/01/01/scheduled/ + Wed, 01 Jan 2030 19:00:18 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=418 + + + + 1153 + 2030-01-01 12:00:18 + 2030-01-01 19:00:18 + closed + closed + scheduled + future + 0 + 0 + post + + 0 + + + + + + Post Format: Image + https://wpthemetestdata.wordpress.com/2010/08/08/post-format-image/ + Sun, 08 Aug 2010 12:00:39 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=568 + +
      + +]]>
    + + 1158 + 2010-08-08 05:00:39 + 2010-08-08 12:00:39 + closed + closed + post-format-image + publish + 0 + 0 + post + + 0 + + + + + +
    + + Post Format: Video (YouTube) + https://wpthemetestdata.wordpress.com/2010/06/02/post-format-video-youtube/ + Wed, 02 Jun 2010 09:00:58 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=582 + + WordPress Embeds.]]> + + 1161 + 2010-06-02 02:00:58 + 2010-06-02 09:00:58 + closed + closed + post-format-video-youtube + publish + 0 + 0 + post + + 0 + + + + + + + Post Format: Image (Caption) + https://wpthemetestdata.wordpress.com/2010/08/07/post-format-image-caption/ + Sat, 07 Aug 2010 13:00:19 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=674 + + Bell on Wharf Bell on wharf in San Francisco[/caption]]]> + + 1163 + 2010-08-07 06:00:19 + 2010-08-07 13:00:19 + closed + closed + post-format-image-caption + publish + 0 + 0 + post + + 0 + + + + + + + + _thumbnail_id + + + + + Draft + https://wpthemetestdata.wordpress.com/?p=1164 + Tue, 09 Apr 2013 18:20:39 +0000 + themedemos + http://wptest.io/demo/?p=922 + + + + 1164 + 2013-04-09 11:20:39 + 2013-04-09 18:20:39 + closed + closed + + draft + 0 + 0 + post + + 0 + + + + + + Template: Password Protected (the password is "enter") + https://wpthemetestdata.wordpress.com/2012/01/04/template-password-protected/ + Wed, 04 Jan 2012 16:38:05 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/test-with-secret-password/ + + + + 1168 + 2012-01-04 09:38:05 + 2012-01-04 16:38:05 + closed + closed + template-password-protected + publish + 0 + 0 + post + enter + 0 + + + + + + + 926 + + example@example.org + http://example.org/ + + 2013-03-14 11:56:08 + 2013-03-14 18:56:08 + + 1 + + 0 + 0 + + + + + <link>https://wpthemetestdata.wordpress.com/2009/09/05/edge-case-no-title/</link> + <pubDate>Sat, 05 Sep 2009 16:00:23 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2007/09/04/14/</guid> + <description/> + <content:encoded><![CDATA[This post has no title, but it still must link to the single post view somehow. + +This is typically done by placing the permalink on the post date.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1169</wp:post_id> + <wp:post_date>2009-09-05 09:00:23</wp:post_date> + <wp:post_date_gmt>2009-09-05 16:00:23</wp:post_date_gmt> + <wp:comment_status>closed</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>edge-case-no-title</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>0</wp:menu_order> + <wp:post_type>post</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="category" nicename="classic"><![CDATA[Classic]]></category> + <category domain="post_tag" nicename="edge-case"><![CDATA[edge case]]></category> + <category domain="category" nicename="edge-case-2"><![CDATA[Edge Case]]></category> + <category domain="post_tag" nicename="layout"><![CDATA[layout]]></category> + <category domain="post_tag" nicename="title"><![CDATA[title]]></category> +</item> +<item> + <title>Edge Case: No Content + https://wpthemetestdata.wordpress.com/2009/08/06/edge-case-no-content/ + Thu, 06 Aug 2009 16:39:56 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/this-post-has-no-body/ + + + + 1170 + 2009-08-06 09:39:56 + 2009-08-06 16:39:56 + closed + closed + edge-case-no-content + publish + 0 + 0 + post + + 0 + + + + + + + 927 + + example@example.org + http://example.org/ + + 2013-03-14 12:35:07 + 2013-03-14 19:35:07 + + 1 + + 0 + 0 + + + + Template: Paginated + https://wpthemetestdata.wordpress.com/2012/01/08/template-paginated/ + Sun, 08 Jan 2012 17:00:20 +0000 + themedemos + https://noeltest.wordpress.com/?p=188 + + + +Post Page 2 + + + +Post Page 3]]> + + 1171 + 2012-01-08 10:00:20 + 2012-01-08 17:00:20 + closed + closed + template-paginated + publish + 0 + 0 + post + + 0 + + + + + + + + + <![CDATA[Markup: Title <em>With</em> <b>Mark<sup>up</sup></b>]]> + https://wpthemetestdata.wordpress.com/2013/01/05/markup-title-with-markup/ + Sat, 05 Jan 2013 17:00:49 +0000 + themedemos + http://wptest.io/demo/?p=861 + + +
  • The post title renders the word "with" in italics and the word "markup" in bold (and "up" is superscript).
  • +
  • The post title markup should be removed from the browser window / tab.
  • +]]>
    + + 1173 + 2013-01-05 10:00:49 + 2013-01-05 17:00:49 + closed + closed + markup-title-with-markup + publish + 0 + 0 + post + + 0 + + + + + +
    + + Markup: Title With Special Characters ~`!@#$%^&*()-_=+{}[]/\;:'"?,.> + https://wpthemetestdata.wordpress.com/2013/01/05/title-with-special-characters/ + Sat, 05 Jan 2013 18:00:20 +0000 + themedemos + http://wptest.io/demo/?p=867 + + Latin Character Tests +This is a test to see if the fonts used in this theme support basic Latin characters. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    !"#$%&'()*
    +,-./01234
    56789:;>=<
    ?@ABCDEFGH
    IJKLMNOPQR
    STUVWXYZ[\
    ]^_`abcdef
    ghijklmnop
    qrstuvwxyz
    {|}~
    ]]>
    + + 1174 + 2013-01-05 11:00:20 + 2013-01-05 18:00:20 + closed + closed + title-with-special-characters + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Taumatawhakatangihangakoauauotamateaturipukakapikimaungahoronukupokaiwhenuakitanatahu + https://wpthemetestdata.wordpress.com/2009/10/05/title-should-not-overflow-the-content-area/ + Mon, 05 Oct 2009 19:00:59 +0000 + themedemos + http://wptest.io/demo/?p=877 + + Title should not overflow the content area + +A few things to check for: +
      +
    • Non-breaking text in the title, content, and comments should have no adverse effects on layout or functionality.
    • +
    • Check the browser window / tab title.
    • +
    • If you are a plugin or widget developer, check that this text does not break anything.
    • +
    + +The following CSS properties will help you support non-breaking text. + +
    -ms-word-wrap: break-word;
    +word-wrap: break-word;
    + ]]>
    + + 1175 + 2009-10-05 12:00:59 + 2009-10-05 19:00:59 + closed + closed + title-should-not-overflow-the-content-area + publish + 0 + 0 + post + + 0 + + + + + + + + +
    + + Markup: Text Alignment + https://wpthemetestdata.wordpress.com/2013/01/09/markup-text-alignment/ + Wed, 09 Jan 2013 16:00:39 +0000 + themedemos + http://wptest.io/demo/?p=895 + + Default +This is a paragraph. It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love. Completely neutral and not picking a side or sitting on the fence. It just is. It just freaking is. It likes where it is. It does not feel compelled to pick a side. Leave him be. It will just be better that way. Trust me. +

    Left Align

    +

    This is a paragraph. It is left aligned. Because of this, it is a bit more liberal in it's views. It's favorite color is green. Left align tends to be more eco-friendly, but it provides no concrete evidence that it really is. Even though it likes share the wealth evenly, it leaves the equal distribution up to justified alignment.

    + +

    Center Align

    +

    This is a paragraph. It is center aligned. Center is, but nature, a fence sitter. A flip flopper. It has a difficult time making up its mind. It wants to pick a side. Really, it does. It has the best intentions, but it tends to complicate matters more than help. The best you can do is try to win it over and hope for the best. I hear center align does take bribes.

    + +

    Right Align

    +

    This is a paragraph. It is right aligned. It is a bit more conservative in it's views. It's prefers to not be told what to do or how to do it. Right align totally owns a slew of guns and loves to head to the range for some practice. Which is cool and all. I mean, it's a pretty good shot from at least four or five football fields away. Dead on. So boss.

    + +

    Justify Align

    +

    This is a paragraph. It is justify aligned. It gets really mad when people associate it with Justin Timberlake. Typically, justified is pretty straight laced. It likes everything to be in it's place and not all cattywampus like the rest of the aligns. I am not saying that makes it better than the rest of the aligns, but it does tend to put off more of an elitist attitude.

    ]]>
    + + 1176 + 2013-01-09 09:00:39 + 2013-01-09 16:00:39 + closed + closed + markup-text-alignment + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Markup: Image Alignment + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/ + Fri, 11 Jan 2013 03:15:40 +0000 + themedemos + http://wptest.io/demo/?p=903 + + None, Left, Right, and Center. In addition, they also get the options of Thumbnail, Medium, Large & Fullsize. Be sure to try this page in RTL mode and it should look the same as LTR. +

    Image Alignment 580x300

    +The image above happens to be centered. + +Image Alignment 150x150 The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +Image Alignment 1200x400 + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 1200x400 + +And we try the large image again, with the center alignment since that sometimes is a problem. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 300x200 + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And just when you thought we were done, we're going to do them all over again with captions! + +[caption id="attachment_906" align="aligncenter" width="580"]Image Alignment 580x300 Look at 580x300 getting some caption love.[/caption] + +The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky. + +[caption id="attachment_904" align="alignleft" width="150"]Image Alignment 150x150 Bigger caption than the image usually is.[/caption] + +The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +[caption id="attachment_907" align="alignnone" width="1200"]Image Alignment 1200x400 Comment for massive image for your eyeballs.[/caption] + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. +[caption id="attachment_907" align="aligncenter" width="1200"]Image Alignment 1200x400 This massive image is centered.[/caption] + +And again with the big image centered. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +[caption id="attachment_905" align="alignright" width="300"]Image Alignment 300x200 Feels good to be right all the time.[/caption] + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! One last thing: The last item in this post's content is a thumbnail floated right. Make sure any elements after the content are clearing properly. + +]]>
    + + 1177 + 2013-01-10 20:15:40 + 2013-01-11 03:15:40 + closed + closed + markup-image-alignment + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + +
    + + Markup: HTML Tags and Formatting + https://wpthemetestdata.wordpress.com/2013/01/11/markup-html-tags-and-formatting/ + Sat, 12 Jan 2013 03:22:19 +0000 + themedemos + http://wptest.io/demo/?p=919 + + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    John Doe$1Because that's all Steve Jobs needed for a salary.
    Jane Doe$100KFor all the blogging she does.
    Fred Bloggs$100MPictures are worth a thousand words, right? So Jane x 1,000.
    Jane Bloggs$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    +Robert Frost
    +
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +This tag shows strike-through text. + +Small Tag + +This tag shows smaller text. + +Strong Tag + +This tag shows bold text. + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +This rarely used tag emulates teletype text, which is usually styled like the <code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +This tag shows underlined text. + +Variable Tag + +This allows you to denote variables.]]>
    + + 1178 + 2013-01-11 20:22:19 + 2013-01-12 03:22:19 + closed + closed + markup-html-tags-and-formatting + publish + 0 + 0 + post + + 0 + + + + + + + +
    + + Media: Twitter Embeds + https://wpthemetestdata.wordpress.com/2011/03/15/media-twitter-embeds/ + Tue, 15 Mar 2011 22:47:16 +0000 + themedemos + http://wptest.io/demo/?p=1027 + + Twitter Embeds feature.]]> + + 1179 + 2011-03-15 15:47:16 + 2011-03-15 22:47:16 + closed + closed + media-twitter-embeds + publish + 0 + 0 + post + + 0 + + + + + + + + _oembed_time_d01e104b758ab65a49dfdede5913069c + + + + _oembed_ac49b172e1844531a885a53eff2efd91 + ]]> + + + _oembed_time_ac49b172e1844531a885a53eff2efd91 + + + + _oembed_d01e104b758ab65a49dfdede5913069c + ]]> + + + + Template: Sticky + https://wpthemetestdata.wordpress.com/2012/01/07/template-sticky/ + Sat, 07 Jan 2012 14:07:21 +0000 + themedemos + http://wptest.io/demo/?p=1241 + + +
  • The sticky post should be distinctly recognizable in some way in comparison to normal posts. You can style the .sticky class if you are using the post_class() function to generate your post classes, which is a best practice.
  • +
  • They should show at the very top of the blog index page, even though they could be several posts back chronologically.
  • +
  • They should still show up again in their chronologically correct postion in time, but without the sticky indicator.
  • +
  • If you have a plugin or widget that lists popular posts or comments, make sure that this sticky post is not always at the top of those lists unless it really is popular.
  • +]]>
    + + 1241 + 2012-01-07 07:07:21 + 2012-01-07 14:07:21 + closed + closed + template-sticky + publish + 0 + 0 + post + + 1 + + + + +
    + + Template: Excerpt (Generated) + https://wpthemetestdata.wordpress.com/2012/03/14/template-excerpt-generated/ + Wed, 14 Mar 2012 16:49:22 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=1446 + + excerpt_length and excerpt_more, display properly.]]> + + 1446 + 2012-03-14 09:49:22 + 2012-03-14 16:49:22 + closed + closed + template-excerpt-generated + publish + 0 + 0 + post + + 0 + + + + + + + + + Block category: Common + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-common/ + Fri, 02 Nov 2018 16:20:28 +0000 + >themereviewteam + https://wpthemetestdata.wordpress.com/?p=1730 + + +

    The Common category includes the following blocks: Paragraph, image, headings, list, gallery, quote, audio, cover, video.

    + + + +

    The paragraph block is the default block type.  It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love.

    + + + +

    This paragraph is left aligned.

    + + + +

    This italic paragraph is right aligned.

    + + + +

    Neither of these paragraphs care about politics, but this one is bold, medium sized and has a drop cap.

    + + + +

    This paragraph is centered.

    + + + +

    This paragraph prefers Jazz over Justin Timberlake. It also uses the small font size.

    + + + +

    This paragraph has something important to say:  It has a large font size, which defaults to 36px.

    + + + +

    The huge text size defaults to 46px, but the size can be customized.

    + + + +

    This paragraph is colorful, with a red background and white text (maybe). Colored blocks should have a high enough contrast, so that the text is readable.

    + + + +

    Below this block, you will see a single image with a circle mask applied.

    + + + +
    Image Alignment 150x150
    + + + +

    H1 Heading

    + + + +

    H2 Heading

    + + + +

    H3 Heading

    + + + +

    H4 Heading

    + + + +
    H5 Heading
    + + + +
    H6 Heading
    + + + +

    Ordered list

    + + + +
    1. The software should be licensed under the GNU Public License.
    2. The software should be freely available to anyone to use for any purpose, and without permission.
    3. The software should be open to modifications.
      1. Any modifications should be freely distributable at no cost and without permission from its creators.
    4. The software should provide a framework for translation to make it globally accessible to speakers of all languages.
    5. The software should provide a framework for extensions so modifications and enhancements can be made without modifying core code
    + + + +

    Unordered list

    + + + +
    • One
    • Two
    • Three
      • Four
    • Five
    + + + + + + + +

    Quote

    Cite
    + + + +
    + + + +
    +

    Cover block with background image

    +
    + + + +

    The file block has a setting that lets us show or hide a download button with editable text:

    + + + + + + + + + + + +

    Video blocks have settings for showing and hiding the playback controls. Use autoplay and playback controls responsibly.

    + + + +
    This is a video block caption.
    + + + +

    The video block below is muted and has a poster image that displays before the video starts:

    + + + +
    + +]]>
    + + 1730 + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + +
    + + Block category: Formatting + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-formatting/ + Fri, 02 Nov 2018 16:41:42 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1732 + + +

    The formatting category includes the following blocks:

    + + + +
    The code block starts with
    +<!-- wp:code -->
    +<?php echo 'Hello World'; ?>
    +
    + + +

    The classic block can have almost anything in it.

    +
    +
    a heading
    + + +
    The custom HTML block lets you put HTML that isn't configured like blocks in it. (this div has a width of 45%)
    + + + +
    The preformatted block.

    The Road Not Taken

    Robert Frost
    Two roads diverged in a yellow wood,
    And sorry I could not travel both (\_/)
    And be one traveler, long I stood (='.'=)
    And looked down one as far as I could (")_(")
    To where it bent in the undergrowth;

    Then took the other, as just as fair,
    And having perhaps the better claim, |\_/|
    Because it was grassy and wanted wear; / @ @ \
    Though as for that the passing there ( > º < )
    Had worn them really about the same, `>>x<<´
    / O \
    And both that morning equally lay
    In leaves no step had trodden black.
    Oh, I kept the first for another day!
    Yet knowing how way leads on to way,
    I doubted if I should ever come back.
    I shall be telling this with a sigh
    Somewhere ages and ages hence:
    Two roads diverged in a wood, and I—
    I took the one less traveled by,
    And that has made all the difference.



    and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    + + + +

    The pull quote can be aligned or wide or neither.

    Theme Reviewer
    + + + +
    The table blockThis is the default style.
    The cell next to this is empty.
    Cell #5
    Cell #6
    + + + +
    This is the striped style.This row should have a background color.
    The cell next to this is empty.

    This table has fixed width table cells.

    Make sure that the text wraps correctly.

    + + + +
    The Verse block

    A block for haiku?
    Why not?
    Blocks for all the things!
    +]]>
    + + 1732 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Block category: Layout Elements + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-layout-elements/ + Fri, 02 Nov 2018 16:44:37 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1734 + + +
    +

    The Layout Elements category includes the following blocks: Group, Button, Columns, Media & Text, separator, spacer, read more, and page break.

    + + + +

    This group block has a light green background color.

    + + + + + + + +

    The read more block should be right below this text, but only on list pages of themes that show the full content. It won't show on the single page or on themes showing excerpts.

    +
    + + + + + + + +
    +
    +

    The columns:

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    +
    + + + +
    Boardwalk
    +

    Media &Text

    + + + +

    For displaying media and text next to each other. By default, the media is to the left.

    +
    + + + +
    Golden Gate Bridge
    +

    This time our block is full width, and the image is to the right.

    + + + +

    The background color is a pale blue. 

    +
    + + + +

    Test to make sure that the editor and the front match. To test the Stack on mobile setting, reduce the browser window width.

    + + + +

    The control these settings, the block uses the css classes "has-media-on-the-right" and "is-stacked-on-mobile".

    + + + +

    The separator has three styles: default, wide line, and dots.

    + + + +
    + + + +
    + + + +
    + + + +

    The spacer block has a default height of 100 pixels:

    + + + + + + + +

    And finally, the page break:

    + + + + + + + +

    This paragraph block is on page two, after the page break.

    + + + + +]]>
    + + 1734 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block category: Embeds + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-embeds/ + Fri, 02 Nov 2018 16:51:55 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1738 + + + +

    This post tests various embed blocks:

    + + + +
    +https://twitter.com/WordPress/status/1057136472321613824 +
    Twitter,  wide width
    + + + +
    +https://youtu.be/ex8fMxXJDJw +
    YouTube
    + + + +
    +https://www.facebook.com/6427302910/posts/10156380423617911/ +
    + + + +
    +https://www.instagram.com/p/BpmueLLgEn_/?utm_source=ig_share_sheet&igshid=1hcxphic7p9e2 +
    + + + +
    +https://wordpress.tv/2018/10/14/kjell-reigstad-allan-cole-how-we-made-our-first-gutenberg-powered-theme/ +
    WordPress TV, full width
    + + + +

    +]]>
    + + 1738 + + + + + + + 0 + 0 + + + 0 + + + + + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + + + + + + + + + + ]]> + + + + + + + +

    Many of the WordPress contribution teams have been working hard on the new WordPress editor, and the tools, services,...

    Publicerat av WordPress Måndag 3 september 2018
    ]]>
    +
    + + + + + + + ]]> + + + + + + + + ]]> + + + + + + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + + + + + + ]]> + + + + + + + +

    Many of the WordPress contribution teams have been working hard on the new WordPress editor, and the tools, services,...

    Publicerat av WordPress Måndag 3 september 2018
    ]]>
    +
    + + + + + + + ]]> + + + + + + + + ]]> + + + + + +
    + + Block category: Widgets + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-widgets/ + Fri, 02 Nov 2018 16:45:35 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1736 + + +

    The shortcode widget:

    + + + +[gallery columns=2 ids="770,771"] + + + +

    The Archive Widget:

    + + + + + +

    The same Archive widget but as a dropdown:

    + + + + + + + +

    The Category widget block has an additional option for showing category hierarchies:

    + + + + + +

    The Latest Comments widget can display or hide the avatars, the date, and the comment excerpt:

    + + + + + +

    Here is an example of the Comments widget with all the options disabled. The number of comments has been reduced to two.

    + + + + + +

    And here is the Latest Posts widget in the list view, with dates:

    + + + + + +

    Grid view, now sorted from A -Z.

    + + + + + +

    You can also change the number of columns used to display the latest posts. The block below only displays posts from the Block category:

    + + + + + +

    Search widget:

    + + + + + +

    Tag Cloud widget:

    + + + + + +

    RSS Feed widget:

    + + + + ]]>
    + + 1736 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Columns + https://wpthemetestdata.wordpress.com/2018/11/02/block-columns/ + Fri, 02 Nov 2018 12:10:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1743 + + +
    +
    +

    This page tests how the theme displays the columns block. The first block tests a two column block with paragraphs.

    +
    + + + +
    +

    This is the second column. It should align next to the first column. Reduce the browser window width to test the responsiveness.

    +
    +
    + + + +
    +
    +

    This is the second column block. It has 3 columns.

    +
    + + + +
    +

    Paragraph 2 is in the middle.

    +
    + + + +
    +

    Paragraph 3 is in the last column.

    +
    +
    + + + +
    +
    +

    The third column block has 4 columns. Make sure that all the text is visible and that it is not cut off.

    +
    + + + +
    +

    Now the columns are getting narrower.

    +
    + + + +
    +

    The margins between the columns should be wide enough,

    +
    + + + +
    +

    so that the content of the columns does not run into or overlap each other.

    +
    +
    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    + + + +
    +

    Column five.

    +
    +
    + + + +

    To change the number of columns, select the column block to open the settings panel. You can show up to 6 columns. If the theme has support for wide align, you can also set the alignments to wide and full width.

    + + + +

    Below is a column block with six columns, and no alignment:

    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    + + + +
    +

    Column five.

    +
    + + + +
    +

    Column six.

    +
    +
    + + + +

    Next is a 3 column block, with a wide alignment:

    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    +
    + + + +

    And here is a two column block with full width, and a longer text. Make sure that the text wraps correctly.

    + + + +
    +
    +

    This is column one. Sometimes, you may want to use columns to display a larger text, so, lets add some more words. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna. Praesent sit amet ligula id orci venenatis auctor. Phasellus porttitor, metus non tincidunt dapibus, orci pede pretium neque, sit amet adipiscing ipsum lectus et libero. Aenean bibendum. Curabitur mattis quam id urna. Vivamus dui. Donec nonummy lacinia lorem. Cras risus arcu, sodales ac, ultrices ac, mollis quis, justo. Sed a libero. Quisque risus erat, posuere at, tristique non, lacinia quis, eros.

    +
    + + + +
    +

    Column two. Cras volutpat, lacus quis semper pharetra, nisi enim dignissim est, et sollicitudin quam ipsum vel mi. Sed commodo urna ac urna. Nullam eu tortor. Curabitur sodales scelerisque magna. Donec ultricies tristique pede. Nullam libero. Nam sollicitudin felis vel metus. Nullam posuere molestie metus. Nullam molestie, nunc id suscipit rhoncus, felis mi vulputate lacus, a ultrices tortor dolor eget augue. Aenean ultricies felis ut turpis. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Suspendisse placerat tellus ac nulla. Proin adipiscing sem ac risus. Maecenas nisi. Cras semper.

    +
    +
    + + + +

    We can also add blocks inside columns:

    + + + +
    +
    +
    1. This is a numbered list,
    2. inside a 3 column block
    3. with a wide alignment.
    +
    + + + +
    +

    The middle column has a paragraph with an image block below.

    + + + +
    canola
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna.
    +
    + + + +
    +

    -This third column has a quote

    Theme Reviewer
    +
    +
    + + + +

    But wait there is more!  We also have a block called Media & Text, which is a two column block that helps you display media and text content next to each other, without having to first setup a column block:

    + + + +
    dsc20050813_115856_52
    +

    Media & Text

    + + + +

    A paragraph block sits ready to be used, below your headline.

    + + + +

    +
    +]]>
    + + 1743 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Block: Cover + https://wpthemetestdata.wordpress.com/2018/11/02/block-cover/ + Sat, 03 Nov 2018 12:25:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1745 + + +

    This is a left aligned cover block with a background image.

    + + + +

    The cover block lets you add text on top of images or videos.

    + + + +

    This blocktype has several alignment options, and you can also align or center the text inside the block.

    + + + +

    The background image can be fixed and you can change its opacity and add an overlay color.

    + + + +

    Make sure that the text wraps correctly over the image, and that text markup and alignments are working.

    + + + +

    The next image should have a pink overlay color, the text should be bold and aligned to the left:

    + + + +

    A center aligned cover image block, with a left aligned text.

    + + + +

    This is a full width cover block with a fixed background image with a 20% opacity.

    + + + +

    Make sure that all the text is readable.

    + + + +

    Our last cover image block has a wide width.

    + + + +

    This is a wide cover block with a video background.

    + + + +

    Compare the video and image blocks.
    This block is centered.

    + + + +

    The block below has no alignment, and the text is a link. Overlay colors must also work with video backgrounds.

    + + + + +]]>
    + + 1745 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Button + https://wpthemetestdata.wordpress.com/2018/11/02/block-button/ + Sat, 03 Nov 2018 13:20:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1747 + + +

    Button blocks are not semantically buttons, but links inside a styled div. 

    + + + +

    If you do not add a link, a link tag without an anchor will be used.

    + + + + + + + +

    Check to make sure that the text wraps correctly when the button has more than one line of text, and when it is extra long.

    + + + + + + + +

    Buttons have three styles: 

    + + + + + + + + + + + + + + + +

    If the theme has a custom color palette, test that background color and text color settings work correctly. 

    + + + + + + + +

    Now lets test how buttons display together with large texts.

    + + + +

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio.

    + + + + + + + +

    Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna. Praesent sit amet ligula id orci venenatis auctor. Phasellus porttitor, metus non tincidunt dapibus, orci pede pretium neque, sit amet adipiscing ipsum lectus et libero. Aenean bibendum. Curabitur mattis quam id urna.

    + + + + + + + +

    Vivamus dui. Donec nonummy lacinia lorem. Cras risus arcu, sodales ac, ultrices ac, mollis quis, justo. Sed a libero. Quisque risus erat, posuere at, tristique non, lacinia quis, eros.

    +]]>
    + + 1747 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Quote + https://wpthemetestdata.wordpress.com/2018/11/02/block-quote/ + Sat, 03 Nov 2018 03:05:49 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1749 + + +

    The quote block has two styles, regular:

    + + + +

    Gutenberg is more than an editor.

    The Gutenberg Team
    + + + +

    and large:

    + + + +

    Yes, it is a press, certainly, but a press from which shall flow in inexhaustible streams, the most abundant and most marvelous liquor that has ever flowed to relieve the thirst of men!


    Johannes Gutenberg
    + + + +

    The quote blocks themselves have no alignments but the text can be aligned, bold, italic, and linked:

    + + + +

    Right

    Theme Review
    + + + +

    In addition to the quote block, we also have the pull quote, with a regular and a solid color style.

    + + + +

    You can change the color of the border and the text with the regular style:

    + + + +

    In addition to the quote block, we also have the pull quote.

    Theme Reviewer
    + + + +

    Or change the background color and text color with the solid color style:

    + + + +

    a solid color style

    Theme Reviewer
    +]]>
    + + 1749 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Gallery + https://wpthemetestdata.wordpress.com/2018/11/02/block-gallery/ + Sat, 03 Nov 2018 04:34:24 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1752 + + +

    Gallery blocks have two settings: the number of columns, and whether or not images should be cropped. The default number of columns is three, and the maximum number of columns is eight.

    + + + +

    Below is a three column gallery at full width, with cropped images.

    + + + + + + + + + + + +

    Some more text for taking up space.

    + + + +

    A two column gallery, aligned to the left, linked to media file.

    + + + +

    In the editor, the image captions can be edited directly by clicking on the text.

    + + + +

    If the number of images cannot be divided into the number of columns you have selected, the default is to have the last image(s) automatically stretch to the width of your gallery.

    + + + + + + + +

    A four column gallery with a wide width:

    + + + + + + + +

    A five column gallery with normal images:

    + + + + + + + +

    This is the same gallery, but with cropped images.

    + + + + + + + +

    Six columns: does it work at all window sizes?

    + + + + + + + +

    Seven columns: how does this look on a narrow window?

    + + + + + + + +

    Eight columns:

    + + + + +]]>
    + + 1752 + + + + + + + 0 + 0 + + + 0 + + + + + + + + + +
    + + Block: Image + https://wpthemetestdata.wordpress.com/2018/11/03/block-image/ + Sat, 03 Nov 2018 15:20:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1755 + + +

    Welcome to image alignment! If you recognize this post, it is because these are blocks that have been converted from the classic Markup: Image Alignment post. The best way to demonstrate the ebb and flow of the various image positioning options is to nestle them snuggly among an ocean of words. Grab a paddle and let's get started. Be sure to try it in RTL mode. Left should stay left and right should stay right for both reading directions.

    + + + +

    On the topic of alignment, it should be noted that users can choose from the options of None, Left, Right, and Center. If the theme has added support for align wide, images can also be wide and full width. Be sure to test this page in RTL mode.

    + + + +

    In addition, they also get the options of the image dimensions 25%, 50%, 75%, 100% or a set width and height.

    + + + +
    Image Alignment 580x300
    + + + +

    The image above happens to be centered.

    + + + +
    Image Alignment 150x150
    + + + +

    The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned.

    + + + +

    As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished!

    + + + +

    And now for a massively large image. It also has no alignment.

    + + + +
    Image Alignment 1200x400
    + + + +

    The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.

    + + + +
    Image Alignment 300x200
    + + + +

    And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there… Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently.

    + + + +

    In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah… Just like that. It never felt so good to be right.

    + + + +

    And just when you thought we were done, we're going to do them all over again with captions!

    + + + +
    Image Alignment 580x300
    Look at 580x300 getting some caption love.
    + + + +

    The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky.

    + + + +
    Image Alignment 150x150
    Itty-bitty caption.
    + + + +

    The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned.

    + + + +

    As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished!

    + + + +

    And now for a massively large image. It also has no alignment.

    + + + +
    Image Alignment 1200x400
    Massive image comment for your eyeballs.
    + + + +

    The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.

    + + + +
    Image Alignment 300x200
    Feels good to be right all the time.
    + + + +

    And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there… Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently.

    + + + +

    In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah… Just like that. It never felt so good to be right.

    + + + +

    Imagine that we would find a use for the extra wide image! This image has the wide width alignment:

    + + + +
    Image Alignment 1200x4002
    + + + +

    Can we go bigger? This image has the full width alignment:

    + + + +
    Image Alignment 1200x4002
    + + + +

    And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! One last thing: The last item in this post's content is a thumbnail floated right. Make sure any elements after the content are clearing properly.

    + + + +
    +]]>
    + + 1755 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Ελληνικά-Greek + https://wpthemetestdata.wordpress.com/greek/ + Fri, 14 Feb 2020 10:31:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1809 + + Headings Επικεφαλίδες +

    Επικεφαλίδα 1 Header one

    +

    Επικεφαλίδα 2 Header two

    +

    Επικεφαλίδα 3 Header three

    +

    Επικεφαλίδα 2 Header four

    +
    Επικεφαλίδα 5 Header five
    +
    Επικεφαλίδα 6Header six
    +

    Παράθεση άλλου Blockquotes

    +Single line blockquote: Μια γραμμή +
    Πάντα να είναι περίεργος.
    +Πολλές γραμμέ με αναφορά Multi line blockquote with a cite reference: +
    Το HTML <blockquote> ElementHTML Block Quotation Element) καταδεικνύει ότι το κείμενο έχει μια παράθεση. Συνήθως οπτικοποιείται με εσοχή (δείτε Σημειώσεις για το πως να το αλλάξετε. Ίσως να δίνεται και URL πηγής με την χρήση του cite attribute, μπλα, μπλα <cite> .
    +multiple contributors - MDN HTML element reference - blockquote +

    Πίνακες Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Υπάλληλος EmployeeΜισθός Salary
    Τάδε κάποιος$1Γιατί τόσα χρειάζεται για να ζήσει
    Jane Doe$100KFor all the blogging she does.
    Fred Bloggs$100MPictures are worth a thousand words, right? So Jane x 1,000.
    Jane Bloggs$100BWith hair like that?! Enough said...
    +

    Λίστες Definition Lists

    +
    +
    Τίτλος λίστας Definition List Title
    +
    Υποδιαίρεση λίστας Definition list division.
    +
    +

    Λίστα με κουκίδες Unordered Lists (Nested)

    +
      +
    • Πρώτο στοιχείο List item one +
        +
      • Στοιχείο πρώτο List item one +
          +
        • Στοιχείο λίστα ένα List item one
        • +
        • Στοιχείο λίστας δύο List item two
        • +
        +
      • +
      • Στοιχείο δεύτερο -item two
      • +
      +
    • +
    • Στοιχειο δύο List item two
    • +
    +

    Αριθμημένη λίστα(Nested)

    +
      +
    1. Στοιχειο ξεκινά με 8-start at 8 +
        +
      1. Στοιχείο λίστας ενα List item one +
          +
        1. Στοιχείο λίστας ενα -reversed attribute
        2. +
        3. Στοιχείο λίστας δύο
        4. +
        +
      2. +
      3. Δεύτερο στοιχείο
      4. +
      +
    2. +
    3. Στοιχείο δύο
    4. +
    +

    Ετικέττες HTML Tags

    +Διεύθυνση Address Tag + +
    1 Απέραντη διαδρομή Infinite Loop +Απλωπολή , ΤΚ 95014 +Ελλάδα
    Αγκυρωση Anchor Tag (aka. Link) + +Πάραδειγμα συνδέσμου. + +Συντομογραφία Abbreviation Tag + +Η συντομογραφία κτλ σημαίνει "Και τα λοιπά". + +Ακρωνύμιο Acronym Tag + +Το ακρωνύμιο κυρ σημαίνει "Κύριος". + +Big Tag + +Αυτό είναι μεγάλο θέμα + +Cite Tag + +"Φάε το φαϊ σου" --Όλες οι μαμάδες + +Code Tag + +This tag styles blocks of code. +.post-title { +margin: 0 0 5px; +font-weight: bold; +font-size: 38px; +line-height: 1.2; +και μία γραμμή με πολύ πάρα πολύ υπερβολικά πάρα πολύ μεγάλο κείμενο που πρέπει να δούμε πως το χειρίζεται η γραμματοσειρά και αν ξεχειλίζει από τις γραμμές και δημιουργεί πρόβλημα; +} + +Διαγραφή Delete Tag + +Μπορείτε να διαγράφεται κείμενο, αλλά δεν συνιστάται. + +Έμφαση Emphasize Tag + +Θα πρέπει να κάνει ιταλικ italicize το κείμενο. + +Εισαγωγή Insert Tag + +Αυτό το tag υποδηλώνει εισηγμένο inserted κείμενο. + +Keyboard Tag + +Αυτό το ελάχιστο γνωστό κείμενο πληκτρολογίου keyboard Tag, συνήθως μορφοποιείται όμοια με το <κώδικα code> tag. + +Προδιαμορφωμένο Preformatted Tag +

    Ο Δρόμος που δεν διάλεξα - The Road Not Taken

    +
    Robert Frost
    +	 Δυο δρόμοι διασταυρώθηκαν σ' ένα χρυσαφένιο δάσος ,
    +	 Και προς λύπη μου και τους δυο τα πόδια μου να ταξιδέψουν δεν μπορούσαν
    +	 Κι επί μακρόν εστάθηκα , καθώς ένας ήμουν ταξιδευτής μονάχος ,
    +	 κι έστρεψα το βλέμμα μου στον πρώτο όσο να χαθεί στο βάθος
    +	 μέχρι εκεί που χάνονταν στα άγρια χόρτα που βλαστούσαν.
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	και μία μακριά, πάρα πολύ μακριά, υπερβολικά μακροσκελής δίχως νόημα πρόταση για να δούμε πως το χειρίζεται το θέμα εμφάνισης και αν αναδιπλώνεται, κρύβεται ή ξεχειλίζει;
    +
    +Quote Tag for short, inline quotes + +Προγραμματιστές, προγραμματιστές, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +Αυτή η ετικέτα είναι με διαγράμμιση strike-through κείμενο text. + +Μικρά Small Tag + +Αυτή η ετικέτα είναι μικρότερο smaller κείμενο text. + +Strong Tag + +Αυτή η ετικέτα δείχνει έντονο bold κείμενο text. + +Subscript Tag + +Getting our science styling on with H2 δύοO, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2 δύο, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +Αυτή η ετικέτα δείχνει τυλετυπος teletype κείμενο, which is usually styled like the <κώδικα code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +Αυτή η ετικέτα δείχνει υπογράμμιση underlined text. + +Variable Tag + +Αυτή η ετικέτα δείχνει παράμετροι variables.]]>
    + + 1809 + + + + + + + 0 + 0 + + + 0 + + + + + + + + +
    + + Επίπεδο 2 -Second Greek level + https://wpthemetestdata.wordpress.com//greek/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-2/ + Fri, 14 Feb 2020 10:31:47 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1811 + + + + 1811 + + + + + + + 1809 + 0 + + + 0 + + + + + + + + + + + Επίπεδο 3 + https://wpthemetestdata.wordpress.com/greek/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-2/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-3/ + Fri, 14 Feb 2020 10:32:50 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1813 + + + + 1813 + + + + + + + 1811 + 0 + + + 0 + + + + + + + + + + + <![CDATA[WP 6.1 Font size scale]]> + https://wpthemetestdata.wordpress.com/wp-6-1-font-size-scale/ + Mon, 16 Jan 2023 07:08:31 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-font-size-scale/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Small H2 Heading

    + + + +

    Medium H2 Heading

    + + + +

    Large H2 Heading

    + + + +

    Extra Large H2 Heading

    + + + +

    Small paragraph

    + + + +

    Medium paragraph

    + + + +

    Large paragraph

    + + + +

    Extra Large paragraph

    +]]> +
    + + 163 + + + + + + + + + 0 + 0 + + + 0 + + + + + + +
    + + <![CDATA[WP 6.1 spacing presets]]> + https://wpthemetestdata.wordpress.com/wp-6-1-spacing-presets/ + Mon, 16 Jan 2023 06:56:53 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-spacing-presets/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    On this page, some group blocks have border or background color set to increase visibility.

    + + + +
    +

    This group has a no background color and no additional spacing set.

    +
    + + + +
    +

    This group has a background color but no additional spacing set.

    +
    + + + +
    +

    This group has a 1px border and padding preset 1

    +
    + + + +
    +

    This group has padding preset 1

    +
    + + + +
    +

    This group has a 1px border and padding preset 2

    +
    + + + +
    +

    This group has a background color and padding preset 3

    +
    + + + +
    +

    This group has a background color and padding preset 4

    +
    + + + +
    +

    This group has a background color and padding preset 5

    +
    + + + +
    +

    This group has a background color and padding preset 6

    +
    + + + +
    +

    This group has a background color and padding preset 7

    +
    + + + +
    +

    This group has padding preset 7

    +
    + + + +
    +

    This group has a background color and margin preset 1

    +
    + + + +
    +

    This group has a background color and margin preset 2

    +
    + + + +
    +

    This group has a background color and margin preset 3

    +
    + + + +
    +

    This group has a background color and margin preset 4

    +
    + + + +
    +

    This group has a background color and margin preset 5

    +
    + + + +
    +

    This group has a background color and margin preset 6

    +
    + + + +
    +

    This group has a background color and margin preset 7

    +
    + + + +
    +

    This group has a 1px border, padding preset 4 and margin preset 4

    +
    + + + +
    +

    This group has padding preset 4 and margin preset 4

    +
    +]]>
    + + 150 + + + + + + + + + 0 + 0 + + + 0 + + + + + + +
    + + <![CDATA[WP 6.1 Theme block category]]> + https://wpthemetestdata.wordpress.com/wp-6-1-theme-block-category/ + Fri, 13 Jan 2023 18:38:05 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-theme-block-category/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Navigation block with page list:

    + + + + + + + +

    Site logo:

    + + + + + +

    Site title:

    + + + + + +

    Tagline block:

    + + + + + +

    Query loop "Title & Date" variation:

    + + + +
    + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Title & Excerpt" variation:

    + + + +
    + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Title, Date & Excerpt" variation:

    + + + +
    + + + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Image, Date & Title" variation:

    + + + +
    + + + + + + + + + + + + + + + + + +

    + +
    + + + +

    Avatar block:

    + + + + + +

    Post title block:

    + + + + + +

    Post excerpt:

    + + + + + +

    Post featured image:

    + + + + + +

    Post author:

    + + + + + +

    Post date:

    + + + + + +

    Categories:

    + + + + + +

    Tags:

    + + + + + +

    Next post & previous post:

    + + + + + + + +

    Read More:

    + + + + + +

    Comments block:

    + + + +
    + + + +
    +
    + + + +
    + + +
    + +
    + + + + +
    +
    + + + + + + + + + + + + + + +

    Post comments form block:

    +
    + + + + + +

    Login/out:

    + + + + + + + + + + + +

    Author biography block:

    + + + + + + + + + +

    Term description, archive title, search results title can not be shown on single posts.

    +]]>
    + + 51 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + + + + 2 + + + https://wpthemetestdata.wordpress.com/ + + + + + + + 0 + 0 + +
    + + <![CDATA[WP 6.1 Widgets block category]]> + https://wpthemetestdata.wordpress.com/wp-6-1-widgets-block-category/ + Fri, 13 Jan 2023 18:22:21 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-widgets-block-category/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Archives block:

    + + + + + + + +

    Categories list:

    + + + + + +

    Custom HTML:

    + + + + test + + + +

    Latest comments:

    + + + + + +

    Latest posts:

    + + + + + +

    Page list block:

    + + + + + +

    RSS block:

    + + + + + + + + + + + + + + + +

    Shortcode block:

    + + + + + +

    Social links:

    + + + + + + + + + + + + + + + +

    Tag cloud:

    + + + + + +

    +]]>
    + + 34 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Design category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-design-category-blocks/ + Fri, 13 Jan 2023 18:03:23 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-design-category-blocks/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + + + + + +
    +
    +

    One single column inside a columns block.

    +
    +
    + + + +
    +
    +

    Column one. The background color is on the single column.

    +
    + + + +
    +

    Column two

    +
    +
    + + + +
    +
    +

    Column one. The background color is on the parent columns block.

    +
    + + + +
    +

    Column two

    +
    + + + +
    +

    Column three

    +
    +
    + + + +
    +

    Group with paragraph inside. Below are the group block variations:

    +
    + + + +
    +

    Row

    + + + +

    Row

    +
    + + + +
    +

    Stack

    + + + +

    Stack

    +
    + + + +

    More block:

    + + + + + + + +

    Page break:

    + + + + + + + +

    Separators:

    + + + +

    Default style, no alignment:

    + + + +
    + + + +

    Default style, wide alignment:

    + + + +
    + + + +

    Default style, full width:

    + + + +
    + + + +

    Default style, align center:

    + + + +
    + + + +

    Wide style, no alignment:

    + + + +
    + + + +

    Wide style, wide alignment:

    + + + +
    + + + +

    Wide style, full width:

    + + + +
    + + + +

    Wide style, align center:

    + + + +
    + + + +

    Dotted style, no alignment:

    + + + +
    + + + +

    Dotted style, wide alignment:

    + + + +
    + + + +

    Dotted style, full width:

    + + + +
    + + + +

    Dotted style, align center:

    + + + +
    + + + +

    Spacer:

    + + + + +]]>
    + + 24 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Media category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-media-category-blocks/ + Fri, 13 Jan 2023 18:02:28 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-media-category-blocks/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Image block:

    + + + +
    dsc20050727_091048_222
    + + + +

    Gallery:

    + + + + + + + +

    Audio:

    + + + +
    + + + +

    Cover:

    + + + +
    Wind Farm
    +

    Write title...

    +
    + + + +
    +

    Fixed background

    +
    + + + +
    +

    Repeated background

    +
    + + + +
    +

    Fixed and Repeated background

    +
    + + + +
    dsc20050727_091048_222
    +

    Duotone

    +
    + + + +
    Rain Ripples
    +

    Top left

    +
    + + + +
    Rain Ripples
    +

    Top center

    +
    + + + +
    Rain Ripples
    +

    Top right

    +
    + + + +
    Rain Ripples
    +

    Center left

    +
    + + + +
    Rain Ripples
    +

    Center right

    +
    + + + +
    Rain Ripples
    +

    Bottom left

    +
    + + + +
    Rain Ripples
    +

    Bottom center

    +
    + + + +
    Rain Ripples
    +

    Bottom right

    +
    + + + + + + + +
    Boardwalk
    +

    This is the Media & Text block with an image on the left.

    +
    + + + +
    Image Alignment 1200x4002
    +

    This is the Media & Text block with a cropped image on the left

    +
    + + + +
    +

    This is the Media & Text block with a video the right.

    +
    + + + +
    +]]>
    + + 21 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Text category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-text-category-blocks/ + Fri, 13 Jan 2023 17:46:19 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-text-category-blocks + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Paragraph

    + + + +

    H1 Heading

    + + + +

    H2 Heading

    + + + +

    H3 Heading

    + + + +

    H4 Heading

    + + + +
    H5 Heading
    + + + +
    H6 Heading
    + + + +
      +
    • List
    • + + + +
    • List
    • +
    + + + +
      +
    1. List
    2. + + + +
    3. List
    4. +
    + + + +
      +
    1. List +
        +
      • List
      • +
      +
    2. +
    + + + +
    +

    Quote block

    +citation
    + + +

    classic block

    + + +
    code block
    + + + +
    Preformatted block
    + + + +

    Pull quote

    Citation
    + + + +
    table celltable cell two
    table cell threetable cell four
    Table caption
    + + + +
    header label oneheader label two
    table celltable cell two
    table cell threetable cell four
    footer label onefooter label two
    Table caption
    + + + +
    Verse block
    +]]>
    + + 8 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + +
    + + Keyboard navigation + https://wpthemetestdata.wordpress.com/2018/10/20/keyboard-navigation/ + Sun, 21 Oct 2018 03:03:48 +0000 + + https://wpthemetestdata.wordpress.com/?p=1724 + + +

    There are many different ways to use the web besides a mouse and a pair of eyes. Users navigate for example with a keyboard only or with their voice.

    + + + +

    All the functionality, including menus, links and forms should work using a keyboard only. This is essential for all assistive technology to work properly. The only way to test this, at the moment, is manually. The best time to test this is during development.

    + + + +

    How to keyboard test:

    + + + +

    Tab through your pages, links and forms to do the following tests:

    + + + +
    • Confirm that all links can be reached and activated via keyboard, including any in dropdown submenus.
    • Confirm that all links get a visible focus indicator (e.g., a border highlight).
    • Confirm that all visually hidden links (e.g. skip links) become visible when in focus.
    • Confirm that all form input fields and buttons can be accessed and used via keyboard.
    • Confirm that all interactions, buttons, and other controls can be triggered via keyboard — any action you can complete with a mouse must also be performable via keyboard.
    • Confirm that focus doesn’t move in unexpected ways around the page.
    • Confirm that using shift+tab to move backwards works as well.
    + + + +

    Resources

    + + + + +]]>
    + + 1724 + + + + + + + 0 + 0 + + + + 0 +
    + + About The Tests + https://wpthemetestdata.wordpress.com/about/ + Mon, 26 Jul 2010 02:40:01 +0000 + themedemos + https://wpthemetestdata.wordpress.com/about/ + + WordPress Theme Development Resources + +
      +
    1. See the WordPress Theme Developer Handbook for examples of best practices.
    2. +
    3. See the WordPress Code Reference for more information about WordPress' functions, classes, methods, and hooks.
    4. +
    5. See Theme Unit Test for a robust test suite for your Theme and get the latest version of the test data you see here.
    6. +
    7. See Releasing Your Theme for a guide to submitting your Theme to the Theme Directory.
    8. +
    ]]>
    + + 2 + 2010-07-25 19:40:01 + 2010-07-26 02:40:01 + closed + closed + about + publish + 0 + 1 + page + + 0 +
    + + Lorem Ipsum + https://wpthemetestdata.wordpress.com/lorem-ipsum/ + Tue, 04 Sep 2007 16:52:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/lorem-ipsum/ + + + + 146 + 2007-09-04 09:52:50 + 2007-09-04 16:52:50 + closed + closed + lorem-ipsum + publish + 0 + 7 + page + + 0 + + + Page with comments + https://wpthemetestdata.wordpress.com/about/page-with-comments/ + Tue, 04 Sep 2007 17:47:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/page-with-comments/ + + + + 155 + 2007-09-04 10:47:47 + 2007-09-04 17:47:47 + open + closed + page-with-comments + publish + 2 + 3 + page + + 0 + + 167 + + anon@example.com + + + 2007-09-04 10:49:28 + 2007-09-04 00:49:28 + + 1 + + 0 + 0 + + + 168 + + tellyworth+test2@example.com + + + 2007-09-04 10:49:03 + 2007-09-04 00:49:03 + + 1 + + 0 + 0 + + + 169 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2007-09-04 10:48:51 + 2007-09-04 17:48:51 + + 1 + + 0 + 0 + + + 1017 + + themereviewteam@gmail.com + + + 2014-12-10 01:56:24 + 2014-12-10 08:56:24 + + 0 + + 168 + 0 + + + + Page with comments disabled + https://wpthemetestdata.wordpress.com/about/page-with-comments-disabled/ + Tue, 04 Sep 2007 17:48:10 +0000 + themedemos + https://wpthemetestdata.wordpress.com/page-with-comments-disabled/ + + + + 156 + 2007-09-04 10:48:10 + 2007-09-04 17:48:10 + closed + closed + page-with-comments-disabled + publish + 2 + 4 + page + + 0 + + + Level 3 + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3/ + Tue, 11 Dec 2007 06:23:16 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-3/ + + + + 172 + 2007-12-11 16:23:16 + 2007-12-11 06:23:16 + closed + closed + level-3 + publish + 173 + 0 + page + + 0 + + + Level 2 + https://wpthemetestdata.wordpress.com/level-1/level-2/ + Tue, 11 Dec 2007 06:23:33 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-2/ + + + + 173 + 2007-12-11 16:23:33 + 2007-12-11 06:23:33 + closed + closed + level-2 + publish + 174 + 0 + page + + 0 + + + Level 1 + https://wpthemetestdata.wordpress.com/level-1/ + Tue, 11 Dec 2007 23:25:40 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-1/ + + + + 174 + 2007-12-11 16:25:40 + 2007-12-11 23:25:40 + closed + closed + level-1 + publish + 0 + 5 + page + + 0 + + + Clearing Floats + https://wpthemetestdata.wordpress.com/about/clearing-floats/ + Sun, 01 Aug 2010 16:42:26 +0000 + themedemos + https://wpthemetestdata.wordpress.com/ + + This is the second page]]> + + 501 + 2010-08-01 09:42:26 + 2010-08-01 16:42:26 + closed + closed + clearing-floats + publish + 2 + 2 + page + + 0 + + + canola2 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/canola2/ + Mon, 16 Jun 2008 13:17:54 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/canola2.jpg + + + + 611 + 2008-06-16 06:17:54 + 2008-06-16 13:17:54 + open + closed + canola2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/canola2.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + dsc20050727_091048_222 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050727_091048_222/ + Mon, 16 Jun 2008 13:20:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050727_091048_222.jpg + + + + 616 + 2008-06-16 06:20:37 + 2008-06-16 13:20:37 + open + closed + dsc20050727_091048_222 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050727_091048_222.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + dsc20050813_115856_52 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050813_115856_52/ + Mon, 16 Jun 2008 13:20:57 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050813_115856_52.jpg + + + + 617 + 2008-06-16 06:20:57 + 2008-06-16 13:20:57 + open + closed + dsc20050813_115856_52 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050813_115856_52.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Front Page + https://wpthemetestdata.wordpress.com/front-page/ + Sat, 21 May 2011 01:49:43 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=701 + + + + 701 + 2011-05-20 18:49:43 + 2011-05-21 01:49:43 + open + closed + front-page + publish + 0 + 0 + page + + 0 + + + a Blog page + https://wpthemetestdata.wordpress.com/blog/ + Sat, 21 May 2011 01:51:43 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=703 + + + + 703 + 2011-05-20 18:51:43 + 2011-05-21 01:51:43 + open + closed + blog + publish + 0 + 0 + page + + 0 + + 1016 + + example@example.com + + + 2014-11-29 21:03:05 + 2014-11-30 04:03:05 + + 0 + + 0 + 0 + + + + Bell on Wharf + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/100_5478/ + Mon, 16 Jun 2008 21:34:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/100_5478.jpg + + + + 754 + 2008-06-16 14:34:50 + 2008-06-16 21:34:50 + open + closed + 100_5478 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/100_5478.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Golden Gate Bridge + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/100_5540/ + Mon, 16 Jun 2008 21:35:55 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/100_5540.jpg + + + + 755 + 2008-06-16 14:35:55 + 2008-06-16 21:35:55 + open + closed + 100_5540 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/100_5540.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sunburst Over River + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/cep00032/ + Mon, 16 Jun 2008 21:41:24 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/cep00032.jpg + + + + 756 + 2008-06-16 14:41:24 + 2008-06-16 21:41:24 + open + closed + cep00032 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/cep00032.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Boardwalk + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dcp_2082/ + Mon, 16 Jun 2008 21:41:27 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dcp_2082.jpg + + + + 757 + 2008-06-16 14:41:27 + 2008-06-16 21:41:27 + open + closed + dcp_2082 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dcp_2082.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Yachtsody in Blue + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc03149/ + Mon, 16 Jun 2008 21:41:33 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc03149.jpg + + + + 758 + 2008-06-16 14:41:33 + 2008-06-16 21:41:33 + open + closed + dsc03149 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc03149.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Rain Ripples + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc04563/ + Mon, 16 Jun 2008 21:41:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc04563.jpg + + + + 759 + 2008-06-16 14:41:37 + 2008-06-16 21:41:37 + open + closed + dsc04563 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc04563.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sydney Harbor Bridge + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc09114/ + Mon, 16 Jun 2008 21:41:41 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc09114.jpg + + + + 760 + 2008-06-16 14:41:41 + 2008-06-16 21:41:41 + open + closed + dsc09114 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc09114.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Wind Farm + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050102_192118_51/ + Mon, 16 Jun 2008 21:41:42 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050102_192118_51.jpg + + + + 761 + 2008-06-16 14:41:42 + 2008-06-16 21:41:42 + open + closed + dsc20050102_192118_51 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050102_192118_51.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Antique Farm Machinery + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20051220_160808_102/ + Mon, 16 Jun 2008 21:41:45 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_160808_102.jpg + + + + 762 + 2008-06-16 14:41:45 + 2008-06-16 21:41:45 + open + closed + dsc20051220_160808_102 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_160808_102.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Rusty Rail + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20051220_173257_119/ + Mon, 16 Jun 20081 21:47:17 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_173257_119.jpg + + + + 764 + 2008-06-16 14:47:17 + 2008-06-16 21:47:17 + open + closed + dsc20051220_173257_119 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_173257_119.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sea and Rocks + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dscn3316/ + Mon, 16 Jun 2008 21:47:20 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dscn3316.jpg + + + + 765 + 2008-06-16 14:47:20 + 2008-06-16 21:47:20 + open + closed + dscn3316 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dscn3316.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Big Sur + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/michelle_049/ + Mon, 16 Jun 2008 21:47:23 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/michelle_049.jpg + + + + 766 + 2008-06-16 14:47:23 + 2008-06-16 21:47:23 + open + closed + michelle_049 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/michelle_049.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Windmill + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dcf-1-0/ + Mon, 16 Jun 2008 21:47:26 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/windmill.jpg + + + + 767 + 2008-06-16 14:47:26 + 2008-06-16 21:47:26 + open + closed + dcf-1-0 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/windmill.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Huatulco Coastline + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/alas-i-have-found-my-shangri-la/ + Mon, 16 Jun 2008 21:49:48 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0513-1.jpg + + + + 768 + 2008-06-16 14:49:48 + 2008-06-16 21:49:48 + open + closed + alas-i-have-found-my-shangri-la + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0513-1.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Brazil Beach + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_0747/ + Mon, 16 Jun 2008 21:50:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0747.jpg + + + + 769 + 2008-06-16 14:50:37 + 2008-06-16 21:50:37 + open + closed + img_0747 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0747.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Huatulco Coastline + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_0767/ + Mon, 16 Jun 2008 21:51:19 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0767.jpg + + + + 770 + 2008-06-16 14:51:19 + 2008-06-16 21:51:19 + open + closed + img_0767 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0767.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Boat Barco Texture + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_8399/ + Mon, 16 Jun 2008 21:51:57 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_8399.jpg + + + + 771 + 2008-06-16 14:51:57 + 2008-06-16 21:51:57 + open + closed + img_8399 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_8399.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Resinous + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20040724_152504_532-2/ + Mon, 04 Jun 2012 18:36:56 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg + + + + 807 + 2012-06-04 11:36:56 + 2012-06-04 18:36:56 + open + closed + dsc20040724_152504_532-2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg + + _attachment_original_parent_id + + + + + St. Louis Blues + https://wpthemetestdata.wordpress.com/2010/07/02/post-format-audio/originaldixielandjazzbandwithalbernard-stlouisblues/ + Mon, 16 Jun 2008 16:49:29 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3 + + + + 821 + 2008-06-16 09:49:29 + 2008-06-16 16:49:29 + open + closed + originaldixielandjazzbandwithalbernard-stlouisblues + inherit + 587 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3 + + + OLYMPUS DIGITAL CAMERA + https://wpthemetestdata.wordpress.com/about/clearing-floats/olympus-digital-camera/ + Thu, 05 Aug 2010 18:07:34 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2010/08/manhattansummer.jpg + + + + 827 + 2010-08-05 11:07:34 + 2010-08-05 18:07:34 + open + closed + olympus-digital-camera + inherit + 501 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2010/08/manhattansummer.jpg + + + Image Alignment 580x300 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-580x300/ + Fri, 15 Mar 2013 00:44:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg + + + + 967 + 2013-03-14 19:44:50 + 2013-03-15 00:44:50 + open + open + image-alignment-580x300 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Image Alignment 150x150 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-150x150/ + Fri, 15 Mar 2013 00:44:49 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg + + + + 968 + 2013-03-14 19:44:49 + 2013-03-15 00:44:49 + open + open + image-alignment-150x150 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Horizontal Featured Image + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-horizontal/featured-image-horizontal-2/ + Fri, 15 Mar 2013 20:40:38 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-horizontal.jpg + + + + 1022 + 2013-03-15 15:40:38 + 2013-03-15 20:40:38 + open + open + featured-image-horizontal-2 + inherit + 1011 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-horizontal.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + I Am Worth Loving Wallpaper + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/soworthloving-wallpaper/ + Thu, 14 Mar 2013 14:58:24 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/soworthloving-wallpaper.jpg + + + + 1023 + 2013-03-14 09:58:24 + 2013-03-14 14:58:24 + open + open + soworthloving-wallpaper + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/soworthloving-wallpaper.jpg + + _wp_attachment_image_alt + + + + + Image Alignment 300x200 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-300x200/ + Fri, 15 Mar 2013 00:44:49 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg + + + + 1025 + 2013-03-14 19:44:49 + 2013-03-15 00:44:49 + open + open + image-alignment-300x200 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Vertical Featured Image + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-vertical/featured-image-vertical-2/ + Fri, 15 Mar 2013 20:41:09 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-vertical.jpg + + + + 1027 + 2013-03-15 15:41:09 + 2013-03-15 20:41:09 + open + open + featured-image-vertical-2 + inherit + 1016 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-vertical.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Image Alignment 1200x4002 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-1200x4002/ + Fri, 15 Mar 2013 00:44:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg + + + + 1029 + 2013-03-14 19:44:50 + 2013-03-15 00:44:50 + open + open + image-alignment-1200x4002 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Unicorn Wallpaper + https://wpthemetestdata.wordpress.com/2010/08/08/post-format-image/unicorn-wallpaper/ + Fri, 14 Dec 2012 03:10:39 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2012/12/unicorn-wallpaper.jpg + + + + 1045 + 2012-12-13 22:10:39 + 2012-12-14 03:10:39 + open + open + unicorn-wallpaper + inherit + 1158 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2012/12/unicorn-wallpaper.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Pages + https://wpthemetestdata.wordpress.com/2013/04/09/pages/ + Tue, 09 Apr 2013 13:37:45 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/pages + + + + 1100 + 2013-04-09 06:37:45 + 2013-04-09 13:37:45 + open + closed + pages + publish + 0 + 2 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Categories + https://wpthemetestdata.wordpress.com/2013/04/09/categories/ + Tue, 09 Apr 2013 13:37:45 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/categories + + + + 1101 + 2013-04-09 06:37:45 + 2013-04-09 13:37:45 + open + closed + categories + publish + 0 + 10 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1112/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1112</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test markup tags and styles.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1112</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1112</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>21</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[4675]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1115/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1115</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test post formats.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1115</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1115</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>24</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[44090582]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1118/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1118</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test unpublished posts.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1118</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1118</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>28</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[54090]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>Depth + https://wpthemetestdata.wordpress.com/2013/04/09/depth/ + Tue, 09 Apr 2013 13:37:46 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/depth + + + + 1119 + 2013-04-09 06:37:46 + 2013-04-09 13:37:46 + open + closed + depth + publish + 0 + 29 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 01 + https://wpthemetestdata.wordpress.com/2013/04/09/level-01/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-01 + + + + 1120 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-01 + publish + 0 + 30 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 02 + https://wpthemetestdata.wordpress.com/2013/04/09/level-02/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-02 + + + + 1121 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-02 + publish + 0 + 31 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 03 + https://wpthemetestdata.wordpress.com/2013/04/09/level-03/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-03 + + + + 1122 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-03 + publish + 0 + 32 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 04 + https://wpthemetestdata.wordpress.com/2013/04/09/level-04/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-04 + + + + 1123 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-04 + publish + 0 + 33 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 05 + https://wpthemetestdata.wordpress.com/2013/04/09/level-05/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-05 + + + + 1124 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-05 + publish + 0 + 34 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 06 + https://wpthemetestdata.wordpress.com/2013/04/09/level-06/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-06 + + + + 1125 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-06 + publish + 0 + 35 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 07 + https://wpthemetestdata.wordpress.com/2013/04/09/level-07/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-07 + + + + 1126 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-07 + publish + 0 + 36 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 08 + https://wpthemetestdata.wordpress.com/2013/04/09/level-08/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-08 + + + + 1127 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-08 + publish + 0 + 37 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 09 + https://wpthemetestdata.wordpress.com/2013/04/09/level-09/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-09 + + + + 1128 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-09 + publish + 0 + 38 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 10 + https://wpthemetestdata.wordpress.com/2013/04/09/level-10/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-10 + + + + 1129 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-10 + publish + 0 + 39 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Advanced + https://wpthemetestdata.wordpress.com/2013/04/09/advanced/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/advanced + + + + 1130 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + advanced + publish + 0 + 40 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu Description + https://wpthemetestdata.wordpress.com/2013/04/09/menu-description/ + Tue, 09 Apr 2013 13:37:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-description + + + + 1142 + 2013-04-09 06:37:50 + 2013-04-09 13:37:50 + open + closed + menu-description + publish + 0 + 44 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu Title Attribute + https://wpthemetestdata.wordpress.com/2013/04/09/menu-title-attribute/ + Tue, 09 Apr 2013 13:37:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-title-attribute + + + + 1143 + 2013-04-09 06:37:50 + 2013-04-09 13:37:50 + open + closed + menu-title-attribute + publish + 0 + 41 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu CSS Class + https://wpthemetestdata.wordpress.com/2013/04/09/menu-css-class/ + Tue, 09 Apr 2013 13:37:51 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-css-class + + + + 1144 + 2013-04-09 06:37:51 + 2013-04-09 13:37:51 + open + closed + menu-css-class + publish + 0 + 42 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + New Window / Tab + https://wpthemetestdata.wordpress.com/2013/04/09/new-window-tab/ + Tue, 09 Apr 2013 13:37:51 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/new-window-tab + + + + 1145 + 2013-04-09 06:37:51 + 2013-04-09 13:37:51 + open + closed + new-window-tab + publish + 0 + 43 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1263/</link> + <pubDate>Tue, 09 Apr 2013 13:38:00 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1263</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1263</wp:post_id> + <wp:post_date>2013-04-09 06:38:00</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:38:00</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1263</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1100]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1264/</link> + <pubDate>Tue, 09 Apr 2013 13:38:01 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1264</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1264</wp:post_id> + <wp:post_date>2013-04-09 06:38:01</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:38:01</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1264</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1100]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>twitter.com + https://wpthemetestdata.wordpress.com/2018/10/20/twitter-com/ + Sun, 21 Oct 2018 02:57:33 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/twitter-com/ + + + + 1719 + + + + + + + 0 + 1 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + facebook.com + https://wpthemetestdata.wordpress.com/2018/10/20/facebook-com/ + Sun, 21 Oct 2018 02:57:35 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/facebook-com/ + + + + 1720 + + + + + + + 0 + 2 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + github.com + https://wpthemetestdata.wordpress.com/2018/10/20/github-com/ + Sun, 21 Oct 2018 02:57:37 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/github-com + + + + 1721 + + + + + + + 0 + 3 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + instagram.com + https://wpthemetestdata.wordpress.com/2018/10/20/instagram-com + Sun, 21 Oct 2018 02:57:41 +000 + themereviewteam> + https://wpthemetestdata.wordpress.com/2018/10/20/instagram-com + + + + 1723 + + + + + + + 0 + 5 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + linkedin.com + https://wpthemetestdata.wordpress.com/2018/10/20/linkedin-com/ + Sun, 21 Oct 2018 02:57:39 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/linkedin-com/ + + + + 1722 + + + + + + + 0 + 4 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + triforce-wallpaper + https://wpthemetestdata.wordpress.com/2010/08/07/post-format-image-caption/triforce-wallpaper/ + Tue, 17 Aug 2010 20:17:31 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2010/08/triforce-wallpaper.jpg + + + + 1628 + 2010-08-17 13:17:31 + 2010-08-17 20:17:31 + open + closed + triforce-wallpaper + inherit + 1163 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2010/08/triforce-wallpaper.jpg + + + + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1636/</link> + <pubDate>Tue, 07 May 2013 19:54:30 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1636</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1636</wp:post_id> + <wp:post_date>2013-05-07 12:54:30</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:30</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1636</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1637/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1637</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1637</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1637</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1638/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1638</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1638</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1638</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1639/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1639</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1639</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1639</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1640/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1640</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1640</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1640</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1641/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1641</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1641</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1641</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1643/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1643</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1643</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1643</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1644/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1644</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1644</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1644</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[701]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1645/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1645</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1645</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1645</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1646/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1646</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1646</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1646</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1647/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1647</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1647</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1647</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1648/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1648</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1648</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1648</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1649/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1649</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1649</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1649</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1650/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1650</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1650</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1650</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1651/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1651</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1651</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1651</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>10</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[174]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1652/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1652</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1652</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1652</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>11</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[173]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1653/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1653</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1653</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1653</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>12</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[172]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1654/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1654</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1654</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1654</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>13</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[746]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1655/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1655</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1655</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1655</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>14</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[748]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1656/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1656</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1656</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1656</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>15</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[742]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1657/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1657</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1657</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1657</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>16</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[744]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1658/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1658</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1658</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1658</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>17</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1659/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1659</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1659</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1659</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>18</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[733]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1660/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1660</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1660</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1660</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>19</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[735]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1643/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1643</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1643</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1643</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1644/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1644</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1644</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1644</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[701]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1645/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1645</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1645</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1645</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1646/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1646</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1646</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1646</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1647/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1647</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1647</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1647</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1648/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1648</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1648</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1648</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1649/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1649</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1649</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1649</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1650/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1650</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1650</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1650</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1651/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1651</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1651</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1651</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>10</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[174]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1652/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1652</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1652</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1652</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>11</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[173]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1653/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1653</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1653</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1653</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>12</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[172]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1654/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1654</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1654</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1654</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>13</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[746]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1655/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1655</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1655</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1655</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>14</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[748]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1656/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1656</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1656</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1656</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>15</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[742]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1657/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1657</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1657</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1657</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>16</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[744]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1658/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1658</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1658</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1658</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>17</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1659/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1659</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1659</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1659</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>18</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[733]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1660/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1660</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1660</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1660</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>19</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[735]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>dsc20040724_152504_532 + https://wpthemetestdata.wordpress.com/?attachment_id=1686 + Wed, 18 Sep 2013 21:37:05 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20040724_152504_532.jpg + + + + 1686 + 2013-09-18 14:37:05 + 2013-09-18 21:37:05 + open + closed + dsc20040724_152504_532 + inherit + 0 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20040724_152504_532.jpg + + + dsc20050604_133440_34211 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050604_133440_34211/ + Wed, 18 Sep 2013 21:37:07 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20050604_133440_34211.jpg + + + + 1687 + 2013-09-18 14:37:07 + 2013-09-18 21:37:07 + open + closed + dsc20050604_133440_34211 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20050604_133440_34211.jpg + + + 2014-slider-mobile-behavior + https://wpthemetestdata.wordpress.com/?attachment_id=1690 + Wed, 04 Dec 2013 18:08:29 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/12/2014-slider-mobile-behavior.mov + + + + 1690 + 2013-12-04 11:08:29 + 2013-12-04 18:08:29 + open + closed + 2014-slider-mobile-behavior + inherit + 0 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/12/2014-slider-mobile-behavior.mov + + + dsc20050315_145007_132 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050315_145007_132-2/ + Sun, 05 Jan 2014 18:45:21 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2014/01/dsc20050315_145007_132.jpg + + + + 1691 + 2014-01-05 11:45:21 + 2014-01-05 18:45:21 + open + closed + dsc20050315_145007_132-2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2014/01/dsc20050315_145007_132.jpg + + + spectacles + https://wpthemetestdata.wordpress.com/about/clearing-floats/spectacles-2/ + Sun, 05 Jan 2014 18:45:36 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2014/01/spectacles.gif + + + + 1692 + 2014-01-05 11:45:36 + 2014-01-05 18:45:36 + open + closed + spectacles-2 + inherit + 501 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2014/01/spectacles.gif + + + Post Format: Standard + https://wpthemetestdata.wordpress.com/2010/10/05/post-format-standard/ + Tue, 05 Oct 2010 07:27:25 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=358 + + + +Mrs. Darling first heard of Peter when she was tidying up her children's minds. It is the nightly custom of every good mother after her children are asleep to rummage in their minds and put things straight for next morning, repacking into their proper places the many articles that have wandered during the day. + +If you could keep awake (but of course you can't) you would see your own mother doing this, and you would find it very interesting to watch her. It is quite like tidying up drawers. You would see her on her knees, I expect, lingering humorously over some of your contents, wondering where on earth you had picked this thing up, making discoveries sweet and not so sweet, pressing this to her cheek as if it were as nice as a kitten, and hurriedly stowing that out of sight. When you wake in the morning, the naughtiness and evil passions with which you went to bed have been folded up small and placed at the bottom of your mind and on the top, beautifully aired, are spread out your prettier thoughts, ready for you to put on. + +I don't know whether you have ever seen a map of a person's mind. Doctors sometimes draw maps of other parts of you, and your own map can become intensely interesting, but catch them trying to draw a map of a child's mind, which is not only confused, but keeps going round all the time. There are zigzag lines on it, just like your temperature on a card, and these are probably roads in the island, for the Neverland is always more or less an island, with astonishing splashes of colour here and there, and coral reefs and rakish-looking craft in the offing, and savages and lonely lairs, and gnomes who are mostly tailors, and caves through which a river runs, and princes with six elder brothers, and a hut fast going to decay, and one very small old lady with a hooked nose. It would be an easy map if that were all, but there is also first day at school, religion, fathers, the round pond, needle-work, murders, hangings, verbs that take the dative, chocolate pudding day, getting into braces, say ninety-nine, three-pence for pulling out your tooth yourself, and so on, and either these are part of the island or they are another map showing through, and it is all rather confusing, especially as nothing will stand still. + +Of course the Neverlands vary a good deal. John's, for instance, had a lagoon with flamingoes flying over it at which John was shooting, while Michael, who was very small, had a flamingo with lagoons flying over it. John lived in a boat turned upside down on the sands, Michael in a wigwam, Wendy in a house of leaves deftly sewn together. John had no friends, Michael had friends at night, Wendy had a pet wolf forsaken by its parents, but on the whole the Neverlands have a family resemblance, and if they stood still in a row you could say of them that they have each other's nose, and so forth. On these magic shores children at play are for ever beaching their coracles [simple boat]. We too have been there; we can still hear the sound of the surf, though we shall land no more. + +Of all delectable islands the Neverland is the snuggest and most compact, not large and sprawly, you know, with tedious distances between one adventure and another, but nicely crammed. When you play at it by day with the chairs and table-cloth, it is not in the least alarming, but in the two minutes before you go to sleep it becomes very real. That is why there are night-lights. + +Occasionally in her travels through her children's minds Mrs. Darling found things she could not understand, and of these quite the most perplexing was the word Peter. She knew of no Peter, and yet he was here and there in John and Michael's minds, while Wendy's began to be scrawled all over with him. The name stood out in bolder letters than any of the other words, and as Mrs. Darling gazed she felt that it had an oddly cocky appearance.]]> + + 358 + 2010-10-05 00:27:25 + 2010-10-05 07:27:25 + closed + closed + post-format-standard + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Gallery + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/ + Fri, 10 Sep 2010 14:24:14 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=555 + + + +You can use this page to test the Theme's handling of the gallery shortcode, including the columns parameter, from 1 to 9 columns. Themes are only required to support the default setting (3 columns), so this page is entirely optional. +

    One Column

    +[gallery columns="1"] +

    Two Columns

    +[gallery columns="2"] +

    Three Columns

    +[gallery columns="3"] +

    Four Columns

    +[gallery columns="4"] +

    Five Columns

    +[gallery columns="5"] +

    Six Columns

    +[gallery columns="6"] +

    Seven Columns

    +[gallery columns="7"] +

    Eight Columns

    +[gallery columns="8"] +

    Nine Columns

    +[gallery columns="9"]]]>
    + + 555 + 2010-09-10 07:24:14 + 2010-09-10 14:24:14 + closed + closed + post-format-gallery + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Post Format: Aside + https://wpthemetestdata.wordpress.com/2010/05/09/post-format-aside/ + Sun, 09 May 2010 14:51:54 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=559 + + + + 559 + 2010-05-09 07:51:54 + 2010-05-09 14:51:54 + closed + closed + post-format-aside + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Chat + https://wpthemetestdata.wordpress.com/2010/01/08/post-format-chat/ + Fri, 08 Jan 2010 14:59:31 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=562 + + + + 562 + 2010-01-08 07:59:31 + 2010-01-08 14:59:31 + closed + closed + post-format-chat + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Link + https://wpthemetestdata.wordpress.com/2010/03/07/post-format-link/ + Sun, 07 Mar 2010 15:06:53 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=565 + + The WordPress Theme Review Team Website]]> + + 565 + 2010-03-07 08:06:53 + 2010-03-07 15:06:53 + closed + closed + post-format-link + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Image (Linked) + https://wpthemetestdata.wordpress.com/2010/08/06/post-format-image-linked/ + Fri, 06 Aug 2010 15:09:39 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=568 + + chunk of resinous blackboy husk[/caption] +]]> + + 568 + 2010-08-06 08:09:39 + 2010-08-06 15:09:39 + closed + closed + post-format-image-linked + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Quote + https://wpthemetestdata.wordpress.com/2010/02/05/post-format-quote/ + Fri, 05 Feb 2010 15:13:15 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=575 + + Only one thing is impossible for God: To find any sense in any copyright law on the planet. +Mark Twain]]> + + 575 + 2010-02-05 08:13:15 + 2010-02-05 15:13:15 + closed + closed + post-format-quote + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Status + https://wpthemetestdata.wordpress.com/2010/04/04/post-format-status/ + Sun, 04 Apr 2010 15:21:24 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=579 + + + + 579 + 2010-04-04 08:21:24 + 2010-04-04 15:21:24 + closed + closed + post-format-status + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Video (WordPress.tv) + https://wpthemetestdata.wordpress.com/2010/06/03/post-format-video-wordpresstv/ + Thu, 03 Jun 2010 15:25:58 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=582 + + instructions in the Codex.]]> + + 582 + 2010-06-03 08:25:58 + 2010-06-03 15:25:58 + closed + closed + post-format-video-wordpresstv + publish + 0 + 0 + post + + 0 + + + + + + + + + _oembed_4321638fc1a6fee26443f7fe8a70a871 + ]]> + + + _oembed_29351fff85c1be1d1e9a965a0332a861 + ]]> + + + _oembed_9fcc86d7d9398ff736577f922307f64d + ]]> + + + _oembed_366237792d32461d0052efb2edec37f5 + ]]> + + + _oembed_37fdfe862c13c46a93be2921279bf675 + ]]> + + + + Post Format: Audio + https://wpthemetestdata.wordpress.com/2010/07/02/post-format-audio/ + Fri, 02 Jul 2010 15:36:44 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=587 + + St. Louis Blues + +Audio shortcode: + +[audio https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3]]]> + + 587 + 2010-07-02 08:36:44 + 2010-07-02 15:36:44 + closed + closed + post-format-audio + publish + 0 + 0 + post + + 0 + + + + + + + + enclosure + + + + + Page A + https://wpthemetestdata.wordpress.com/page-a/ + Fri, 24 Jun 2011 01:38:52 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=733 + + + + 733 + 2011-06-23 18:38:52 + 2011-06-24 01:38:52 + open + closed + page-a + publish + 0 + 10 + page + + 0 + + + Page B + https://wpthemetestdata.wordpress.com/page-b/ + Fri, 24 Jun 2011 01:39:14 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=735 + + + + 735 + 2011-06-23 18:39:14 + 2011-06-24 01:39:14 + open + closed + page-b + publish + 0 + 11 + page + + 0 + + + Level 2a + https://wpthemetestdata.wordpress.com/level-1/level-2a/ + Fri, 24 Jun 2011 02:03:33 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=742 + + + + 742 + 2011-06-23 19:03:33 + 2011-06-24 02:03:33 + open + closed + level-2a + publish + 174 + 0 + page + + 0 + + + Level 2b + https://wpthemetestdata.wordpress.com/level-1/level-2b/ + Fri, 24 Jun 2011 02:04:03 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=744 + + + + 744 + 2011-06-23 19:04:03 + 2011-06-24 02:04:03 + open + closed + level-2b + publish + 174 + 0 + page + + 0 + + + Level 3a + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3a/ + Fri, 24 Jun 2011 02:04:24 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=746 + + + + 746 + 2011-06-23 19:04:24 + 2011-06-24 02:04:24 + open + closed + level-3a + publish + 173 + 0 + page + + 0 + + + Level 3b + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3b/ + Fri, 24 Jun 2011 02:04:46 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=748 + + + + 748 + 2011-06-23 19:04:46 + 2011-06-24 02:04:46 + open + closed + level-3b + publish + 173 + 0 + page + + 0 + + + Template: Excerpt (Defined) + https://wpthemetestdata.wordpress.com/2012/03/15/template-excerpt-defined/ + Thu, 15 Mar 2012 21:38:08 +0000 + themedemos + http://wptest.io/demo/?p=993 + + should be displayed in place of the user-defined excerpt in single-page views.]]> + should be displayed in place of the post content in archive-index pages. It can be longer than the automatically generated excerpts, and can have HTML tags.]]> + 993 + 2012-03-15 14:38:08 + 2012-03-15 21:38:08 + closed + closed + template-excerpt-defined + publish + 0 + 0 + post + + 0 + + + + + + + + + Template: More Tag + https://wpthemetestdata.wordpress.com/2012/03/15/template-more-tag/ + Thu, 15 Mar 2012 21:41:11 +0000 + themedemos + http://wptest.io/demo/?p=996 + + more tag. + +Right after this sentence should be a "continue reading" button of some sort on list pages of themes that show full content. It won't show on single pages or on themes showing excerpts. + + + +And this content is after the more tag. (which should be the anchor link for when the button is clicked)]]> + + 996 + 2012-03-15 14:41:11 + 2012-03-15 21:41:11 + closed + closed + template-more-tag + publish + 0 + 0 + post + + 0 + + + + + + + + + Edge Case: Nested And Mixed Lists + https://wpthemetestdata.wordpress.com/2009/05/15/edge-case-nested-and-mixed-lists/ + Fri, 15 May 2009 21:48:32 +0000 + themedemos + http://wptest.io/demo/?p=1000 + + +
  • Lists within lists do not break the ordered list numbering order
  • +
  • Your list styles go deep enough.
  • + +

    Ordered - Unordered - Ordered

    +
      +
    1. ordered item
    2. +
    3. ordered item +
        +
      • unordered
      • +
      • unordered +
          +
        1. ordered item
        2. +
        3. ordered item
        4. +
        +
      • +
      +
    4. +
    5. ordered item
    6. +
    7. ordered item
    8. +
    +

    Ordered - Unordered - Unordered

    +
      +
    1. ordered item
    2. +
    3. ordered item +
        +
      • unordered
      • +
      • unordered +
          +
        • unordered item
        • +
        • unordered item
        • +
        +
      • +
      +
    4. +
    5. ordered item
    6. +
    7. ordered item
    8. +
    +

    Unordered - Ordered - Unordered

    +
      +
    • unordered item
    • +
    • unordered item +
        +
      1. ordered
      2. +
      3. ordered +
          +
        • unordered item
        • +
        • unordered item
        • +
        +
      4. +
      +
    • +
    • unordered item
    • +
    • unordered item
    • +
    +

    Unordered - Unordered - Ordered

    +
      +
    • unordered item
    • +
    • unordered item +
        +
      • unordered
      • +
      • unordered +
          +
        1. ordered item
        2. +
        3. ordered item
        4. +
        +
      • +
      +
    • +
    • unordered item
    • +
    • unordered item
    • +
    ]]>
    + + 1000 + 2009-05-15 14:48:32 + 2009-05-15 21:48:32 + closed + closed + edge-case-nested-and-mixed-lists + publish + 0 + 0 + post + + 0 + + + + + + + +
    + + Template: Featured Image (Horizontal) + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-horizontal/ + Thu, 15 Mar 2012 22:15:12 +0000 + themedemos + http://wptest.io/demo/?p=1011 + + featured image, if the theme supports it. + +Non-square images can provide some unique styling issues. + +This post tests a horizontal featured image.]]> + + 1011 + 2012-03-15 15:15:12 + 2012-03-15 22:15:12 + closed + closed + template-featured-image-horizontal + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + + + + Template: Featured Image (Vertical) + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-vertical/ + Thu, 15 Mar 2012 22:36:32 +0000 + themedemos + http://wptest.io/demo/?p=1016 + + featured image, if the theme supports it. + +Non-square images can provide some unique styling issues. + +This post tests a vertical featured image.]]> + + 1016 + 2012-03-15 15:36:32 + 2012-03-15 22:36:32 + closed + closed + template-featured-image-vertical + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + + + + Post Format: Gallery (Tiled) + https://wpthemetestdata.wordpress.com/2010/09/09/post-format-gallery-tiled/ + Fri, 10 Sep 2010 00:23:27 +0000 + themedemos + http://wptest.io/demo/?p=1031 + + Jetpack to test. + +[gallery type="rectangular" columns="4" ids="755,757,758,760,766,763" orderby="rand"] + +This is some text after the Tiled Gallery just to make sure that everything spaces nicely.]]> + + 1031 + 2010-09-09 17:23:27 + 2010-09-10 00:23:27 + closed + closed + post-format-gallery-tiled + publish + 0 + 0 + post + + 0 + + + + + + + + + + + Page Image Alignment + https://wpthemetestdata.wordpress.com/about/page-image-alignment/ + Fri, 15 Mar 2013 23:19:23 +0000 + themedemos + http://wptest.io/demo/?page_id=1080 + + None, Left, Right, and Center. In addition, they also get the options of Thumbnail, Medium, Large & Fullsize. Be sure to try this page in RTL mode and it should look the same as LTR. +

    Image Alignment 580x300

    +The image above happens to be centered. + +Image Alignment 150x150 The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see there should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +Image Alignment 1200x400 + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 1200x400 + +And we try the large image again, with the center alignment since that sometimes is a problem. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 300x200 + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And just when you thought we were done, we're going to do them all over again with captions! + +[caption id="attachment_906" align="aligncenter" width="580"]Image Alignment 580x300 Look at 580x300 getting some caption love.[/caption] + +The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky. + +[caption id="attachment_904" align="alignleft" width="150"]Image Alignment 150x150 Bigger caption than the image usually is.[/caption] + +The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +[caption id="attachment_907" align="alignnone" width="1200"]Image Alignment 1200x400 Comment for massive image for your eyeballs.[/caption] + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. +[caption id="attachment_907" align="aligncenter" width="1200"]Image Alignment 1200x400 This massive image is centered.[/caption] + +And again with the big image centered. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +[caption id="attachment_905" align="alignright" width="300"]Image Alignment 300x200 Feels good to be right all the time.[/caption] + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! Last thing is a small image aligned right. Whatever follows should be unaffected. Image Alignment 150x150]]>
    + + 1133 + 2013-03-15 18:19:23 + 2013-03-15 23:19:23 + open + open + page-image-alignment + publish + 2 + 0 + page + + 0 +
    + + Page Markup And Formatting + https://wpthemetestdata.wordpress.com/about/page-markup-and-formatting/ + Fri, 15 Mar 2013 23:20:05 +0000 + themedemos + http://wptest.io/demo/?page_id=1083 + + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    Jane$1Because that's all Steve Jobs needed for a salary.
    John$100KFor all the blogging he does.
    Jane$100MPictures are worth a thousand words, right? So Tom x 1,000.
    Jane$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    + Robert Frost
    +
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +This tag shows strike-through text. + +Small Tag + +This tag shows smaller text. + +Strong Tag + +This tag shows bold text. + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +This rarely used tag emulates teletype text, which is usually styled like the <code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +This tag shows underlined text. + +Variable Tag + +This allows you to denote variables.]]>
    + + 1134 + 2013-03-15 18:20:05 + 2013-03-15 23:20:05 + open + open + page-markup-and-formatting + publish + 2 + 0 + page + + 0 +
    + + Template: Comments + https://wpthemetestdata.wordpress.com/2012/01/03/template-comments/ + Tue, 03 Jan 2012 17:11:37 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/comment-test/ + + +
  • Threaded comments up to 10 levels deep
  • +
  • Paginated comments (set Settings > Discussion > Break comments into pages to 5 top level comments per page)
  • +
  • Comment markup / formatting
  • +
  • Comment images
  • +
  • Comment videos
  • +
  • Author comments
  • +
  • Gravatars and default fallbacks
  • +]]>
    + + 1148 + 2012-01-03 10:11:37 + 2012-01-03 17:11:37 + open + closed + template-comments + publish + 0 + 0 + post + + 0 + + + + + + + 881 + + example@example.org + http://example.org/ + + 2012-09-03 10:18:04 + 2012-09-03 17:18:04 + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    John Saddington$1Because that's all Steve Job' needed for a salary.
    Tom McFarlin$100KFor all the blogging he does.
    Jared Erickson$100MPictures are worth a thousand words, right? So Tom x 1,000.
    Chris Ames$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    + +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    +Robert Frost
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    + +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up.]]>
    + 1 + + 0 + 0 +
    + + 899 + + fake@example.com + + + 2013-03-11 23:45:54 + 2013-03-12 04:45:54 + Gravatar associated with it. + They did not speify a website, so there should be no link to it in the comment. +]]> + 1 + + 0 + 0 + + + 900 + + example@example.org + http://example.org/ + + 2013-03-12 13:17:35 + 2013-03-12 20:17:35 + + 1 + + 0 + 0 + + + 901 + + example@example.org + http://example.org + + 2013-03-14 07:53:26 + 2013-03-14 14:53:26 + + 1 + + 0 + 0 + + + 903 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 07:56:46 + 2013-03-14 14:56:46 + + 1 + + 0 + 24783058 + + + 904 + + example@example.org + http://example.org/ + + 2013-03-14 07:57:01 + 2013-03-14 14:57:01 + + 1 + + 0 + 0 + + + 905 + + example@example.org + http://example.org/ + + 2013-03-14 08:01:21 + 2013-03-14 15:01:21 + + 1 + + 904 + 0 + + + 906 + + example@example.org + http://example.org/ + + 2013-03-14 08:02:06 + 2013-03-14 15:02:06 + + 1 + + 905 + 0 + + + 907 + + example@example.org + http://example.org/ + + 2013-03-14 08:03:22 + 2013-03-14 15:03:22 + + 1 + + 906 + 0 + + + 910 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 08:10:29 + 2013-03-14 15:10:29 + + 1 + + 907 + 24783058 + + + 911 + + example@example.org + http://example.org/ + + 2013-03-14 08:12:16 + 2013-03-14 15:12:16 + + 1 + + 910 + 0 + + + 912 + + example@example.org + http://example.org/ + + 2013-03-14 08:12:58 + 2013-03-14 15:12:58 + + 1 + + 911 + 0 + + + 913 + + example@example.org + http://example.org/ + + 2013-03-14 08:13:42 + 2013-03-14 15:13:42 + + 1 + + 912 + 0 + + + 914 + + example@example.org + http://example.org/ + + 2013-03-14 08:14:13 + 2013-03-14 15:14:13 + + 1 + + 913 + 0 + + + 915 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 08:14:47 + 2013-03-14 15:14:47 + + 1 + + 914 + 24783058 + + + 917 + + example@example.org + http://example.org/ + + 2013-03-14 09:56:43 + 2013-03-14 16:56:43 + + If the image imports... + ]]> + 1 + + 0 + 0 + + + 918 + + example@example.org + http://example.org/ + + 2013-03-14 11:23:24 + 2013-03-14 18:23:24 + + 1 + + 0 + 0 + + + 919 + + example@example.org + http://example.org/ + + 2013-03-14 11:27:54 + 2013-03-14 18:27:54 + + 1 + + 0 + 0 + + + 920 + + example@example.org + http://example.org/ + + 2013-03-14 11:30:33 + 2013-03-14 18:30:33 + + 1 + + 0 + 24783058 + + + 1015 + + auser@example.com + + + 2014-09-29 02:52:15 + 2014-09-29 09:52:15 + + 0 + + 0 + 0 + +
    + + Template: Pingbacks And Trackbacks + https://wpthemetestdata.wordpress.com/2012/01/01/template-pingbacks-an-trackbacks/ + Sun, 01 Jan 2012 17:17:18 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/many-trackbacks/ + + +
  • Above the comments
  • +
  • Below the comments
  • +
  • Included within the normal flow of comments
  • +]]>
    + + 1149 + 2012-01-01 10:17:18 + 2012-01-01 17:17:18 + closed + closed + template-pingbacks-an-trackbacks + publish + 0 + 0 + post + + 0 + + + + + + + + + 921 + + + http://tellyworth.wordpress.com/2007/11/21/ping-1/ + + 2007-11-21 11:31:12 + 2007-11-21 01:31:12 + + 1 + trackback + 0 + 0 + + + 922 + + + http://tellyworth.wordpress.com/2007/11/21/ping-2-with-a-much-longer-title-than-the-previous-ping-which-was-called-ping-1/ + + 2007-11-21 11:35:47 + 2007-11-21 01:35:47 + + 1 + trackback + 0 + 0 + + + 923 + + + http://tellyworth.wordpress.com/2007/11/21/ping-4/ + + 2007-11-21 11:39:25 + 2007-11-21 01:39:25 + + 1 + pingback + 0 + 0 + + + 924 + + + http://tellyworth.wordpress.com/2007/11/21/ping-3/ + + 2007-11-21 11:38:22 + 2007-11-21 01:38:22 + + 1 + pingback + 0 + 0 + + + 925 + + example@example.org + http://example.org/ + + 2010-06-11 15:27:04 + 2010-06-11 22:27:04 + + 1 + + 0 + 0 + +
    + + Template: Comments Disabled + https://wpthemetestdata.wordpress.com/2012/01/02/template-comments-disabled/ + Mon, 02 Jan 2012 17:21:15 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/no-comments/ + + should display pingbacks and trackbacks.]]> + + 1150 + 2012-01-02 10:21:15 + 2012-01-02 17:21:15 + closed + closed + template-comments-disabled + publish + 0 + 0 + post + + 0 + + + + + + + + Edge Case: Many Tags + https://wpthemetestdata.wordpress.com/2009/06/01/edge-case-many-tags/ + Mon, 01 Jun 2009 08:00:34 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/11/24/many-tags/ + + + + 1151 + 2009-06-01 01:00:34 + 2009-06-01 08:00:34 + closed + closed + edge-case-many-tags + publish + 0 + 0 + post + + 0' + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Edge Case: Many Categories + https://wpthemetestdata.wordpress.com/2009/07/02/edge-case-many-categories/ + Thu, 02 Jul 2009 09:00:03 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/11/24/many-categories/ + + + + 1152 + 2009-07-02 02:00:03 + 2009-07-02 09:00:03 + closed + closed + edge-case-many-categories + publish + 0 + 0 + post + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Scheduled + https://wpthemetestdata.wordpress.com/2020/01/01/scheduled/ + Wed, 01 Jan 2030 19:00:18 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=418 + + + + 1153 + 2030-01-01 12:00:18 + 2030-01-01 19:00:18 + closed + closed + scheduled + future + 0 + 0 + post + + 0 + + + + + + Post Format: Image + https://wpthemetestdata.wordpress.com/2010/08/08/post-format-image/ + Sun, 08 Aug 2010 12:00:39 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=568 + +
      + +]]>
    + + 1158 + 2010-08-08 05:00:39 + 2010-08-08 12:00:39 + closed + closed + post-format-image + publish + 0 + 0 + post + + 0 + + + + + +
    + + Post Format: Video (YouTube) + https://wpthemetestdata.wordpress.com/2010/06/02/post-format-video-youtube/ + Wed, 02 Jun 2010 09:00:58 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=582 + + WordPress Embeds.]]> + + 1161 + 2010-06-02 02:00:58 + 2010-06-02 09:00:58 + closed + closed + post-format-video-youtube + publish + 0 + 0 + post + + 0 + + + + + + + Post Format: Image (Caption) + https://wpthemetestdata.wordpress.com/2010/08/07/post-format-image-caption/ + Sat, 07 Aug 2010 13:00:19 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=674 + + Bell on Wharf Bell on wharf in San Francisco[/caption]]]> + + 1163 + 2010-08-07 06:00:19 + 2010-08-07 13:00:19 + closed + closed + post-format-image-caption + publish + 0 + 0 + post + + 0 + + + + + + + + _thumbnail_id + + + + + Draft + https://wpthemetestdata.wordpress.com/?p=1164 + Tue, 09 Apr 2013 18:20:39 +0000 + themedemos + http://wptest.io/demo/?p=922 + + + + 1164 + 2013-04-09 11:20:39 + 2013-04-09 18:20:39 + closed + closed + + draft + 0 + 0 + post + + 0 + + + + + + Template: Password Protected (the password is "enter") + https://wpthemetestdata.wordpress.com/2012/01/04/template-password-protected/ + Wed, 04 Jan 2012 16:38:05 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/test-with-secret-password/ + + + + 1168 + 2012-01-04 09:38:05 + 2012-01-04 16:38:05 + closed + closed + template-password-protected + publish + 0 + 0 + post + enter + 0 + + + + + + + 926 + + example@example.org + http://example.org/ + + 2013-03-14 11:56:08 + 2013-03-14 18:56:08 + + 1 + + 0 + 0 + + + + + <link>https://wpthemetestdata.wordpress.com/2009/09/05/edge-case-no-title/</link> + <pubDate>Sat, 05 Sep 2009 16:00:23 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2007/09/04/14/</guid> + <description/> + <content:encoded><![CDATA[This post has no title, but it still must link to the single post view somehow. + +This is typically done by placing the permalink on the post date.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1169</wp:post_id> + <wp:post_date>2009-09-05 09:00:23</wp:post_date> + <wp:post_date_gmt>2009-09-05 16:00:23</wp:post_date_gmt> + <wp:comment_status>closed</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>edge-case-no-title</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>0</wp:menu_order> + <wp:post_type>post</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="category" nicename="classic"><![CDATA[Classic]]></category> + <category domain="post_tag" nicename="edge-case"><![CDATA[edge case]]></category> + <category domain="category" nicename="edge-case-2"><![CDATA[Edge Case]]></category> + <category domain="post_tag" nicename="layout"><![CDATA[layout]]></category> + <category domain="post_tag" nicename="title"><![CDATA[title]]></category> +</item> +<item> + <title>Edge Case: No Content + https://wpthemetestdata.wordpress.com/2009/08/06/edge-case-no-content/ + Thu, 06 Aug 2009 16:39:56 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/this-post-has-no-body/ + + + + 1170 + 2009-08-06 09:39:56 + 2009-08-06 16:39:56 + closed + closed + edge-case-no-content + publish + 0 + 0 + post + + 0 + + + + + + + 927 + + example@example.org + http://example.org/ + + 2013-03-14 12:35:07 + 2013-03-14 19:35:07 + + 1 + + 0 + 0 + + + + Template: Paginated + https://wpthemetestdata.wordpress.com/2012/01/08/template-paginated/ + Sun, 08 Jan 2012 17:00:20 +0000 + themedemos + https://noeltest.wordpress.com/?p=188 + + + +Post Page 2 + + + +Post Page 3]]> + + 1171 + 2012-01-08 10:00:20 + 2012-01-08 17:00:20 + closed + closed + template-paginated + publish + 0 + 0 + post + + 0 + + + + + + + + + <![CDATA[Markup: Title <em>With</em> <b>Mark<sup>up</sup></b>]]> + https://wpthemetestdata.wordpress.com/2013/01/05/markup-title-with-markup/ + Sat, 05 Jan 2013 17:00:49 +0000 + themedemos + http://wptest.io/demo/?p=861 + + +
  • The post title renders the word "with" in italics and the word "markup" in bold (and "up" is superscript).
  • +
  • The post title markup should be removed from the browser window / tab.
  • +]]>
    + + 1173 + 2013-01-05 10:00:49 + 2013-01-05 17:00:49 + closed + closed + markup-title-with-markup + publish + 0 + 0 + post + + 0 + + + + + +
    + + Markup: Title With Special Characters ~`!@#$%^&*()-_=+{}[]/\;:'"?,.> + https://wpthemetestdata.wordpress.com/2013/01/05/title-with-special-characters/ + Sat, 05 Jan 2013 18:00:20 +0000 + themedemos + http://wptest.io/demo/?p=867 + + Latin Character Tests +This is a test to see if the fonts used in this theme support basic Latin characters. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    !"#$%&'()*
    +,-./01234
    56789:;>=<
    ?@ABCDEFGH
    IJKLMNOPQR
    STUVWXYZ[\
    ]^_`abcdef
    ghijklmnop
    qrstuvwxyz
    {|}~
    ]]>
    + + 1174 + 2013-01-05 11:00:20 + 2013-01-05 18:00:20 + closed + closed + title-with-special-characters + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Taumatawhakatangihangakoauauotamateaturipukakapikimaungahoronukupokaiwhenuakitanatahu + https://wpthemetestdata.wordpress.com/2009/10/05/title-should-not-overflow-the-content-area/ + Mon, 05 Oct 2009 19:00:59 +0000 + themedemos + http://wptest.io/demo/?p=877 + + Title should not overflow the content area + +A few things to check for: +
      +
    • Non-breaking text in the title, content, and comments should have no adverse effects on layout or functionality.
    • +
    • Check the browser window / tab title.
    • +
    • If you are a plugin or widget developer, check that this text does not break anything.
    • +
    + +The following CSS properties will help you support non-breaking text. + +
    -ms-word-wrap: break-word;
    +word-wrap: break-word;
    + ]]>
    + + 1175 + 2009-10-05 12:00:59 + 2009-10-05 19:00:59 + closed + closed + title-should-not-overflow-the-content-area + publish + 0 + 0 + post + + 0 + + + + + + + + +
    + + Markup: Text Alignment + https://wpthemetestdata.wordpress.com/2013/01/09/markup-text-alignment/ + Wed, 09 Jan 2013 16:00:39 +0000 + themedemos + http://wptest.io/demo/?p=895 + + Default +This is a paragraph. It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love. Completely neutral and not picking a side or sitting on the fence. It just is. It just freaking is. It likes where it is. It does not feel compelled to pick a side. Leave him be. It will just be better that way. Trust me. +

    Left Align

    +

    This is a paragraph. It is left aligned. Because of this, it is a bit more liberal in it's views. It's favorite color is green. Left align tends to be more eco-friendly, but it provides no concrete evidence that it really is. Even though it likes share the wealth evenly, it leaves the equal distribution up to justified alignment.

    + +

    Center Align

    +

    This is a paragraph. It is center aligned. Center is, but nature, a fence sitter. A flip flopper. It has a difficult time making up its mind. It wants to pick a side. Really, it does. It has the best intentions, but it tends to complicate matters more than help. The best you can do is try to win it over and hope for the best. I hear center align does take bribes.

    + +

    Right Align

    +

    This is a paragraph. It is right aligned. It is a bit more conservative in it's views. It's prefers to not be told what to do or how to do it. Right align totally owns a slew of guns and loves to head to the range for some practice. Which is cool and all. I mean, it's a pretty good shot from at least four or five football fields away. Dead on. So boss.

    + +

    Justify Align

    +

    This is a paragraph. It is justify aligned. It gets really mad when people associate it with Justin Timberlake. Typically, justified is pretty straight laced. It likes everything to be in it's place and not all cattywampus like the rest of the aligns. I am not saying that makes it better than the rest of the aligns, but it does tend to put off more of an elitist attitude.

    ]]>
    + + 1176 + 2013-01-09 09:00:39 + 2013-01-09 16:00:39 + closed + closed + markup-text-alignment + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Markup: Image Alignment + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/ + Fri, 11 Jan 2013 03:15:40 +0000 + themedemos + http://wptest.io/demo/?p=903 + + None, Left, Right, and Center. In addition, they also get the options of Thumbnail, Medium, Large & Fullsize. Be sure to try this page in RTL mode and it should look the same as LTR. +

    Image Alignment 580x300

    +The image above happens to be centered. + +Image Alignment 150x150 The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +Image Alignment 1200x400 + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 1200x400 + +And we try the large image again, with the center alignment since that sometimes is a problem. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 300x200 + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And just when you thought we were done, we're going to do them all over again with captions! + +[caption id="attachment_906" align="aligncenter" width="580"]Image Alignment 580x300 Look at 580x300 getting some caption love.[/caption] + +The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky. + +[caption id="attachment_904" align="alignleft" width="150"]Image Alignment 150x150 Bigger caption than the image usually is.[/caption] + +The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +[caption id="attachment_907" align="alignnone" width="1200"]Image Alignment 1200x400 Comment for massive image for your eyeballs.[/caption] + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. +[caption id="attachment_907" align="aligncenter" width="1200"]Image Alignment 1200x400 This massive image is centered.[/caption] + +And again with the big image centered. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +[caption id="attachment_905" align="alignright" width="300"]Image Alignment 300x200 Feels good to be right all the time.[/caption] + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! One last thing: The last item in this post's content is a thumbnail floated right. Make sure any elements after the content are clearing properly. + +]]>
    + + 1177 + 2013-01-10 20:15:40 + 2013-01-11 03:15:40 + closed + closed + markup-image-alignment + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + +
    + + Markup: HTML Tags and Formatting + https://wpthemetestdata.wordpress.com/2013/01/11/markup-html-tags-and-formatting/ + Sat, 12 Jan 2013 03:22:19 +0000 + themedemos + http://wptest.io/demo/?p=919 + + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    John Doe$1Because that's all Steve Jobs needed for a salary.
    Jane Doe$100KFor all the blogging she does.
    Fred Bloggs$100MPictures are worth a thousand words, right? So Jane x 1,000.
    Jane Bloggs$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    +Robert Frost
    +
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +This tag shows strike-through text. + +Small Tag + +This tag shows smaller text. + +Strong Tag + +This tag shows bold text. + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +This rarely used tag emulates teletype text, which is usually styled like the <code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +This tag shows underlined text. + +Variable Tag + +This allows you to denote variables.]]>
    + + 1178 + 2013-01-11 20:22:19 + 2013-01-12 03:22:19 + closed + closed + markup-html-tags-and-formatting + publish + 0 + 0 + post + + 0 + + + + + + + +
    + + Media: Twitter Embeds + https://wpthemetestdata.wordpress.com/2011/03/15/media-twitter-embeds/ + Tue, 15 Mar 2011 22:47:16 +0000 + themedemos + http://wptest.io/demo/?p=1027 + + Twitter Embeds feature.]]> + + 1179 + 2011-03-15 15:47:16 + 2011-03-15 22:47:16 + closed + closed + media-twitter-embeds + publish + 0 + 0 + post + + 0 + + + + + + + + _oembed_time_d01e104b758ab65a49dfdede5913069c + + + + _oembed_ac49b172e1844531a885a53eff2efd91 + ]]> + + + _oembed_time_ac49b172e1844531a885a53eff2efd91 + + + + _oembed_d01e104b758ab65a49dfdede5913069c + ]]> + + + + Template: Sticky + https://wpthemetestdata.wordpress.com/2012/01/07/template-sticky/ + Sat, 07 Jan 2012 14:07:21 +0000 + themedemos + http://wptest.io/demo/?p=1241 + + +
  • The sticky post should be distinctly recognizable in some way in comparison to normal posts. You can style the .sticky class if you are using the post_class() function to generate your post classes, which is a best practice.
  • +
  • They should show at the very top of the blog index page, even though they could be several posts back chronologically.
  • +
  • They should still show up again in their chronologically correct postion in time, but without the sticky indicator.
  • +
  • If you have a plugin or widget that lists popular posts or comments, make sure that this sticky post is not always at the top of those lists unless it really is popular.
  • +]]>
    + + 1241 + 2012-01-07 07:07:21 + 2012-01-07 14:07:21 + closed + closed + template-sticky + publish + 0 + 0 + post + + 1 + + + + +
    + + Template: Excerpt (Generated) + https://wpthemetestdata.wordpress.com/2012/03/14/template-excerpt-generated/ + Wed, 14 Mar 2012 16:49:22 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=1446 + + excerpt_length and excerpt_more, display properly.]]> + + 1446 + 2012-03-14 09:49:22 + 2012-03-14 16:49:22 + closed + closed + template-excerpt-generated + publish + 0 + 0 + post + + 0 + + + + + + + + + Block category: Common + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-common/ + Fri, 02 Nov 2018 16:20:28 +0000 + >themereviewteam + https://wpthemetestdata.wordpress.com/?p=1730 + + +

    The Common category includes the following blocks: Paragraph, image, headings, list, gallery, quote, audio, cover, video.

    + + + +

    The paragraph block is the default block type.  It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love.

    + + + +

    This paragraph is left aligned.

    + + + +

    This italic paragraph is right aligned.

    + + + +

    Neither of these paragraphs care about politics, but this one is bold, medium sized and has a drop cap.

    + + + +

    This paragraph is centered.

    + + + +

    This paragraph prefers Jazz over Justin Timberlake. It also uses the small font size.

    + + + +

    This paragraph has something important to say:  It has a large font size, which defaults to 36px.

    + + + +

    The huge text size defaults to 46px, but the size can be customized.

    + + + +

    This paragraph is colorful, with a red background and white text (maybe). Colored blocks should have a high enough contrast, so that the text is readable.

    + + + +

    Below this block, you will see a single image with a circle mask applied.

    + + + +
    Image Alignment 150x150
    + + + +

    H1 Heading

    + + + +

    H2 Heading

    + + + +

    H3 Heading

    + + + +

    H4 Heading

    + + + +
    H5 Heading
    + + + +
    H6 Heading
    + + + +

    Ordered list

    + + + +
    1. The software should be licensed under the GNU Public License.
    2. The software should be freely available to anyone to use for any purpose, and without permission.
    3. The software should be open to modifications.
      1. Any modifications should be freely distributable at no cost and without permission from its creators.
    4. The software should provide a framework for translation to make it globally accessible to speakers of all languages.
    5. The software should provide a framework for extensions so modifications and enhancements can be made without modifying core code
    + + + +

    Unordered list

    + + + +
    • One
    • Two
    • Three
      • Four
    • Five
    + + + + + + + +

    Quote

    Cite
    + + + +
    + + + +
    +

    Cover block with background image

    +
    + + + +

    The file block has a setting that lets us show or hide a download button with editable text:

    + + + + + + + + + + + +

    Video blocks have settings for showing and hiding the playback controls. Use autoplay and playback controls responsibly.

    + + + +
    This is a video block caption.
    + + + +

    The video block below is muted and has a poster image that displays before the video starts:

    + + + +
    + +]]>
    + + 1730 + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + +
    + + Block category: Formatting + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-formatting/ + Fri, 02 Nov 2018 16:41:42 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1732 + + +

    The formatting category includes the following blocks:

    + + + +
    The code block starts with
    +<!-- wp:code -->
    +<?php echo 'Hello World'; ?>
    +
    + + +

    The classic block can have almost anything in it.

    +
    +
    a heading
    + + +
    The custom HTML block lets you put HTML that isn't configured like blocks in it. (this div has a width of 45%)
    + + + +
    The preformatted block.

    The Road Not Taken

    Robert Frost
    Two roads diverged in a yellow wood,
    And sorry I could not travel both (\_/)
    And be one traveler, long I stood (='.'=)
    And looked down one as far as I could (")_(")
    To where it bent in the undergrowth;

    Then took the other, as just as fair,
    And having perhaps the better claim, |\_/|
    Because it was grassy and wanted wear; / @ @ \
    Though as for that the passing there ( > º < )
    Had worn them really about the same, `>>x<<´
    / O \
    And both that morning equally lay
    In leaves no step had trodden black.
    Oh, I kept the first for another day!
    Yet knowing how way leads on to way,
    I doubted if I should ever come back.
    I shall be telling this with a sigh
    Somewhere ages and ages hence:
    Two roads diverged in a wood, and I—
    I took the one less traveled by,
    And that has made all the difference.



    and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    + + + +

    The pull quote can be aligned or wide or neither.

    Theme Reviewer
    + + + +
    The table blockThis is the default style.
    The cell next to this is empty.
    Cell #5
    Cell #6
    + + + +
    This is the striped style.This row should have a background color.
    The cell next to this is empty.

    This table has fixed width table cells.

    Make sure that the text wraps correctly.

    + + + +
    The Verse block

    A block for haiku?
    Why not?
    Blocks for all the things!
    +]]>
    + + 1732 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Block category: Layout Elements + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-layout-elements/ + Fri, 02 Nov 2018 16:44:37 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1734 + + +
    +

    The Layout Elements category includes the following blocks: Group, Button, Columns, Media & Text, separator, spacer, read more, and page break.

    + + + +

    This group block has a light green background color.

    + + + + + + + +

    The read more block should be right below this text, but only on list pages of themes that show the full content. It won't show on the single page or on themes showing excerpts.

    +
    + + + + + + + +
    +
    +

    The columns:

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    +
    + + + +
    Boardwalk
    +

    Media &Text

    + + + +

    For displaying media and text next to each other. By default, the media is to the left.

    +
    + + + +
    Golden Gate Bridge
    +

    This time our block is full width, and the image is to the right.

    + + + +

    The background color is a pale blue. 

    +
    + + + +

    Test to make sure that the editor and the front match. To test the Stack on mobile setting, reduce the browser window width.

    + + + +

    The control these settings, the block uses the css classes "has-media-on-the-right" and "is-stacked-on-mobile".

    + + + +

    The separator has three styles: default, wide line, and dots.

    + + + +
    + + + +
    + + + +
    + + + +

    The spacer block has a default height of 100 pixels:

    + + + + + + + +

    And finally, the page break:

    + + + + + + + +

    This paragraph block is on page two, after the page break.

    + + + + +]]>
    + + 1734 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block category: Embeds + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-embeds/ + Fri, 02 Nov 2018 16:51:55 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1738 + + + +

    This post tests various embed blocks:

    + + + +
    +https://twitter.com/WordPress/status/1057136472321613824 +
    Twitter,  wide width
    + + + +
    +https://youtu.be/ex8fMxXJDJw +
    YouTube
    + + + +
    +https://www.facebook.com/6427302910/posts/10156380423617911/ +
    + + + +
    +https://www.instagram.com/p/BpmueLLgEn_/?utm_source=ig_share_sheet&igshid=1hcxphic7p9e2 +
    + + + +
    +https://wordpress.tv/2018/10/14/kjell-reigstad-allan-cole-how-we-made-our-first-gutenberg-powered-theme/ +
    WordPress TV, full width
    + + + +

    +]]>
    + + 1738 + + + + + + + 0 + 0 + + + 0 + + + + + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + + + + + + + + + + ]]> + + + + + + + +

    Many of the WordPress contribution teams have been working hard on the new WordPress editor, and the tools, services,...

    Publicerat av WordPress Måndag 3 september 2018
    ]]>
    +
    + + + + + + + ]]> + + + + + + + + ]]> + + + + + + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + + + + + + ]]> + + + + + + + +

    Many of the WordPress contribution teams have been working hard on the new WordPress editor, and the tools, services,...

    Publicerat av WordPress Måndag 3 september 2018
    ]]>
    +
    + + + + + + + ]]> + + + + + + + + ]]> + + + + + +
    + + Block category: Widgets + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-widgets/ + Fri, 02 Nov 2018 16:45:35 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1736 + + +

    The shortcode widget:

    + + + +[gallery columns=2 ids="770,771"] + + + +

    The Archive Widget:

    + + + + + +

    The same Archive widget but as a dropdown:

    + + + + + + + +

    The Category widget block has an additional option for showing category hierarchies:

    + + + + + +

    The Latest Comments widget can display or hide the avatars, the date, and the comment excerpt:

    + + + + + +

    Here is an example of the Comments widget with all the options disabled. The number of comments has been reduced to two.

    + + + + + +

    And here is the Latest Posts widget in the list view, with dates:

    + + + + + +

    Grid view, now sorted from A -Z.

    + + + + + +

    You can also change the number of columns used to display the latest posts. The block below only displays posts from the Block category:

    + + + + + +

    Search widget:

    + + + + + +

    Tag Cloud widget:

    + + + + + +

    RSS Feed widget:

    + + + + ]]>
    + + 1736 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Columns + https://wpthemetestdata.wordpress.com/2018/11/02/block-columns/ + Fri, 02 Nov 2018 12:10:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1743 + + +
    +
    +

    This page tests how the theme displays the columns block. The first block tests a two column block with paragraphs.

    +
    + + + +
    +

    This is the second column. It should align next to the first column. Reduce the browser window width to test the responsiveness.

    +
    +
    + + + +
    +
    +

    This is the second column block. It has 3 columns.

    +
    + + + +
    +

    Paragraph 2 is in the middle.

    +
    + + + +
    +

    Paragraph 3 is in the last column.

    +
    +
    + + + +
    +
    +

    The third column block has 4 columns. Make sure that all the text is visible and that it is not cut off.

    +
    + + + +
    +

    Now the columns are getting narrower.

    +
    + + + +
    +

    The margins between the columns should be wide enough,

    +
    + + + +
    +

    so that the content of the columns does not run into or overlap each other.

    +
    +
    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    + + + +
    +

    Column five.

    +
    +
    + + + +

    To change the number of columns, select the column block to open the settings panel. You can show up to 6 columns. If the theme has support for wide align, you can also set the alignments to wide and full width.

    + + + +

    Below is a column block with six columns, and no alignment:

    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    + + + +
    +

    Column five.

    +
    + + + +
    +

    Column six.

    +
    +
    + + + +

    Next is a 3 column block, with a wide alignment:

    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    +
    + + + +

    And here is a two column block with full width, and a longer text. Make sure that the text wraps correctly.

    + + + +
    +
    +

    This is column one. Sometimes, you may want to use columns to display a larger text, so, lets add some more words. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna. Praesent sit amet ligula id orci venenatis auctor. Phasellus porttitor, metus non tincidunt dapibus, orci pede pretium neque, sit amet adipiscing ipsum lectus et libero. Aenean bibendum. Curabitur mattis quam id urna. Vivamus dui. Donec nonummy lacinia lorem. Cras risus arcu, sodales ac, ultrices ac, mollis quis, justo. Sed a libero. Quisque risus erat, posuere at, tristique non, lacinia quis, eros.

    +
    + + + +
    +

    Column two. Cras volutpat, lacus quis semper pharetra, nisi enim dignissim est, et sollicitudin quam ipsum vel mi. Sed commodo urna ac urna. Nullam eu tortor. Curabitur sodales scelerisque magna. Donec ultricies tristique pede. Nullam libero. Nam sollicitudin felis vel metus. Nullam posuere molestie metus. Nullam molestie, nunc id suscipit rhoncus, felis mi vulputate lacus, a ultrices tortor dolor eget augue. Aenean ultricies felis ut turpis. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Suspendisse placerat tellus ac nulla. Proin adipiscing sem ac risus. Maecenas nisi. Cras semper.

    +
    +
    + + + +

    We can also add blocks inside columns:

    + + + +
    +
    +
    1. This is a numbered list,
    2. inside a 3 column block
    3. with a wide alignment.
    +
    + + + +
    +

    The middle column has a paragraph with an image block below.

    + + + +
    canola
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna.
    +
    + + + +
    +

    -This third column has a quote

    Theme Reviewer
    +
    +
    + + + +

    But wait there is more!  We also have a block called Media & Text, which is a two column block that helps you display media and text content next to each other, without having to first setup a column block:

    + + + +
    dsc20050813_115856_52
    +

    Media & Text

    + + + +

    A paragraph block sits ready to be used, below your headline.

    + + + +

    +
    +]]>
    + + 1743 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Block: Cover + https://wpthemetestdata.wordpress.com/2018/11/02/block-cover/ + Sat, 03 Nov 2018 12:25:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1745 + + +

    This is a left aligned cover block with a background image.

    + + + +

    The cover block lets you add text on top of images or videos.

    + + + +

    This blocktype has several alignment options, and you can also align or center the text inside the block.

    + + + +

    The background image can be fixed and you can change its opacity and add an overlay color.

    + + + +

    Make sure that the text wraps correctly over the image, and that text markup and alignments are working.

    + + + +

    The next image should have a pink overlay color, the text should be bold and aligned to the left:

    + + + +

    A center aligned cover image block, with a left aligned text.

    + + + +

    This is a full width cover block with a fixed background image with a 20% opacity.

    + + + +

    Make sure that all the text is readable.

    + + + +

    Our last cover image block has a wide width.

    + + + +

    This is a wide cover block with a video background.

    + + + +

    Compare the video and image blocks.
    This block is centered.

    + + + +

    The block below has no alignment, and the text is a link. Overlay colors must also work with video backgrounds.

    + + + + +]]>
    + + 1745 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Button + https://wpthemetestdata.wordpress.com/2018/11/02/block-button/ + Sat, 03 Nov 2018 13:20:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1747 + + +

    Button blocks are not semantically buttons, but links inside a styled div. 

    + + + +

    If you do not add a link, a link tag without an anchor will be used.

    + + + + + + + +

    Check to make sure that the text wraps correctly when the button has more than one line of text, and when it is extra long.

    + + + + + + + +

    Buttons have three styles: 

    + + + + + + + + + + + + + + + +

    If the theme has a custom color palette, test that background color and text color settings work correctly. 

    + + + + + + + +

    Now lets test how buttons display together with large texts.

    + + + +

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio.

    + + + + + + + +

    Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna. Praesent sit amet ligula id orci venenatis auctor. Phasellus porttitor, metus non tincidunt dapibus, orci pede pretium neque, sit amet adipiscing ipsum lectus et libero. Aenean bibendum. Curabitur mattis quam id urna.

    + + + + + + + +

    Vivamus dui. Donec nonummy lacinia lorem. Cras risus arcu, sodales ac, ultrices ac, mollis quis, justo. Sed a libero. Quisque risus erat, posuere at, tristique non, lacinia quis, eros.

    +]]>
    + + 1747 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Quote + https://wpthemetestdata.wordpress.com/2018/11/02/block-quote/ + Sat, 03 Nov 2018 03:05:49 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1749 + + +

    The quote block has two styles, regular:

    + + + +

    Gutenberg is more than an editor.

    The Gutenberg Team
    + + + +

    and large:

    + + + +

    Yes, it is a press, certainly, but a press from which shall flow in inexhaustible streams, the most abundant and most marvelous liquor that has ever flowed to relieve the thirst of men!


    Johannes Gutenberg
    + + + +

    The quote blocks themselves have no alignments but the text can be aligned, bold, italic, and linked:

    + + + +

    Right

    Theme Review
    + + + +

    In addition to the quote block, we also have the pull quote, with a regular and a solid color style.

    + + + +

    You can change the color of the border and the text with the regular style:

    + + + +

    In addition to the quote block, we also have the pull quote.

    Theme Reviewer
    + + + +

    Or change the background color and text color with the solid color style:

    + + + +

    a solid color style

    Theme Reviewer
    +]]>
    + + 1749 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Gallery + https://wpthemetestdata.wordpress.com/2018/11/02/block-gallery/ + Sat, 03 Nov 2018 04:34:24 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1752 + + +

    Gallery blocks have two settings: the number of columns, and whether or not images should be cropped. The default number of columns is three, and the maximum number of columns is eight.

    + + + +

    Below is a three column gallery at full width, with cropped images.

    + + + + + + + + + + + +

    Some more text for taking up space.

    + + + +

    A two column gallery, aligned to the left, linked to media file.

    + + + +

    In the editor, the image captions can be edited directly by clicking on the text.

    + + + +

    If the number of images cannot be divided into the number of columns you have selected, the default is to have the last image(s) automatically stretch to the width of your gallery.

    + + + + + + + +

    A four column gallery with a wide width:

    + + + + + + + +

    A five column gallery with normal images:

    + + + + + + + +

    This is the same gallery, but with cropped images.

    + + + + + + + +

    Six columns: does it work at all window sizes?

    + + + + + + + +

    Seven columns: how does this look on a narrow window?

    + + + + + + + +

    Eight columns:

    + + + + +]]>
    + + 1752 + + + + + + + 0 + 0 + + + 0 + + + + + + + + + +
    + + Block: Image + https://wpthemetestdata.wordpress.com/2018/11/03/block-image/ + Sat, 03 Nov 2018 15:20:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1755 + + +

    Welcome to image alignment! If you recognize this post, it is because these are blocks that have been converted from the classic Markup: Image Alignment post. The best way to demonstrate the ebb and flow of the various image positioning options is to nestle them snuggly among an ocean of words. Grab a paddle and let's get started. Be sure to try it in RTL mode. Left should stay left and right should stay right for both reading directions.

    + + + +

    On the topic of alignment, it should be noted that users can choose from the options of None, Left, Right, and Center. If the theme has added support for align wide, images can also be wide and full width. Be sure to test this page in RTL mode.

    + + + +

    In addition, they also get the options of the image dimensions 25%, 50%, 75%, 100% or a set width and height.

    + + + +
    Image Alignment 580x300
    + + + +

    The image above happens to be centered.

    + + + +
    Image Alignment 150x150
    + + + +

    The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned.

    + + + +

    As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished!

    + + + +

    And now for a massively large image. It also has no alignment.

    + + + +
    Image Alignment 1200x400
    + + + +

    The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.

    + + + +
    Image Alignment 300x200
    + + + +

    And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there… Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently.

    + + + +

    In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah… Just like that. It never felt so good to be right.

    + + + +

    And just when you thought we were done, we're going to do them all over again with captions!

    + + + +
    Image Alignment 580x300
    Look at 580x300 getting some caption love.
    + + + +

    The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky.

    + + + +
    Image Alignment 150x150
    Itty-bitty caption.
    + + + +

    The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned.

    + + + +

    As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished!

    + + + +

    And now for a massively large image. It also has no alignment.

    + + + +
    Image Alignment 1200x400
    Massive image comment for your eyeballs.
    + + + +

    The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.

    + + + +
    Image Alignment 300x200
    Feels good to be right all the time.
    + + + +

    And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there… Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently.

    + + + +

    In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah… Just like that. It never felt so good to be right.

    + + + +

    Imagine that we would find a use for the extra wide image! This image has the wide width alignment:

    + + + +
    Image Alignment 1200x4002
    + + + +

    Can we go bigger? This image has the full width alignment:

    + + + +
    Image Alignment 1200x4002
    + + + +

    And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! One last thing: The last item in this post's content is a thumbnail floated right. Make sure any elements after the content are clearing properly.

    + + + +
    +]]>
    + + 1755 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Ελληνικά-Greek + https://wpthemetestdata.wordpress.com/greek/ + Fri, 14 Feb 2020 10:31:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1809 + + Headings Επικεφαλίδες +

    Επικεφαλίδα 1 Header one

    +

    Επικεφαλίδα 2 Header two

    +

    Επικεφαλίδα 3 Header three

    +

    Επικεφαλίδα 2 Header four

    +
    Επικεφαλίδα 5 Header five
    +
    Επικεφαλίδα 6Header six
    +

    Παράθεση άλλου Blockquotes

    +Single line blockquote: Μια γραμμή +
    Πάντα να είναι περίεργος.
    +Πολλές γραμμέ με αναφορά Multi line blockquote with a cite reference: +
    Το HTML <blockquote> ElementHTML Block Quotation Element) καταδεικνύει ότι το κείμενο έχει μια παράθεση. Συνήθως οπτικοποιείται με εσοχή (δείτε Σημειώσεις για το πως να το αλλάξετε. Ίσως να δίνεται και URL πηγής με την χρήση του cite attribute, μπλα, μπλα <cite> .
    +multiple contributors - MDN HTML element reference - blockquote +

    Πίνακες Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Υπάλληλος EmployeeΜισθός Salary
    Τάδε κάποιος$1Γιατί τόσα χρειάζεται για να ζήσει
    Jane Doe$100KFor all the blogging she does.
    Fred Bloggs$100MPictures are worth a thousand words, right? So Jane x 1,000.
    Jane Bloggs$100BWith hair like that?! Enough said...
    +

    Λίστες Definition Lists

    +
    +
    Τίτλος λίστας Definition List Title
    +
    Υποδιαίρεση λίστας Definition list division.
    +
    +

    Λίστα με κουκίδες Unordered Lists (Nested)

    +
      +
    • Πρώτο στοιχείο List item one +
        +
      • Στοιχείο πρώτο List item one +
          +
        • Στοιχείο λίστα ένα List item one
        • +
        • Στοιχείο λίστας δύο List item two
        • +
        +
      • +
      • Στοιχείο δεύτερο -item two
      • +
      +
    • +
    • Στοιχειο δύο List item two
    • +
    +

    Αριθμημένη λίστα(Nested)

    +
      +
    1. Στοιχειο ξεκινά με 8-start at 8 +
        +
      1. Στοιχείο λίστας ενα List item one +
          +
        1. Στοιχείο λίστας ενα -reversed attribute
        2. +
        3. Στοιχείο λίστας δύο
        4. +
        +
      2. +
      3. Δεύτερο στοιχείο
      4. +
      +
    2. +
    3. Στοιχείο δύο
    4. +
    +

    Ετικέττες HTML Tags

    +Διεύθυνση Address Tag + +
    1 Απέραντη διαδρομή Infinite Loop +Απλωπολή , ΤΚ 95014 +Ελλάδα
    Αγκυρωση Anchor Tag (aka. Link) + +Πάραδειγμα συνδέσμου. + +Συντομογραφία Abbreviation Tag + +Η συντομογραφία κτλ σημαίνει "Και τα λοιπά". + +Ακρωνύμιο Acronym Tag + +Το ακρωνύμιο κυρ σημαίνει "Κύριος". + +Big Tag + +Αυτό είναι μεγάλο θέμα + +Cite Tag + +"Φάε το φαϊ σου" --Όλες οι μαμάδες + +Code Tag + +This tag styles blocks of code. +.post-title { +margin: 0 0 5px; +font-weight: bold; +font-size: 38px; +line-height: 1.2; +και μία γραμμή με πολύ πάρα πολύ υπερβολικά πάρα πολύ μεγάλο κείμενο που πρέπει να δούμε πως το χειρίζεται η γραμματοσειρά και αν ξεχειλίζει από τις γραμμές και δημιουργεί πρόβλημα; +} + +Διαγραφή Delete Tag + +Μπορείτε να διαγράφεται κείμενο, αλλά δεν συνιστάται. + +Έμφαση Emphasize Tag + +Θα πρέπει να κάνει ιταλικ italicize το κείμενο. + +Εισαγωγή Insert Tag + +Αυτό το tag υποδηλώνει εισηγμένο inserted κείμενο. + +Keyboard Tag + +Αυτό το ελάχιστο γνωστό κείμενο πληκτρολογίου keyboard Tag, συνήθως μορφοποιείται όμοια με το <κώδικα code> tag. + +Προδιαμορφωμένο Preformatted Tag +

    Ο Δρόμος που δεν διάλεξα - The Road Not Taken

    +
    Robert Frost
    +	 Δυο δρόμοι διασταυρώθηκαν σ' ένα χρυσαφένιο δάσος ,
    +	 Και προς λύπη μου και τους δυο τα πόδια μου να ταξιδέψουν δεν μπορούσαν
    +	 Κι επί μακρόν εστάθηκα , καθώς ένας ήμουν ταξιδευτής μονάχος ,
    +	 κι έστρεψα το βλέμμα μου στον πρώτο όσο να χαθεί στο βάθος
    +	 μέχρι εκεί που χάνονταν στα άγρια χόρτα που βλαστούσαν.
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	και μία μακριά, πάρα πολύ μακριά, υπερβολικά μακροσκελής δίχως νόημα πρόταση για να δούμε πως το χειρίζεται το θέμα εμφάνισης και αν αναδιπλώνεται, κρύβεται ή ξεχειλίζει;
    +
    +Quote Tag for short, inline quotes + +Προγραμματιστές, προγραμματιστές, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +Αυτή η ετικέτα είναι με διαγράμμιση strike-through κείμενο text. + +Μικρά Small Tag + +Αυτή η ετικέτα είναι μικρότερο smaller κείμενο text. + +Strong Tag + +Αυτή η ετικέτα δείχνει έντονο bold κείμενο text. + +Subscript Tag + +Getting our science styling on with H2 δύοO, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2 δύο, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +Αυτή η ετικέτα δείχνει τυλετυπος teletype κείμενο, which is usually styled like the <κώδικα code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +Αυτή η ετικέτα δείχνει υπογράμμιση underlined text. + +Variable Tag + +Αυτή η ετικέτα δείχνει παράμετροι variables.]]>
    + + 1809 + + + + + + + 0 + 0 + + + 0 + + + + + + + + +
    + + Επίπεδο 2 -Second Greek level + https://wpthemetestdata.wordpress.com//greek/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-2/ + Fri, 14 Feb 2020 10:31:47 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1811 + + + + 1811 + + + + + + + 1809 + 0 + + + 0 + + + + + + + + + + + Επίπεδο 3 + https://wpthemetestdata.wordpress.com/greek/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-2/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-3/ + Fri, 14 Feb 2020 10:32:50 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1813 + + + + 1813 + + + + + + + 1811 + 0 + + + 0 + + + + + + + + + + + <![CDATA[WP 6.1 Font size scale]]> + https://wpthemetestdata.wordpress.com/wp-6-1-font-size-scale/ + Mon, 16 Jan 2023 07:08:31 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-font-size-scale/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Small H2 Heading

    + + + +

    Medium H2 Heading

    + + + +

    Large H2 Heading

    + + + +

    Extra Large H2 Heading

    + + + +

    Small paragraph

    + + + +

    Medium paragraph

    + + + +

    Large paragraph

    + + + +

    Extra Large paragraph

    +]]> +
    + + 163 + + + + + + + + + 0 + 0 + + + 0 + + + + + + +
    + + <![CDATA[WP 6.1 spacing presets]]> + https://wpthemetestdata.wordpress.com/wp-6-1-spacing-presets/ + Mon, 16 Jan 2023 06:56:53 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-spacing-presets/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    On this page, some group blocks have border or background color set to increase visibility.

    + + + +
    +

    This group has a no background color and no additional spacing set.

    +
    + + + +
    +

    This group has a background color but no additional spacing set.

    +
    + + + +
    +

    This group has a 1px border and padding preset 1

    +
    + + + +
    +

    This group has padding preset 1

    +
    + + + +
    +

    This group has a 1px border and padding preset 2

    +
    + + + +
    +

    This group has a background color and padding preset 3

    +
    + + + +
    +

    This group has a background color and padding preset 4

    +
    + + + +
    +

    This group has a background color and padding preset 5

    +
    + + + +
    +

    This group has a background color and padding preset 6

    +
    + + + +
    +

    This group has a background color and padding preset 7

    +
    + + + +
    +

    This group has padding preset 7

    +
    + + + +
    +

    This group has a background color and margin preset 1

    +
    + + + +
    +

    This group has a background color and margin preset 2

    +
    + + + +
    +

    This group has a background color and margin preset 3

    +
    + + + +
    +

    This group has a background color and margin preset 4

    +
    + + + +
    +

    This group has a background color and margin preset 5

    +
    + + + +
    +

    This group has a background color and margin preset 6

    +
    + + + +
    +

    This group has a background color and margin preset 7

    +
    + + + +
    +

    This group has a 1px border, padding preset 4 and margin preset 4

    +
    + + + +
    +

    This group has padding preset 4 and margin preset 4

    +
    +]]>
    + + 150 + + + + + + + + + 0 + 0 + + + 0 + + + + + + +
    + + <![CDATA[WP 6.1 Theme block category]]> + https://wpthemetestdata.wordpress.com/wp-6-1-theme-block-category/ + Fri, 13 Jan 2023 18:38:05 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-theme-block-category/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Navigation block with page list:

    + + + + + + + +

    Site logo:

    + + + + + +

    Site title:

    + + + + + +

    Tagline block:

    + + + + + +

    Query loop "Title & Date" variation:

    + + + +
    + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Title & Excerpt" variation:

    + + + +
    + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Title, Date & Excerpt" variation:

    + + + +
    + + + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Image, Date & Title" variation:

    + + + +
    + + + + + + + + + + + + + + + + + +

    + +
    + + + +

    Avatar block:

    + + + + + +

    Post title block:

    + + + + + +

    Post excerpt:

    + + + + + +

    Post featured image:

    + + + + + +

    Post author:

    + + + + + +

    Post date:

    + + + + + +

    Categories:

    + + + + + +

    Tags:

    + + + + + +

    Next post & previous post:

    + + + + + + + +

    Read More:

    + + + + + +

    Comments block:

    + + + +
    + + + +
    +
    + + + +
    + + +
    + +
    + + + + +
    +
    + + + + + + + + + + + + + + +

    Post comments form block:

    +
    + + + + + +

    Login/out:

    + + + + + + + + + + + +

    Author biography block:

    + + + + + + + + + +

    Term description, archive title, search results title can not be shown on single posts.

    +]]>
    + + 51 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + + + + 2 + + + https://wpthemetestdata.wordpress.com/ + + + + + + + 0 + 0 + +
    + + <![CDATA[WP 6.1 Widgets block category]]> + https://wpthemetestdata.wordpress.com/wp-6-1-widgets-block-category/ + Fri, 13 Jan 2023 18:22:21 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-widgets-block-category/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Archives block:

    + + + + + + + +

    Categories list:

    + + + + + +

    Custom HTML:

    + + + + test + + + +

    Latest comments:

    + + + + + +

    Latest posts:

    + + + + + +

    Page list block:

    + + + + + +

    RSS block:

    + + + + + + + + + + + + + + + +

    Shortcode block:

    + + + + + +

    Social links:

    + + + + + + + + + + + + + + + +

    Tag cloud:

    + + + + + +

    +]]>
    + + 34 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Design category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-design-category-blocks/ + Fri, 13 Jan 2023 18:03:23 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-design-category-blocks/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + + + + + +
    +
    +

    One single column inside a columns block.

    +
    +
    + + + +
    +
    +

    Column one. The background color is on the single column.

    +
    + + + +
    +

    Column two

    +
    +
    + + + +
    +
    +

    Column one. The background color is on the parent columns block.

    +
    + + + +
    +

    Column two

    +
    + + + +
    +

    Column three

    +
    +
    + + + +
    +

    Group with paragraph inside. Below are the group block variations:

    +
    + + + +
    +

    Row

    + + + +

    Row

    +
    + + + +
    +

    Stack

    + + + +

    Stack

    +
    + + + +

    More block:

    + + + + + + + +

    Page break:

    + + + + + + + +

    Separators:

    + + + +

    Default style, no alignment:

    + + + +
    + + + +

    Default style, wide alignment:

    + + + +
    + + + +

    Default style, full width:

    + + + +
    + + + +

    Default style, align center:

    + + + +
    + + + +

    Wide style, no alignment:

    + + + +
    + + + +

    Wide style, wide alignment:

    + + + +
    + + + +

    Wide style, full width:

    + + + +
    + + + +

    Wide style, align center:

    + + + +
    + + + +

    Dotted style, no alignment:

    + + + +
    + + + +

    Dotted style, wide alignment:

    + + + +
    + + + +

    Dotted style, full width:

    + + + +
    + + + +

    Dotted style, align center:

    + + + +
    + + + +

    Spacer:

    + + + + +]]>
    + + 24 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Media category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-media-category-blocks/ + Fri, 13 Jan 2023 18:02:28 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-media-category-blocks/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Image block:

    + + + +
    dsc20050727_091048_222
    + + + +

    Gallery:

    + + + + + + + +

    Audio:

    + + + +
    + + + +

    Cover:

    + + + +
    Wind Farm
    +

    Write title...

    +
    + + + +
    +

    Fixed background

    +
    + + + +
    +

    Repeated background

    +
    + + + +
    +

    Fixed and Repeated background

    +
    + + + +
    dsc20050727_091048_222
    +

    Duotone

    +
    + + + +
    Rain Ripples
    +

    Top left

    +
    + + + +
    Rain Ripples
    +

    Top center

    +
    + + + +
    Rain Ripples
    +

    Top right

    +
    + + + +
    Rain Ripples
    +

    Center left

    +
    + + + +
    Rain Ripples
    +

    Center right

    +
    + + + +
    Rain Ripples
    +

    Bottom left

    +
    + + + +
    Rain Ripples
    +

    Bottom center

    +
    + + + +
    Rain Ripples
    +

    Bottom right

    +
    + + + + + + + +
    Boardwalk
    +

    This is the Media & Text block with an image on the left.

    +
    + + + +
    Image Alignment 1200x4002
    +

    This is the Media & Text block with a cropped image on the left

    +
    + + + +
    +

    This is the Media & Text block with a video the right.

    +
    + + + +
    +]]>
    + + 21 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Text category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-text-category-blocks/ + Fri, 13 Jan 2023 17:46:19 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-text-category-blocks + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Paragraph

    + + + +

    H1 Heading

    + + + +

    H2 Heading

    + + + +

    H3 Heading

    + + + +

    H4 Heading

    + + + +
    H5 Heading
    + + + +
    H6 Heading
    + + + +
      +
    • List
    • + + + +
    • List
    • +
    + + + +
      +
    1. List
    2. + + + +
    3. List
    4. +
    + + + +
      +
    1. List +
        +
      • List
      • +
      +
    2. +
    + + + +
    +

    Quote block

    +citation
    + + +

    classic block

    + + +
    code block
    + + + +
    Preformatted block
    + + + +

    Pull quote

    Citation
    + + + +
    table celltable cell two
    table cell threetable cell four
    Table caption
    + + + +
    header label oneheader label two
    table celltable cell two
    table cell threetable cell four
    footer label onefooter label two
    Table caption
    + + + +
    Verse block
    +]]>
    + + 8 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + +
    + + Keyboard navigation + https://wpthemetestdata.wordpress.com/2018/10/20/keyboard-navigation/ + Sun, 21 Oct 2018 03:03:48 +0000 + + https://wpthemetestdata.wordpress.com/?p=1724 + + +

    There are many different ways to use the web besides a mouse and a pair of eyes. Users navigate for example with a keyboard only or with their voice.

    + + + +

    All the functionality, including menus, links and forms should work using a keyboard only. This is essential for all assistive technology to work properly. The only way to test this, at the moment, is manually. The best time to test this is during development.

    + + + +

    How to keyboard test:

    + + + +

    Tab through your pages, links and forms to do the following tests:

    + + + +
    • Confirm that all links can be reached and activated via keyboard, including any in dropdown submenus.
    • Confirm that all links get a visible focus indicator (e.g., a border highlight).
    • Confirm that all visually hidden links (e.g. skip links) become visible when in focus.
    • Confirm that all form input fields and buttons can be accessed and used via keyboard.
    • Confirm that all interactions, buttons, and other controls can be triggered via keyboard — any action you can complete with a mouse must also be performable via keyboard.
    • Confirm that focus doesn’t move in unexpected ways around the page.
    • Confirm that using shift+tab to move backwards works as well.
    + + + +

    Resources

    + + + + +]]>
    + + 1724 + + + + + + + 0 + 0 + + + + 0 +
    + + About The Tests + https://wpthemetestdata.wordpress.com/about/ + Mon, 26 Jul 2010 02:40:01 +0000 + themedemos + https://wpthemetestdata.wordpress.com/about/ + + WordPress Theme Development Resources + +
      +
    1. See the WordPress Theme Developer Handbook for examples of best practices.
    2. +
    3. See the WordPress Code Reference for more information about WordPress' functions, classes, methods, and hooks.
    4. +
    5. See Theme Unit Test for a robust test suite for your Theme and get the latest version of the test data you see here.
    6. +
    7. See Releasing Your Theme for a guide to submitting your Theme to the Theme Directory.
    8. +
    ]]>
    + + 2 + 2010-07-25 19:40:01 + 2010-07-26 02:40:01 + closed + closed + about + publish + 0 + 1 + page + + 0 +
    + + Lorem Ipsum + https://wpthemetestdata.wordpress.com/lorem-ipsum/ + Tue, 04 Sep 2007 16:52:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/lorem-ipsum/ + + + + 146 + 2007-09-04 09:52:50 + 2007-09-04 16:52:50 + closed + closed + lorem-ipsum + publish + 0 + 7 + page + + 0 + + + Page with comments + https://wpthemetestdata.wordpress.com/about/page-with-comments/ + Tue, 04 Sep 2007 17:47:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/page-with-comments/ + + + + 155 + 2007-09-04 10:47:47 + 2007-09-04 17:47:47 + open + closed + page-with-comments + publish + 2 + 3 + page + + 0 + + 167 + + anon@example.com + + + 2007-09-04 10:49:28 + 2007-09-04 00:49:28 + + 1 + + 0 + 0 + + + 168 + + tellyworth+test2@example.com + + + 2007-09-04 10:49:03 + 2007-09-04 00:49:03 + + 1 + + 0 + 0 + + + 169 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2007-09-04 10:48:51 + 2007-09-04 17:48:51 + + 1 + + 0 + 0 + + + 1017 + + themereviewteam@gmail.com + + + 2014-12-10 01:56:24 + 2014-12-10 08:56:24 + + 0 + + 168 + 0 + + + + Page with comments disabled + https://wpthemetestdata.wordpress.com/about/page-with-comments-disabled/ + Tue, 04 Sep 2007 17:48:10 +0000 + themedemos + https://wpthemetestdata.wordpress.com/page-with-comments-disabled/ + + + + 156 + 2007-09-04 10:48:10 + 2007-09-04 17:48:10 + closed + closed + page-with-comments-disabled + publish + 2 + 4 + page + + 0 + + + Level 3 + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3/ + Tue, 11 Dec 2007 06:23:16 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-3/ + + + + 172 + 2007-12-11 16:23:16 + 2007-12-11 06:23:16 + closed + closed + level-3 + publish + 173 + 0 + page + + 0 + + + Level 2 + https://wpthemetestdata.wordpress.com/level-1/level-2/ + Tue, 11 Dec 2007 06:23:33 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-2/ + + + + 173 + 2007-12-11 16:23:33 + 2007-12-11 06:23:33 + closed + closed + level-2 + publish + 174 + 0 + page + + 0 + + + Level 1 + https://wpthemetestdata.wordpress.com/level-1/ + Tue, 11 Dec 2007 23:25:40 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-1/ + + + + 174 + 2007-12-11 16:25:40 + 2007-12-11 23:25:40 + closed + closed + level-1 + publish + 0 + 5 + page + + 0 + + + Clearing Floats + https://wpthemetestdata.wordpress.com/about/clearing-floats/ + Sun, 01 Aug 2010 16:42:26 +0000 + themedemos + https://wpthemetestdata.wordpress.com/ + + This is the second page]]> + + 501 + 2010-08-01 09:42:26 + 2010-08-01 16:42:26 + closed + closed + clearing-floats + publish + 2 + 2 + page + + 0 + + + canola2 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/canola2/ + Mon, 16 Jun 2008 13:17:54 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/canola2.jpg + + + + 611 + 2008-06-16 06:17:54 + 2008-06-16 13:17:54 + open + closed + canola2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/canola2.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + dsc20050727_091048_222 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050727_091048_222/ + Mon, 16 Jun 2008 13:20:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050727_091048_222.jpg + + + + 616 + 2008-06-16 06:20:37 + 2008-06-16 13:20:37 + open + closed + dsc20050727_091048_222 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050727_091048_222.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + dsc20050813_115856_52 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050813_115856_52/ + Mon, 16 Jun 2008 13:20:57 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050813_115856_52.jpg + + + + 617 + 2008-06-16 06:20:57 + 2008-06-16 13:20:57 + open + closed + dsc20050813_115856_52 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050813_115856_52.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Front Page + https://wpthemetestdata.wordpress.com/front-page/ + Sat, 21 May 2011 01:49:43 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=701 + + + + 701 + 2011-05-20 18:49:43 + 2011-05-21 01:49:43 + open + closed + front-page + publish + 0 + 0 + page + + 0 + + + a Blog page + https://wpthemetestdata.wordpress.com/blog/ + Sat, 21 May 2011 01:51:43 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=703 + + + + 703 + 2011-05-20 18:51:43 + 2011-05-21 01:51:43 + open + closed + blog + publish + 0 + 0 + page + + 0 + + 1016 + + example@example.com + + + 2014-11-29 21:03:05 + 2014-11-30 04:03:05 + + 0 + + 0 + 0 + + + + Bell on Wharf + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/100_5478/ + Mon, 16 Jun 2008 21:34:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/100_5478.jpg + + + + 754 + 2008-06-16 14:34:50 + 2008-06-16 21:34:50 + open + closed + 100_5478 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/100_5478.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Golden Gate Bridge + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/100_5540/ + Mon, 16 Jun 2008 21:35:55 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/100_5540.jpg + + + + 755 + 2008-06-16 14:35:55 + 2008-06-16 21:35:55 + open + closed + 100_5540 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/100_5540.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sunburst Over River + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/cep00032/ + Mon, 16 Jun 2008 21:41:24 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/cep00032.jpg + + + + 756 + 2008-06-16 14:41:24 + 2008-06-16 21:41:24 + open + closed + cep00032 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/cep00032.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Boardwalk + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dcp_2082/ + Mon, 16 Jun 2008 21:41:27 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dcp_2082.jpg + + + + 757 + 2008-06-16 14:41:27 + 2008-06-16 21:41:27 + open + closed + dcp_2082 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dcp_2082.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Yachtsody in Blue + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc03149/ + Mon, 16 Jun 2008 21:41:33 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc03149.jpg + + + + 758 + 2008-06-16 14:41:33 + 2008-06-16 21:41:33 + open + closed + dsc03149 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc03149.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Rain Ripples + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc04563/ + Mon, 16 Jun 2008 21:41:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc04563.jpg + + + + 759 + 2008-06-16 14:41:37 + 2008-06-16 21:41:37 + open + closed + dsc04563 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc04563.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sydney Harbor Bridge + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc09114/ + Mon, 16 Jun 2008 21:41:41 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc09114.jpg + + + + 760 + 2008-06-16 14:41:41 + 2008-06-16 21:41:41 + open + closed + dsc09114 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc09114.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Wind Farm + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050102_192118_51/ + Mon, 16 Jun 2008 21:41:42 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050102_192118_51.jpg + + + + 761 + 2008-06-16 14:41:42 + 2008-06-16 21:41:42 + open + closed + dsc20050102_192118_51 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050102_192118_51.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Antique Farm Machinery + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20051220_160808_102/ + Mon, 16 Jun 2008 21:41:45 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_160808_102.jpg + + + + 762 + 2008-06-16 14:41:45 + 2008-06-16 21:41:45 + open + closed + dsc20051220_160808_102 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_160808_102.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Rusty Rail + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20051220_173257_119/ + Mon, 16 Jun 20081 21:47:17 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_173257_119.jpg + + + + 764 + 2008-06-16 14:47:17 + 2008-06-16 21:47:17 + open + closed + dsc20051220_173257_119 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_173257_119.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sea and Rocks + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dscn3316/ + Mon, 16 Jun 2008 21:47:20 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dscn3316.jpg + + + + 765 + 2008-06-16 14:47:20 + 2008-06-16 21:47:20 + open + closed + dscn3316 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dscn3316.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Big Sur + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/michelle_049/ + Mon, 16 Jun 2008 21:47:23 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/michelle_049.jpg + + + + 766 + 2008-06-16 14:47:23 + 2008-06-16 21:47:23 + open + closed + michelle_049 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/michelle_049.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Windmill + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dcf-1-0/ + Mon, 16 Jun 2008 21:47:26 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/windmill.jpg + + + + 767 + 2008-06-16 14:47:26 + 2008-06-16 21:47:26 + open + closed + dcf-1-0 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/windmill.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Huatulco Coastline + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/alas-i-have-found-my-shangri-la/ + Mon, 16 Jun 2008 21:49:48 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0513-1.jpg + + + + 768 + 2008-06-16 14:49:48 + 2008-06-16 21:49:48 + open + closed + alas-i-have-found-my-shangri-la + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0513-1.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Brazil Beach + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_0747/ + Mon, 16 Jun 2008 21:50:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0747.jpg + + + + 769 + 2008-06-16 14:50:37 + 2008-06-16 21:50:37 + open + closed + img_0747 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0747.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Huatulco Coastline + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_0767/ + Mon, 16 Jun 2008 21:51:19 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0767.jpg + + + + 770 + 2008-06-16 14:51:19 + 2008-06-16 21:51:19 + open + closed + img_0767 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0767.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Boat Barco Texture + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_8399/ + Mon, 16 Jun 2008 21:51:57 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_8399.jpg + + + + 771 + 2008-06-16 14:51:57 + 2008-06-16 21:51:57 + open + closed + img_8399 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_8399.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Resinous + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20040724_152504_532-2/ + Mon, 04 Jun 2012 18:36:56 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg + + + + 807 + 2012-06-04 11:36:56 + 2012-06-04 18:36:56 + open + closed + dsc20040724_152504_532-2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg + + _attachment_original_parent_id + + + + + St. Louis Blues + https://wpthemetestdata.wordpress.com/2010/07/02/post-format-audio/originaldixielandjazzbandwithalbernard-stlouisblues/ + Mon, 16 Jun 2008 16:49:29 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3 + + + + 821 + 2008-06-16 09:49:29 + 2008-06-16 16:49:29 + open + closed + originaldixielandjazzbandwithalbernard-stlouisblues + inherit + 587 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3 + + + OLYMPUS DIGITAL CAMERA + https://wpthemetestdata.wordpress.com/about/clearing-floats/olympus-digital-camera/ + Thu, 05 Aug 2010 18:07:34 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2010/08/manhattansummer.jpg + + + + 827 + 2010-08-05 11:07:34 + 2010-08-05 18:07:34 + open + closed + olympus-digital-camera + inherit + 501 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2010/08/manhattansummer.jpg + + + Image Alignment 580x300 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-580x300/ + Fri, 15 Mar 2013 00:44:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg + + + + 967 + 2013-03-14 19:44:50 + 2013-03-15 00:44:50 + open + open + image-alignment-580x300 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Image Alignment 150x150 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-150x150/ + Fri, 15 Mar 2013 00:44:49 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg + + + + 968 + 2013-03-14 19:44:49 + 2013-03-15 00:44:49 + open + open + image-alignment-150x150 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Horizontal Featured Image + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-horizontal/featured-image-horizontal-2/ + Fri, 15 Mar 2013 20:40:38 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-horizontal.jpg + + + + 1022 + 2013-03-15 15:40:38 + 2013-03-15 20:40:38 + open + open + featured-image-horizontal-2 + inherit + 1011 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-horizontal.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + I Am Worth Loving Wallpaper + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/soworthloving-wallpaper/ + Thu, 14 Mar 2013 14:58:24 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/soworthloving-wallpaper.jpg + + + + 1023 + 2013-03-14 09:58:24 + 2013-03-14 14:58:24 + open + open + soworthloving-wallpaper + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/soworthloving-wallpaper.jpg + + _wp_attachment_image_alt + + + + + Image Alignment 300x200 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-300x200/ + Fri, 15 Mar 2013 00:44:49 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg + + + + 1025 + 2013-03-14 19:44:49 + 2013-03-15 00:44:49 + open + open + image-alignment-300x200 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Vertical Featured Image + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-vertical/featured-image-vertical-2/ + Fri, 15 Mar 2013 20:41:09 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-vertical.jpg + + + + 1027 + 2013-03-15 15:41:09 + 2013-03-15 20:41:09 + open + open + featured-image-vertical-2 + inherit + 1016 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-vertical.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Image Alignment 1200x4002 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-1200x4002/ + Fri, 15 Mar 2013 00:44:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg + + + + 1029 + 2013-03-14 19:44:50 + 2013-03-15 00:44:50 + open + open + image-alignment-1200x4002 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Unicorn Wallpaper + https://wpthemetestdata.wordpress.com/2010/08/08/post-format-image/unicorn-wallpaper/ + Fri, 14 Dec 2012 03:10:39 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2012/12/unicorn-wallpaper.jpg + + + + 1045 + 2012-12-13 22:10:39 + 2012-12-14 03:10:39 + open + open + unicorn-wallpaper + inherit + 1158 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2012/12/unicorn-wallpaper.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Pages + https://wpthemetestdata.wordpress.com/2013/04/09/pages/ + Tue, 09 Apr 2013 13:37:45 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/pages + + + + 1100 + 2013-04-09 06:37:45 + 2013-04-09 13:37:45 + open + closed + pages + publish + 0 + 2 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Categories + https://wpthemetestdata.wordpress.com/2013/04/09/categories/ + Tue, 09 Apr 2013 13:37:45 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/categories + + + + 1101 + 2013-04-09 06:37:45 + 2013-04-09 13:37:45 + open + closed + categories + publish + 0 + 10 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1112/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1112</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test markup tags and styles.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1112</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1112</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>21</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[4675]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1115/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1115</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test post formats.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1115</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1115</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>24</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[44090582]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1118/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1118</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test unpublished posts.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1118</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1118</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>28</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[54090]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>Depth + https://wpthemetestdata.wordpress.com/2013/04/09/depth/ + Tue, 09 Apr 2013 13:37:46 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/depth + + + + 1119 + 2013-04-09 06:37:46 + 2013-04-09 13:37:46 + open + closed + depth + publish + 0 + 29 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 01 + https://wpthemetestdata.wordpress.com/2013/04/09/level-01/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-01 + + + + 1120 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-01 + publish + 0 + 30 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 02 + https://wpthemetestdata.wordpress.com/2013/04/09/level-02/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-02 + + + + 1121 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-02 + publish + 0 + 31 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 03 + https://wpthemetestdata.wordpress.com/2013/04/09/level-03/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-03 + + + + 1122 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-03 + publish + 0 + 32 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 04 + https://wpthemetestdata.wordpress.com/2013/04/09/level-04/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-04 + + + + 1123 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-04 + publish + 0 + 33 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 05 + https://wpthemetestdata.wordpress.com/2013/04/09/level-05/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-05 + + + + 1124 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-05 + publish + 0 + 34 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 06 + https://wpthemetestdata.wordpress.com/2013/04/09/level-06/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-06 + + + + 1125 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-06 + publish + 0 + 35 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 07 + https://wpthemetestdata.wordpress.com/2013/04/09/level-07/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-07 + + + + 1126 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-07 + publish + 0 + 36 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 08 + https://wpthemetestdata.wordpress.com/2013/04/09/level-08/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-08 + + + + 1127 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-08 + publish + 0 + 37 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 09 + https://wpthemetestdata.wordpress.com/2013/04/09/level-09/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-09 + + + + 1128 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-09 + publish + 0 + 38 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 10 + https://wpthemetestdata.wordpress.com/2013/04/09/level-10/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-10 + + + + 1129 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-10 + publish + 0 + 39 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Advanced + https://wpthemetestdata.wordpress.com/2013/04/09/advanced/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/advanced + + + + 1130 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + advanced + publish + 0 + 40 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu Description + https://wpthemetestdata.wordpress.com/2013/04/09/menu-description/ + Tue, 09 Apr 2013 13:37:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-description + + + + 1142 + 2013-04-09 06:37:50 + 2013-04-09 13:37:50 + open + closed + menu-description + publish + 0 + 44 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu Title Attribute + https://wpthemetestdata.wordpress.com/2013/04/09/menu-title-attribute/ + Tue, 09 Apr 2013 13:37:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-title-attribute + + + + 1143 + 2013-04-09 06:37:50 + 2013-04-09 13:37:50 + open + closed + menu-title-attribute + publish + 0 + 41 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu CSS Class + https://wpthemetestdata.wordpress.com/2013/04/09/menu-css-class/ + Tue, 09 Apr 2013 13:37:51 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-css-class + + + + 1144 + 2013-04-09 06:37:51 + 2013-04-09 13:37:51 + open + closed + menu-css-class + publish + 0 + 42 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + New Window / Tab + https://wpthemetestdata.wordpress.com/2013/04/09/new-window-tab/ + Tue, 09 Apr 2013 13:37:51 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/new-window-tab + + + + 1145 + 2013-04-09 06:37:51 + 2013-04-09 13:37:51 + open + closed + new-window-tab + publish + 0 + 43 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1263/</link> + <pubDate>Tue, 09 Apr 2013 13:38:00 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1263</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1263</wp:post_id> + <wp:post_date>2013-04-09 06:38:00</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:38:00</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1263</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1100]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1264/</link> + <pubDate>Tue, 09 Apr 2013 13:38:01 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1264</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1264</wp:post_id> + <wp:post_date>2013-04-09 06:38:01</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:38:01</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1264</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1100]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>twitter.com + https://wpthemetestdata.wordpress.com/2018/10/20/twitter-com/ + Sun, 21 Oct 2018 02:57:33 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/twitter-com/ + + + + 1719 + + + + + + + 0 + 1 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + facebook.com + https://wpthemetestdata.wordpress.com/2018/10/20/facebook-com/ + Sun, 21 Oct 2018 02:57:35 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/facebook-com/ + + + + 1720 + + + + + + + 0 + 2 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + github.com + https://wpthemetestdata.wordpress.com/2018/10/20/github-com/ + Sun, 21 Oct 2018 02:57:37 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/github-com + + + + 1721 + + + + + + + 0 + 3 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + instagram.com + https://wpthemetestdata.wordpress.com/2018/10/20/instagram-com + Sun, 21 Oct 2018 02:57:41 +000 + themereviewteam> + https://wpthemetestdata.wordpress.com/2018/10/20/instagram-com + + + + 1723 + + + + + + + 0 + 5 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + linkedin.com + https://wpthemetestdata.wordpress.com/2018/10/20/linkedin-com/ + Sun, 21 Oct 2018 02:57:39 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/linkedin-com/ + + + + 1722 + + + + + + + 0 + 4 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + triforce-wallpaper + https://wpthemetestdata.wordpress.com/2010/08/07/post-format-image-caption/triforce-wallpaper/ + Tue, 17 Aug 2010 20:17:31 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2010/08/triforce-wallpaper.jpg + + + + 1628 + 2010-08-17 13:17:31 + 2010-08-17 20:17:31 + open + closed + triforce-wallpaper + inherit + 1163 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2010/08/triforce-wallpaper.jpg + + + + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1636/</link> + <pubDate>Tue, 07 May 2013 19:54:30 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1636</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1636</wp:post_id> + <wp:post_date>2013-05-07 12:54:30</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:30</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1636</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1637/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1637</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1637</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1637</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1638/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1638</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1638</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1638</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1639/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1639</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1639</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1639</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1640/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1640</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1640</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1640</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1641/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1641</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1641</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1641</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1643/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1643</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1643</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1643</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1644/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1644</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1644</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1644</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[701]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1645/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1645</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1645</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1645</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1646/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1646</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1646</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1646</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1647/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1647</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1647</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1647</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1648/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1648</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1648</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1648</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1649/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1649</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1649</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1649</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1650/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1650</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1650</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1650</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1651/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1651</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1651</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1651</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>10</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[174]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1652/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1652</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1652</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1652</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>11</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[173]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1653/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1653</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1653</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1653</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>12</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[172]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1654/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1654</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1654</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1654</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>13</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[746]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1655/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1655</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1655</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1655</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>14</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[748]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1656/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1656</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1656</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1656</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>15</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[742]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1657/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1657</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1657</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1657</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>16</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[744]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1658/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1658</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1658</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1658</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>17</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1659/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1659</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1659</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1659</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>18</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[733]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1660/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1660</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1660</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1660</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>19</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[735]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1643/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1643</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1643</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1643</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1644/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1644</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1644</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1644</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[701]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1645/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1645</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1645</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1645</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1646/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1646</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1646</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1646</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1647/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1647</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1647</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1647</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1648/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1648</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1648</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1648</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1649/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1649</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1649</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1649</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1650/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1650</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1650</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1650</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1651/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1651</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1651</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1651</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>10</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[174]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1652/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1652</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1652</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1652</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>11</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[173]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1653/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1653</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1653</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1653</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>12</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[172]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1654/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1654</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1654</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1654</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>13</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[746]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1655/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1655</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1655</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1655</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>14</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[748]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1656/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1656</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1656</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1656</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>15</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[742]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1657/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1657</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1657</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1657</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>16</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[744]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1658/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1658</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1658</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1658</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>17</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1659/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1659</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1659</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1659</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>18</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[733]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1660/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1660</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1660</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1660</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>19</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[735]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>dsc20040724_152504_532 + https://wpthemetestdata.wordpress.com/?attachment_id=1686 + Wed, 18 Sep 2013 21:37:05 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20040724_152504_532.jpg + + + + 1686 + 2013-09-18 14:37:05 + 2013-09-18 21:37:05 + open + closed + dsc20040724_152504_532 + inherit + 0 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20040724_152504_532.jpg + + + dsc20050604_133440_34211 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050604_133440_34211/ + Wed, 18 Sep 2013 21:37:07 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20050604_133440_34211.jpg + + + + 1687 + 2013-09-18 14:37:07 + 2013-09-18 21:37:07 + open + closed + dsc20050604_133440_34211 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20050604_133440_34211.jpg + + + 2014-slider-mobile-behavior + https://wpthemetestdata.wordpress.com/?attachment_id=1690 + Wed, 04 Dec 2013 18:08:29 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/12/2014-slider-mobile-behavior.mov + + + + 1690 + 2013-12-04 11:08:29 + 2013-12-04 18:08:29 + open + closed + 2014-slider-mobile-behavior + inherit + 0 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/12/2014-slider-mobile-behavior.mov + + + dsc20050315_145007_132 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050315_145007_132-2/ + Sun, 05 Jan 2014 18:45:21 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2014/01/dsc20050315_145007_132.jpg + + + + 1691 + 2014-01-05 11:45:21 + 2014-01-05 18:45:21 + open + closed + dsc20050315_145007_132-2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2014/01/dsc20050315_145007_132.jpg + + + spectacles + https://wpthemetestdata.wordpress.com/about/clearing-floats/spectacles-2/ + Sun, 05 Jan 2014 18:45:36 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2014/01/spectacles.gif + + + + 1692 + 2014-01-05 11:45:36 + 2014-01-05 18:45:36 + open + closed + spectacles-2 + inherit + 501 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2014/01/spectacles.gif + + + Post Format: Standard + https://wpthemetestdata.wordpress.com/2010/10/05/post-format-standard/ + Tue, 05 Oct 2010 07:27:25 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=358 + + + +Mrs. Darling first heard of Peter when she was tidying up her children's minds. It is the nightly custom of every good mother after her children are asleep to rummage in their minds and put things straight for next morning, repacking into their proper places the many articles that have wandered during the day. + +If you could keep awake (but of course you can't) you would see your own mother doing this, and you would find it very interesting to watch her. It is quite like tidying up drawers. You would see her on her knees, I expect, lingering humorously over some of your contents, wondering where on earth you had picked this thing up, making discoveries sweet and not so sweet, pressing this to her cheek as if it were as nice as a kitten, and hurriedly stowing that out of sight. When you wake in the morning, the naughtiness and evil passions with which you went to bed have been folded up small and placed at the bottom of your mind and on the top, beautifully aired, are spread out your prettier thoughts, ready for you to put on. + +I don't know whether you have ever seen a map of a person's mind. Doctors sometimes draw maps of other parts of you, and your own map can become intensely interesting, but catch them trying to draw a map of a child's mind, which is not only confused, but keeps going round all the time. There are zigzag lines on it, just like your temperature on a card, and these are probably roads in the island, for the Neverland is always more or less an island, with astonishing splashes of colour here and there, and coral reefs and rakish-looking craft in the offing, and savages and lonely lairs, and gnomes who are mostly tailors, and caves through which a river runs, and princes with six elder brothers, and a hut fast going to decay, and one very small old lady with a hooked nose. It would be an easy map if that were all, but there is also first day at school, religion, fathers, the round pond, needle-work, murders, hangings, verbs that take the dative, chocolate pudding day, getting into braces, say ninety-nine, three-pence for pulling out your tooth yourself, and so on, and either these are part of the island or they are another map showing through, and it is all rather confusing, especially as nothing will stand still. + +Of course the Neverlands vary a good deal. John's, for instance, had a lagoon with flamingoes flying over it at which John was shooting, while Michael, who was very small, had a flamingo with lagoons flying over it. John lived in a boat turned upside down on the sands, Michael in a wigwam, Wendy in a house of leaves deftly sewn together. John had no friends, Michael had friends at night, Wendy had a pet wolf forsaken by its parents, but on the whole the Neverlands have a family resemblance, and if they stood still in a row you could say of them that they have each other's nose, and so forth. On these magic shores children at play are for ever beaching their coracles [simple boat]. We too have been there; we can still hear the sound of the surf, though we shall land no more. + +Of all delectable islands the Neverland is the snuggest and most compact, not large and sprawly, you know, with tedious distances between one adventure and another, but nicely crammed. When you play at it by day with the chairs and table-cloth, it is not in the least alarming, but in the two minutes before you go to sleep it becomes very real. That is why there are night-lights. + +Occasionally in her travels through her children's minds Mrs. Darling found things she could not understand, and of these quite the most perplexing was the word Peter. She knew of no Peter, and yet he was here and there in John and Michael's minds, while Wendy's began to be scrawled all over with him. The name stood out in bolder letters than any of the other words, and as Mrs. Darling gazed she felt that it had an oddly cocky appearance.]]> + + 358 + 2010-10-05 00:27:25 + 2010-10-05 07:27:25 + closed + closed + post-format-standard + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Gallery + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/ + Fri, 10 Sep 2010 14:24:14 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=555 + + + +You can use this page to test the Theme's handling of the gallery shortcode, including the columns parameter, from 1 to 9 columns. Themes are only required to support the default setting (3 columns), so this page is entirely optional. +

    One Column

    +[gallery columns="1"] +

    Two Columns

    +[gallery columns="2"] +

    Three Columns

    +[gallery columns="3"] +

    Four Columns

    +[gallery columns="4"] +

    Five Columns

    +[gallery columns="5"] +

    Six Columns

    +[gallery columns="6"] +

    Seven Columns

    +[gallery columns="7"] +

    Eight Columns

    +[gallery columns="8"] +

    Nine Columns

    +[gallery columns="9"]]]>
    + + 555 + 2010-09-10 07:24:14 + 2010-09-10 14:24:14 + closed + closed + post-format-gallery + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Post Format: Aside + https://wpthemetestdata.wordpress.com/2010/05/09/post-format-aside/ + Sun, 09 May 2010 14:51:54 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=559 + + + + 559 + 2010-05-09 07:51:54 + 2010-05-09 14:51:54 + closed + closed + post-format-aside + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Chat + https://wpthemetestdata.wordpress.com/2010/01/08/post-format-chat/ + Fri, 08 Jan 2010 14:59:31 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=562 + + + + 562 + 2010-01-08 07:59:31 + 2010-01-08 14:59:31 + closed + closed + post-format-chat + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Link + https://wpthemetestdata.wordpress.com/2010/03/07/post-format-link/ + Sun, 07 Mar 2010 15:06:53 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=565 + + The WordPress Theme Review Team Website]]> + + 565 + 2010-03-07 08:06:53 + 2010-03-07 15:06:53 + closed + closed + post-format-link + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Image (Linked) + https://wpthemetestdata.wordpress.com/2010/08/06/post-format-image-linked/ + Fri, 06 Aug 2010 15:09:39 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=568 + + chunk of resinous blackboy husk[/caption] +]]> + + 568 + 2010-08-06 08:09:39 + 2010-08-06 15:09:39 + closed + closed + post-format-image-linked + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Quote + https://wpthemetestdata.wordpress.com/2010/02/05/post-format-quote/ + Fri, 05 Feb 2010 15:13:15 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=575 + + Only one thing is impossible for God: To find any sense in any copyright law on the planet. +Mark Twain]]> + + 575 + 2010-02-05 08:13:15 + 2010-02-05 15:13:15 + closed + closed + post-format-quote + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Status + https://wpthemetestdata.wordpress.com/2010/04/04/post-format-status/ + Sun, 04 Apr 2010 15:21:24 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=579 + + + + 579 + 2010-04-04 08:21:24 + 2010-04-04 15:21:24 + closed + closed + post-format-status + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Video (WordPress.tv) + https://wpthemetestdata.wordpress.com/2010/06/03/post-format-video-wordpresstv/ + Thu, 03 Jun 2010 15:25:58 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=582 + + instructions in the Codex.]]> + + 582 + 2010-06-03 08:25:58 + 2010-06-03 15:25:58 + closed + closed + post-format-video-wordpresstv + publish + 0 + 0 + post + + 0 + + + + + + + + + _oembed_4321638fc1a6fee26443f7fe8a70a871 + ]]> + + + _oembed_29351fff85c1be1d1e9a965a0332a861 + ]]> + + + _oembed_9fcc86d7d9398ff736577f922307f64d + ]]> + + + _oembed_366237792d32461d0052efb2edec37f5 + ]]> + + + _oembed_37fdfe862c13c46a93be2921279bf675 + ]]> + + + + Post Format: Audio + https://wpthemetestdata.wordpress.com/2010/07/02/post-format-audio/ + Fri, 02 Jul 2010 15:36:44 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=587 + + St. Louis Blues + +Audio shortcode: + +[audio https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3]]]> + + 587 + 2010-07-02 08:36:44 + 2010-07-02 15:36:44 + closed + closed + post-format-audio + publish + 0 + 0 + post + + 0 + + + + + + + + enclosure + + + + + Page A + https://wpthemetestdata.wordpress.com/page-a/ + Fri, 24 Jun 2011 01:38:52 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=733 + + + + 733 + 2011-06-23 18:38:52 + 2011-06-24 01:38:52 + open + closed + page-a + publish + 0 + 10 + page + + 0 + + + Page B + https://wpthemetestdata.wordpress.com/page-b/ + Fri, 24 Jun 2011 01:39:14 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=735 + + + + 735 + 2011-06-23 18:39:14 + 2011-06-24 01:39:14 + open + closed + page-b + publish + 0 + 11 + page + + 0 + + + Level 2a + https://wpthemetestdata.wordpress.com/level-1/level-2a/ + Fri, 24 Jun 2011 02:03:33 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=742 + + + + 742 + 2011-06-23 19:03:33 + 2011-06-24 02:03:33 + open + closed + level-2a + publish + 174 + 0 + page + + 0 + + + Level 2b + https://wpthemetestdata.wordpress.com/level-1/level-2b/ + Fri, 24 Jun 2011 02:04:03 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=744 + + + + 744 + 2011-06-23 19:04:03 + 2011-06-24 02:04:03 + open + closed + level-2b + publish + 174 + 0 + page + + 0 + + + Level 3a + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3a/ + Fri, 24 Jun 2011 02:04:24 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=746 + + + + 746 + 2011-06-23 19:04:24 + 2011-06-24 02:04:24 + open + closed + level-3a + publish + 173 + 0 + page + + 0 + + + Level 3b + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3b/ + Fri, 24 Jun 2011 02:04:46 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=748 + + + + 748 + 2011-06-23 19:04:46 + 2011-06-24 02:04:46 + open + closed + level-3b + publish + 173 + 0 + page + + 0 + + + Template: Excerpt (Defined) + https://wpthemetestdata.wordpress.com/2012/03/15/template-excerpt-defined/ + Thu, 15 Mar 2012 21:38:08 +0000 + themedemos + http://wptest.io/demo/?p=993 + + should be displayed in place of the user-defined excerpt in single-page views.]]> + should be displayed in place of the post content in archive-index pages. It can be longer than the automatically generated excerpts, and can have HTML tags.]]> + 993 + 2012-03-15 14:38:08 + 2012-03-15 21:38:08 + closed + closed + template-excerpt-defined + publish + 0 + 0 + post + + 0 + + + + + + + + + Template: More Tag + https://wpthemetestdata.wordpress.com/2012/03/15/template-more-tag/ + Thu, 15 Mar 2012 21:41:11 +0000 + themedemos + http://wptest.io/demo/?p=996 + + more tag. + +Right after this sentence should be a "continue reading" button of some sort on list pages of themes that show full content. It won't show on single pages or on themes showing excerpts. + + + +And this content is after the more tag. (which should be the anchor link for when the button is clicked)]]> + + 996 + 2012-03-15 14:41:11 + 2012-03-15 21:41:11 + closed + closed + template-more-tag + publish + 0 + 0 + post + + 0 + + + + + + + + + Edge Case: Nested And Mixed Lists + https://wpthemetestdata.wordpress.com/2009/05/15/edge-case-nested-and-mixed-lists/ + Fri, 15 May 2009 21:48:32 +0000 + themedemos + http://wptest.io/demo/?p=1000 + + +
  • Lists within lists do not break the ordered list numbering order
  • +
  • Your list styles go deep enough.
  • + +

    Ordered - Unordered - Ordered

    +
      +
    1. ordered item
    2. +
    3. ordered item +
        +
      • unordered
      • +
      • unordered +
          +
        1. ordered item
        2. +
        3. ordered item
        4. +
        +
      • +
      +
    4. +
    5. ordered item
    6. +
    7. ordered item
    8. +
    +

    Ordered - Unordered - Unordered

    +
      +
    1. ordered item
    2. +
    3. ordered item +
        +
      • unordered
      • +
      • unordered +
          +
        • unordered item
        • +
        • unordered item
        • +
        +
      • +
      +
    4. +
    5. ordered item
    6. +
    7. ordered item
    8. +
    +

    Unordered - Ordered - Unordered

    +
      +
    • unordered item
    • +
    • unordered item +
        +
      1. ordered
      2. +
      3. ordered +
          +
        • unordered item
        • +
        • unordered item
        • +
        +
      4. +
      +
    • +
    • unordered item
    • +
    • unordered item
    • +
    +

    Unordered - Unordered - Ordered

    +
      +
    • unordered item
    • +
    • unordered item +
        +
      • unordered
      • +
      • unordered +
          +
        1. ordered item
        2. +
        3. ordered item
        4. +
        +
      • +
      +
    • +
    • unordered item
    • +
    • unordered item
    • +
    ]]>
    + + 1000 + 2009-05-15 14:48:32 + 2009-05-15 21:48:32 + closed + closed + edge-case-nested-and-mixed-lists + publish + 0 + 0 + post + + 0 + + + + + + + +
    + + Template: Featured Image (Horizontal) + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-horizontal/ + Thu, 15 Mar 2012 22:15:12 +0000 + themedemos + http://wptest.io/demo/?p=1011 + + featured image, if the theme supports it. + +Non-square images can provide some unique styling issues. + +This post tests a horizontal featured image.]]> + + 1011 + 2012-03-15 15:15:12 + 2012-03-15 22:15:12 + closed + closed + template-featured-image-horizontal + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + + + + Template: Featured Image (Vertical) + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-vertical/ + Thu, 15 Mar 2012 22:36:32 +0000 + themedemos + http://wptest.io/demo/?p=1016 + + featured image, if the theme supports it. + +Non-square images can provide some unique styling issues. + +This post tests a vertical featured image.]]> + + 1016 + 2012-03-15 15:36:32 + 2012-03-15 22:36:32 + closed + closed + template-featured-image-vertical + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + + + + Post Format: Gallery (Tiled) + https://wpthemetestdata.wordpress.com/2010/09/09/post-format-gallery-tiled/ + Fri, 10 Sep 2010 00:23:27 +0000 + themedemos + http://wptest.io/demo/?p=1031 + + Jetpack to test. + +[gallery type="rectangular" columns="4" ids="755,757,758,760,766,763" orderby="rand"] + +This is some text after the Tiled Gallery just to make sure that everything spaces nicely.]]> + + 1031 + 2010-09-09 17:23:27 + 2010-09-10 00:23:27 + closed + closed + post-format-gallery-tiled + publish + 0 + 0 + post + + 0 + + + + + + + + + + + Page Image Alignment + https://wpthemetestdata.wordpress.com/about/page-image-alignment/ + Fri, 15 Mar 2013 23:19:23 +0000 + themedemos + http://wptest.io/demo/?page_id=1080 + + None, Left, Right, and Center. In addition, they also get the options of Thumbnail, Medium, Large & Fullsize. Be sure to try this page in RTL mode and it should look the same as LTR. +

    Image Alignment 580x300

    +The image above happens to be centered. + +Image Alignment 150x150 The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see there should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +Image Alignment 1200x400 + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 1200x400 + +And we try the large image again, with the center alignment since that sometimes is a problem. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 300x200 + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And just when you thought we were done, we're going to do them all over again with captions! + +[caption id="attachment_906" align="aligncenter" width="580"]Image Alignment 580x300 Look at 580x300 getting some caption love.[/caption] + +The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky. + +[caption id="attachment_904" align="alignleft" width="150"]Image Alignment 150x150 Bigger caption than the image usually is.[/caption] + +The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +[caption id="attachment_907" align="alignnone" width="1200"]Image Alignment 1200x400 Comment for massive image for your eyeballs.[/caption] + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. +[caption id="attachment_907" align="aligncenter" width="1200"]Image Alignment 1200x400 This massive image is centered.[/caption] + +And again with the big image centered. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +[caption id="attachment_905" align="alignright" width="300"]Image Alignment 300x200 Feels good to be right all the time.[/caption] + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! Last thing is a small image aligned right. Whatever follows should be unaffected. Image Alignment 150x150]]>
    + + 1133 + 2013-03-15 18:19:23 + 2013-03-15 23:19:23 + open + open + page-image-alignment + publish + 2 + 0 + page + + 0 +
    + + Page Markup And Formatting + https://wpthemetestdata.wordpress.com/about/page-markup-and-formatting/ + Fri, 15 Mar 2013 23:20:05 +0000 + themedemos + http://wptest.io/demo/?page_id=1083 + + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    Jane$1Because that's all Steve Jobs needed for a salary.
    John$100KFor all the blogging he does.
    Jane$100MPictures are worth a thousand words, right? So Tom x 1,000.
    Jane$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    + Robert Frost
    +
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +This tag shows strike-through text. + +Small Tag + +This tag shows smaller text. + +Strong Tag + +This tag shows bold text. + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +This rarely used tag emulates teletype text, which is usually styled like the <code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +This tag shows underlined text. + +Variable Tag + +This allows you to denote variables.]]>
    + + 1134 + 2013-03-15 18:20:05 + 2013-03-15 23:20:05 + open + open + page-markup-and-formatting + publish + 2 + 0 + page + + 0 +
    + + Template: Comments + https://wpthemetestdata.wordpress.com/2012/01/03/template-comments/ + Tue, 03 Jan 2012 17:11:37 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/comment-test/ + + +
  • Threaded comments up to 10 levels deep
  • +
  • Paginated comments (set Settings > Discussion > Break comments into pages to 5 top level comments per page)
  • +
  • Comment markup / formatting
  • +
  • Comment images
  • +
  • Comment videos
  • +
  • Author comments
  • +
  • Gravatars and default fallbacks
  • +]]>
    + + 1148 + 2012-01-03 10:11:37 + 2012-01-03 17:11:37 + open + closed + template-comments + publish + 0 + 0 + post + + 0 + + + + + + + 881 + + example@example.org + http://example.org/ + + 2012-09-03 10:18:04 + 2012-09-03 17:18:04 + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    John Saddington$1Because that's all Steve Job' needed for a salary.
    Tom McFarlin$100KFor all the blogging he does.
    Jared Erickson$100MPictures are worth a thousand words, right? So Tom x 1,000.
    Chris Ames$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    + +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    +Robert Frost
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    + +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up.]]>
    + 1 + + 0 + 0 +
    + + 899 + + fake@example.com + + + 2013-03-11 23:45:54 + 2013-03-12 04:45:54 + Gravatar associated with it. + They did not speify a website, so there should be no link to it in the comment. +]]> + 1 + + 0 + 0 + + + 900 + + example@example.org + http://example.org/ + + 2013-03-12 13:17:35 + 2013-03-12 20:17:35 + + 1 + + 0 + 0 + + + 901 + + example@example.org + http://example.org + + 2013-03-14 07:53:26 + 2013-03-14 14:53:26 + + 1 + + 0 + 0 + + + 903 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 07:56:46 + 2013-03-14 14:56:46 + + 1 + + 0 + 24783058 + + + 904 + + example@example.org + http://example.org/ + + 2013-03-14 07:57:01 + 2013-03-14 14:57:01 + + 1 + + 0 + 0 + + + 905 + + example@example.org + http://example.org/ + + 2013-03-14 08:01:21 + 2013-03-14 15:01:21 + + 1 + + 904 + 0 + + + 906 + + example@example.org + http://example.org/ + + 2013-03-14 08:02:06 + 2013-03-14 15:02:06 + + 1 + + 905 + 0 + + + 907 + + example@example.org + http://example.org/ + + 2013-03-14 08:03:22 + 2013-03-14 15:03:22 + + 1 + + 906 + 0 + + + 910 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 08:10:29 + 2013-03-14 15:10:29 + + 1 + + 907 + 24783058 + + + 911 + + example@example.org + http://example.org/ + + 2013-03-14 08:12:16 + 2013-03-14 15:12:16 + + 1 + + 910 + 0 + + + 912 + + example@example.org + http://example.org/ + + 2013-03-14 08:12:58 + 2013-03-14 15:12:58 + + 1 + + 911 + 0 + + + 913 + + example@example.org + http://example.org/ + + 2013-03-14 08:13:42 + 2013-03-14 15:13:42 + + 1 + + 912 + 0 + + + 914 + + example@example.org + http://example.org/ + + 2013-03-14 08:14:13 + 2013-03-14 15:14:13 + + 1 + + 913 + 0 + + + 915 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 08:14:47 + 2013-03-14 15:14:47 + + 1 + + 914 + 24783058 + + + 917 + + example@example.org + http://example.org/ + + 2013-03-14 09:56:43 + 2013-03-14 16:56:43 + + If the image imports... + ]]> + 1 + + 0 + 0 + + + 918 + + example@example.org + http://example.org/ + + 2013-03-14 11:23:24 + 2013-03-14 18:23:24 + + 1 + + 0 + 0 + + + 919 + + example@example.org + http://example.org/ + + 2013-03-14 11:27:54 + 2013-03-14 18:27:54 + + 1 + + 0 + 0 + + + 920 + + example@example.org + http://example.org/ + + 2013-03-14 11:30:33 + 2013-03-14 18:30:33 + + 1 + + 0 + 24783058 + + + 1015 + + auser@example.com + + + 2014-09-29 02:52:15 + 2014-09-29 09:52:15 + + 0 + + 0 + 0 + +
    + + Template: Pingbacks And Trackbacks + https://wpthemetestdata.wordpress.com/2012/01/01/template-pingbacks-an-trackbacks/ + Sun, 01 Jan 2012 17:17:18 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/many-trackbacks/ + + +
  • Above the comments
  • +
  • Below the comments
  • +
  • Included within the normal flow of comments
  • +]]>
    + + 1149 + 2012-01-01 10:17:18 + 2012-01-01 17:17:18 + closed + closed + template-pingbacks-an-trackbacks + publish + 0 + 0 + post + + 0 + + + + + + + + + 921 + + + http://tellyworth.wordpress.com/2007/11/21/ping-1/ + + 2007-11-21 11:31:12 + 2007-11-21 01:31:12 + + 1 + trackback + 0 + 0 + + + 922 + + + http://tellyworth.wordpress.com/2007/11/21/ping-2-with-a-much-longer-title-than-the-previous-ping-which-was-called-ping-1/ + + 2007-11-21 11:35:47 + 2007-11-21 01:35:47 + + 1 + trackback + 0 + 0 + + + 923 + + + http://tellyworth.wordpress.com/2007/11/21/ping-4/ + + 2007-11-21 11:39:25 + 2007-11-21 01:39:25 + + 1 + pingback + 0 + 0 + + + 924 + + + http://tellyworth.wordpress.com/2007/11/21/ping-3/ + + 2007-11-21 11:38:22 + 2007-11-21 01:38:22 + + 1 + pingback + 0 + 0 + + + 925 + + example@example.org + http://example.org/ + + 2010-06-11 15:27:04 + 2010-06-11 22:27:04 + + 1 + + 0 + 0 + +
    + + Template: Comments Disabled + https://wpthemetestdata.wordpress.com/2012/01/02/template-comments-disabled/ + Mon, 02 Jan 2012 17:21:15 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/no-comments/ + + should display pingbacks and trackbacks.]]> + + 1150 + 2012-01-02 10:21:15 + 2012-01-02 17:21:15 + closed + closed + template-comments-disabled + publish + 0 + 0 + post + + 0 + + + + + + + + Edge Case: Many Tags + https://wpthemetestdata.wordpress.com/2009/06/01/edge-case-many-tags/ + Mon, 01 Jun 2009 08:00:34 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/11/24/many-tags/ + + + + 1151 + 2009-06-01 01:00:34 + 2009-06-01 08:00:34 + closed + closed + edge-case-many-tags + publish + 0 + 0 + post + + 0' + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Edge Case: Many Categories + https://wpthemetestdata.wordpress.com/2009/07/02/edge-case-many-categories/ + Thu, 02 Jul 2009 09:00:03 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/11/24/many-categories/ + + + + 1152 + 2009-07-02 02:00:03 + 2009-07-02 09:00:03 + closed + closed + edge-case-many-categories + publish + 0 + 0 + post + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Scheduled + https://wpthemetestdata.wordpress.com/2020/01/01/scheduled/ + Wed, 01 Jan 2030 19:00:18 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=418 + + + + 1153 + 2030-01-01 12:00:18 + 2030-01-01 19:00:18 + closed + closed + scheduled + future + 0 + 0 + post + + 0 + + + + + + Post Format: Image + https://wpthemetestdata.wordpress.com/2010/08/08/post-format-image/ + Sun, 08 Aug 2010 12:00:39 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=568 + +
      + +]]>
    + + 1158 + 2010-08-08 05:00:39 + 2010-08-08 12:00:39 + closed + closed + post-format-image + publish + 0 + 0 + post + + 0 + + + + + +
    + + Post Format: Video (YouTube) + https://wpthemetestdata.wordpress.com/2010/06/02/post-format-video-youtube/ + Wed, 02 Jun 2010 09:00:58 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=582 + + WordPress Embeds.]]> + + 1161 + 2010-06-02 02:00:58 + 2010-06-02 09:00:58 + closed + closed + post-format-video-youtube + publish + 0 + 0 + post + + 0 + + + + + + + Post Format: Image (Caption) + https://wpthemetestdata.wordpress.com/2010/08/07/post-format-image-caption/ + Sat, 07 Aug 2010 13:00:19 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=674 + + Bell on Wharf Bell on wharf in San Francisco[/caption]]]> + + 1163 + 2010-08-07 06:00:19 + 2010-08-07 13:00:19 + closed + closed + post-format-image-caption + publish + 0 + 0 + post + + 0 + + + + + + + + _thumbnail_id + + + + + Draft + https://wpthemetestdata.wordpress.com/?p=1164 + Tue, 09 Apr 2013 18:20:39 +0000 + themedemos + http://wptest.io/demo/?p=922 + + + + 1164 + 2013-04-09 11:20:39 + 2013-04-09 18:20:39 + closed + closed + + draft + 0 + 0 + post + + 0 + + + + + + Template: Password Protected (the password is "enter") + https://wpthemetestdata.wordpress.com/2012/01/04/template-password-protected/ + Wed, 04 Jan 2012 16:38:05 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/test-with-secret-password/ + + + + 1168 + 2012-01-04 09:38:05 + 2012-01-04 16:38:05 + closed + closed + template-password-protected + publish + 0 + 0 + post + enter + 0 + + + + + + + 926 + + example@example.org + http://example.org/ + + 2013-03-14 11:56:08 + 2013-03-14 18:56:08 + + 1 + + 0 + 0 + + + + + <link>https://wpthemetestdata.wordpress.com/2009/09/05/edge-case-no-title/</link> + <pubDate>Sat, 05 Sep 2009 16:00:23 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2007/09/04/14/</guid> + <description/> + <content:encoded><![CDATA[This post has no title, but it still must link to the single post view somehow. + +This is typically done by placing the permalink on the post date.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1169</wp:post_id> + <wp:post_date>2009-09-05 09:00:23</wp:post_date> + <wp:post_date_gmt>2009-09-05 16:00:23</wp:post_date_gmt> + <wp:comment_status>closed</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>edge-case-no-title</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>0</wp:menu_order> + <wp:post_type>post</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="category" nicename="classic"><![CDATA[Classic]]></category> + <category domain="post_tag" nicename="edge-case"><![CDATA[edge case]]></category> + <category domain="category" nicename="edge-case-2"><![CDATA[Edge Case]]></category> + <category domain="post_tag" nicename="layout"><![CDATA[layout]]></category> + <category domain="post_tag" nicename="title"><![CDATA[title]]></category> +</item> +<item> + <title>Edge Case: No Content + https://wpthemetestdata.wordpress.com/2009/08/06/edge-case-no-content/ + Thu, 06 Aug 2009 16:39:56 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/this-post-has-no-body/ + + + + 1170 + 2009-08-06 09:39:56 + 2009-08-06 16:39:56 + closed + closed + edge-case-no-content + publish + 0 + 0 + post + + 0 + + + + + + + 927 + + example@example.org + http://example.org/ + + 2013-03-14 12:35:07 + 2013-03-14 19:35:07 + + 1 + + 0 + 0 + + + + Template: Paginated + https://wpthemetestdata.wordpress.com/2012/01/08/template-paginated/ + Sun, 08 Jan 2012 17:00:20 +0000 + themedemos + https://noeltest.wordpress.com/?p=188 + + + +Post Page 2 + + + +Post Page 3]]> + + 1171 + 2012-01-08 10:00:20 + 2012-01-08 17:00:20 + closed + closed + template-paginated + publish + 0 + 0 + post + + 0 + + + + + + + + + <![CDATA[Markup: Title <em>With</em> <b>Mark<sup>up</sup></b>]]> + https://wpthemetestdata.wordpress.com/2013/01/05/markup-title-with-markup/ + Sat, 05 Jan 2013 17:00:49 +0000 + themedemos + http://wptest.io/demo/?p=861 + + +
  • The post title renders the word "with" in italics and the word "markup" in bold (and "up" is superscript).
  • +
  • The post title markup should be removed from the browser window / tab.
  • +]]>
    + + 1173 + 2013-01-05 10:00:49 + 2013-01-05 17:00:49 + closed + closed + markup-title-with-markup + publish + 0 + 0 + post + + 0 + + + + + +
    + + Markup: Title With Special Characters ~`!@#$%^&*()-_=+{}[]/\;:'"?,.> + https://wpthemetestdata.wordpress.com/2013/01/05/title-with-special-characters/ + Sat, 05 Jan 2013 18:00:20 +0000 + themedemos + http://wptest.io/demo/?p=867 + + Latin Character Tests +This is a test to see if the fonts used in this theme support basic Latin characters. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    !"#$%&'()*
    +,-./01234
    56789:;>=<
    ?@ABCDEFGH
    IJKLMNOPQR
    STUVWXYZ[\
    ]^_`abcdef
    ghijklmnop
    qrstuvwxyz
    {|}~
    ]]>
    + + 1174 + 2013-01-05 11:00:20 + 2013-01-05 18:00:20 + closed + closed + title-with-special-characters + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Taumatawhakatangihangakoauauotamateaturipukakapikimaungahoronukupokaiwhenuakitanatahu + https://wpthemetestdata.wordpress.com/2009/10/05/title-should-not-overflow-the-content-area/ + Mon, 05 Oct 2009 19:00:59 +0000 + themedemos + http://wptest.io/demo/?p=877 + + Title should not overflow the content area + +A few things to check for: +
      +
    • Non-breaking text in the title, content, and comments should have no adverse effects on layout or functionality.
    • +
    • Check the browser window / tab title.
    • +
    • If you are a plugin or widget developer, check that this text does not break anything.
    • +
    + +The following CSS properties will help you support non-breaking text. + +
    -ms-word-wrap: break-word;
    +word-wrap: break-word;
    + ]]>
    + + 1175 + 2009-10-05 12:00:59 + 2009-10-05 19:00:59 + closed + closed + title-should-not-overflow-the-content-area + publish + 0 + 0 + post + + 0 + + + + + + + + +
    + + Markup: Text Alignment + https://wpthemetestdata.wordpress.com/2013/01/09/markup-text-alignment/ + Wed, 09 Jan 2013 16:00:39 +0000 + themedemos + http://wptest.io/demo/?p=895 + + Default +This is a paragraph. It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love. Completely neutral and not picking a side or sitting on the fence. It just is. It just freaking is. It likes where it is. It does not feel compelled to pick a side. Leave him be. It will just be better that way. Trust me. +

    Left Align

    +

    This is a paragraph. It is left aligned. Because of this, it is a bit more liberal in it's views. It's favorite color is green. Left align tends to be more eco-friendly, but it provides no concrete evidence that it really is. Even though it likes share the wealth evenly, it leaves the equal distribution up to justified alignment.

    + +

    Center Align

    +

    This is a paragraph. It is center aligned. Center is, but nature, a fence sitter. A flip flopper. It has a difficult time making up its mind. It wants to pick a side. Really, it does. It has the best intentions, but it tends to complicate matters more than help. The best you can do is try to win it over and hope for the best. I hear center align does take bribes.

    + +

    Right Align

    +

    This is a paragraph. It is right aligned. It is a bit more conservative in it's views. It's prefers to not be told what to do or how to do it. Right align totally owns a slew of guns and loves to head to the range for some practice. Which is cool and all. I mean, it's a pretty good shot from at least four or five football fields away. Dead on. So boss.

    + +

    Justify Align

    +

    This is a paragraph. It is justify aligned. It gets really mad when people associate it with Justin Timberlake. Typically, justified is pretty straight laced. It likes everything to be in it's place and not all cattywampus like the rest of the aligns. I am not saying that makes it better than the rest of the aligns, but it does tend to put off more of an elitist attitude.

    ]]>
    + + 1176 + 2013-01-09 09:00:39 + 2013-01-09 16:00:39 + closed + closed + markup-text-alignment + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Markup: Image Alignment + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/ + Fri, 11 Jan 2013 03:15:40 +0000 + themedemos + http://wptest.io/demo/?p=903 + + None, Left, Right, and Center. In addition, they also get the options of Thumbnail, Medium, Large & Fullsize. Be sure to try this page in RTL mode and it should look the same as LTR. +

    Image Alignment 580x300

    +The image above happens to be centered. + +Image Alignment 150x150 The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +Image Alignment 1200x400 + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 1200x400 + +And we try the large image again, with the center alignment since that sometimes is a problem. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 300x200 + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And just when you thought we were done, we're going to do them all over again with captions! + +[caption id="attachment_906" align="aligncenter" width="580"]Image Alignment 580x300 Look at 580x300 getting some caption love.[/caption] + +The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky. + +[caption id="attachment_904" align="alignleft" width="150"]Image Alignment 150x150 Bigger caption than the image usually is.[/caption] + +The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +[caption id="attachment_907" align="alignnone" width="1200"]Image Alignment 1200x400 Comment for massive image for your eyeballs.[/caption] + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. +[caption id="attachment_907" align="aligncenter" width="1200"]Image Alignment 1200x400 This massive image is centered.[/caption] + +And again with the big image centered. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +[caption id="attachment_905" align="alignright" width="300"]Image Alignment 300x200 Feels good to be right all the time.[/caption] + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! One last thing: The last item in this post's content is a thumbnail floated right. Make sure any elements after the content are clearing properly. + +]]>
    + + 1177 + 2013-01-10 20:15:40 + 2013-01-11 03:15:40 + closed + closed + markup-image-alignment + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + +
    + + Markup: HTML Tags and Formatting + https://wpthemetestdata.wordpress.com/2013/01/11/markup-html-tags-and-formatting/ + Sat, 12 Jan 2013 03:22:19 +0000 + themedemos + http://wptest.io/demo/?p=919 + + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    John Doe$1Because that's all Steve Jobs needed for a salary.
    Jane Doe$100KFor all the blogging she does.
    Fred Bloggs$100MPictures are worth a thousand words, right? So Jane x 1,000.
    Jane Bloggs$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    +Robert Frost
    +
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +This tag shows strike-through text. + +Small Tag + +This tag shows smaller text. + +Strong Tag + +This tag shows bold text. + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +This rarely used tag emulates teletype text, which is usually styled like the <code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +This tag shows underlined text. + +Variable Tag + +This allows you to denote variables.]]>
    + + 1178 + 2013-01-11 20:22:19 + 2013-01-12 03:22:19 + closed + closed + markup-html-tags-and-formatting + publish + 0 + 0 + post + + 0 + + + + + + + +
    + + Media: Twitter Embeds + https://wpthemetestdata.wordpress.com/2011/03/15/media-twitter-embeds/ + Tue, 15 Mar 2011 22:47:16 +0000 + themedemos + http://wptest.io/demo/?p=1027 + + Twitter Embeds feature.]]> + + 1179 + 2011-03-15 15:47:16 + 2011-03-15 22:47:16 + closed + closed + media-twitter-embeds + publish + 0 + 0 + post + + 0 + + + + + + + + _oembed_time_d01e104b758ab65a49dfdede5913069c + + + + _oembed_ac49b172e1844531a885a53eff2efd91 + ]]> + + + _oembed_time_ac49b172e1844531a885a53eff2efd91 + + + + _oembed_d01e104b758ab65a49dfdede5913069c + ]]> + + + + Template: Sticky + https://wpthemetestdata.wordpress.com/2012/01/07/template-sticky/ + Sat, 07 Jan 2012 14:07:21 +0000 + themedemos + http://wptest.io/demo/?p=1241 + + +
  • The sticky post should be distinctly recognizable in some way in comparison to normal posts. You can style the .sticky class if you are using the post_class() function to generate your post classes, which is a best practice.
  • +
  • They should show at the very top of the blog index page, even though they could be several posts back chronologically.
  • +
  • They should still show up again in their chronologically correct postion in time, but without the sticky indicator.
  • +
  • If you have a plugin or widget that lists popular posts or comments, make sure that this sticky post is not always at the top of those lists unless it really is popular.
  • +]]>
    + + 1241 + 2012-01-07 07:07:21 + 2012-01-07 14:07:21 + closed + closed + template-sticky + publish + 0 + 0 + post + + 1 + + + + +
    + + Template: Excerpt (Generated) + https://wpthemetestdata.wordpress.com/2012/03/14/template-excerpt-generated/ + Wed, 14 Mar 2012 16:49:22 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=1446 + + excerpt_length and excerpt_more, display properly.]]> + + 1446 + 2012-03-14 09:49:22 + 2012-03-14 16:49:22 + closed + closed + template-excerpt-generated + publish + 0 + 0 + post + + 0 + + + + + + + + + Block category: Common + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-common/ + Fri, 02 Nov 2018 16:20:28 +0000 + >themereviewteam + https://wpthemetestdata.wordpress.com/?p=1730 + + +

    The Common category includes the following blocks: Paragraph, image, headings, list, gallery, quote, audio, cover, video.

    + + + +

    The paragraph block is the default block type.  It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love.

    + + + +

    This paragraph is left aligned.

    + + + +

    This italic paragraph is right aligned.

    + + + +

    Neither of these paragraphs care about politics, but this one is bold, medium sized and has a drop cap.

    + + + +

    This paragraph is centered.

    + + + +

    This paragraph prefers Jazz over Justin Timberlake. It also uses the small font size.

    + + + +

    This paragraph has something important to say:  It has a large font size, which defaults to 36px.

    + + + +

    The huge text size defaults to 46px, but the size can be customized.

    + + + +

    This paragraph is colorful, with a red background and white text (maybe). Colored blocks should have a high enough contrast, so that the text is readable.

    + + + +

    Below this block, you will see a single image with a circle mask applied.

    + + + +
    Image Alignment 150x150
    + + + +

    H1 Heading

    + + + +

    H2 Heading

    + + + +

    H3 Heading

    + + + +

    H4 Heading

    + + + +
    H5 Heading
    + + + +
    H6 Heading
    + + + +

    Ordered list

    + + + +
    1. The software should be licensed under the GNU Public License.
    2. The software should be freely available to anyone to use for any purpose, and without permission.
    3. The software should be open to modifications.
      1. Any modifications should be freely distributable at no cost and without permission from its creators.
    4. The software should provide a framework for translation to make it globally accessible to speakers of all languages.
    5. The software should provide a framework for extensions so modifications and enhancements can be made without modifying core code
    + + + +

    Unordered list

    + + + +
    • One
    • Two
    • Three
      • Four
    • Five
    + + + + + + + +

    Quote

    Cite
    + + + +
    + + + +
    +

    Cover block with background image

    +
    + + + +

    The file block has a setting that lets us show or hide a download button with editable text:

    + + + + + + + + + + + +

    Video blocks have settings for showing and hiding the playback controls. Use autoplay and playback controls responsibly.

    + + + +
    This is a video block caption.
    + + + +

    The video block below is muted and has a poster image that displays before the video starts:

    + + + +
    + +]]>
    + + 1730 + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + +
    + + Block category: Formatting + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-formatting/ + Fri, 02 Nov 2018 16:41:42 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1732 + + +

    The formatting category includes the following blocks:

    + + + +
    The code block starts with
    +<!-- wp:code -->
    +<?php echo 'Hello World'; ?>
    +
    + + +

    The classic block can have almost anything in it.

    +
    +
    a heading
    + + +
    The custom HTML block lets you put HTML that isn't configured like blocks in it. (this div has a width of 45%)
    + + + +
    The preformatted block.

    The Road Not Taken

    Robert Frost
    Two roads diverged in a yellow wood,
    And sorry I could not travel both (\_/)
    And be one traveler, long I stood (='.'=)
    And looked down one as far as I could (")_(")
    To where it bent in the undergrowth;

    Then took the other, as just as fair,
    And having perhaps the better claim, |\_/|
    Because it was grassy and wanted wear; / @ @ \
    Though as for that the passing there ( > º < )
    Had worn them really about the same, `>>x<<´
    / O \
    And both that morning equally lay
    In leaves no step had trodden black.
    Oh, I kept the first for another day!
    Yet knowing how way leads on to way,
    I doubted if I should ever come back.
    I shall be telling this with a sigh
    Somewhere ages and ages hence:
    Two roads diverged in a wood, and I—
    I took the one less traveled by,
    And that has made all the difference.



    and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    + + + +

    The pull quote can be aligned or wide or neither.

    Theme Reviewer
    + + + +
    The table blockThis is the default style.
    The cell next to this is empty.
    Cell #5
    Cell #6
    + + + +
    This is the striped style.This row should have a background color.
    The cell next to this is empty.

    This table has fixed width table cells.

    Make sure that the text wraps correctly.

    + + + +
    The Verse block

    A block for haiku?
    Why not?
    Blocks for all the things!
    +]]>
    + + 1732 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Block category: Layout Elements + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-layout-elements/ + Fri, 02 Nov 2018 16:44:37 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1734 + + +
    +

    The Layout Elements category includes the following blocks: Group, Button, Columns, Media & Text, separator, spacer, read more, and page break.

    + + + +

    This group block has a light green background color.

    + + + + + + + +

    The read more block should be right below this text, but only on list pages of themes that show the full content. It won't show on the single page or on themes showing excerpts.

    +
    + + + + + + + +
    +
    +

    The columns:

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    +
    + + + +
    Boardwalk
    +

    Media &Text

    + + + +

    For displaying media and text next to each other. By default, the media is to the left.

    +
    + + + +
    Golden Gate Bridge
    +

    This time our block is full width, and the image is to the right.

    + + + +

    The background color is a pale blue. 

    +
    + + + +

    Test to make sure that the editor and the front match. To test the Stack on mobile setting, reduce the browser window width.

    + + + +

    The control these settings, the block uses the css classes "has-media-on-the-right" and "is-stacked-on-mobile".

    + + + +

    The separator has three styles: default, wide line, and dots.

    + + + +
    + + + +
    + + + +
    + + + +

    The spacer block has a default height of 100 pixels:

    + + + + + + + +

    And finally, the page break:

    + + + + + + + +

    This paragraph block is on page two, after the page break.

    + + + + +]]>
    + + 1734 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block category: Embeds + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-embeds/ + Fri, 02 Nov 2018 16:51:55 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1738 + + + +

    This post tests various embed blocks:

    + + + +
    +https://twitter.com/WordPress/status/1057136472321613824 +
    Twitter,  wide width
    + + + +
    +https://youtu.be/ex8fMxXJDJw +
    YouTube
    + + + +
    +https://www.facebook.com/6427302910/posts/10156380423617911/ +
    + + + +
    +https://www.instagram.com/p/BpmueLLgEn_/?utm_source=ig_share_sheet&igshid=1hcxphic7p9e2 +
    + + + +
    +https://wordpress.tv/2018/10/14/kjell-reigstad-allan-cole-how-we-made-our-first-gutenberg-powered-theme/ +
    WordPress TV, full width
    + + + +

    +]]>
    + + 1738 + + + + + + + 0 + 0 + + + 0 + + + + + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + + + + + + + + + + ]]> + + + + + + + +

    Many of the WordPress contribution teams have been working hard on the new WordPress editor, and the tools, services,...

    Publicerat av WordPress Måndag 3 september 2018
    ]]>
    +
    + + + + + + + ]]> + + + + + + + + ]]> + + + + + + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + + + + + + ]]> + + + + + + + +

    Many of the WordPress contribution teams have been working hard on the new WordPress editor, and the tools, services,...

    Publicerat av WordPress Måndag 3 september 2018
    ]]>
    +
    + + + + + + + ]]> + + + + + + + + ]]> + + + + + +
    + + Block category: Widgets + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-widgets/ + Fri, 02 Nov 2018 16:45:35 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1736 + + +

    The shortcode widget:

    + + + +[gallery columns=2 ids="770,771"] + + + +

    The Archive Widget:

    + + + + + +

    The same Archive widget but as a dropdown:

    + + + + + + + +

    The Category widget block has an additional option for showing category hierarchies:

    + + + + + +

    The Latest Comments widget can display or hide the avatars, the date, and the comment excerpt:

    + + + + + +

    Here is an example of the Comments widget with all the options disabled. The number of comments has been reduced to two.

    + + + + + +

    And here is the Latest Posts widget in the list view, with dates:

    + + + + + +

    Grid view, now sorted from A -Z.

    + + + + + +

    You can also change the number of columns used to display the latest posts. The block below only displays posts from the Block category:

    + + + + + +

    Search widget:

    + + + + + +

    Tag Cloud widget:

    + + + + + +

    RSS Feed widget:

    + + + + ]]>
    + + 1736 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Columns + https://wpthemetestdata.wordpress.com/2018/11/02/block-columns/ + Fri, 02 Nov 2018 12:10:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1743 + + +
    +
    +

    This page tests how the theme displays the columns block. The first block tests a two column block with paragraphs.

    +
    + + + +
    +

    This is the second column. It should align next to the first column. Reduce the browser window width to test the responsiveness.

    +
    +
    + + + +
    +
    +

    This is the second column block. It has 3 columns.

    +
    + + + +
    +

    Paragraph 2 is in the middle.

    +
    + + + +
    +

    Paragraph 3 is in the last column.

    +
    +
    + + + +
    +
    +

    The third column block has 4 columns. Make sure that all the text is visible and that it is not cut off.

    +
    + + + +
    +

    Now the columns are getting narrower.

    +
    + + + +
    +

    The margins between the columns should be wide enough,

    +
    + + + +
    +

    so that the content of the columns does not run into or overlap each other.

    +
    +
    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    + + + +
    +

    Column five.

    +
    +
    + + + +

    To change the number of columns, select the column block to open the settings panel. You can show up to 6 columns. If the theme has support for wide align, you can also set the alignments to wide and full width.

    + + + +

    Below is a column block with six columns, and no alignment:

    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    + + + +
    +

    Column five.

    +
    + + + +
    +

    Column six.

    +
    +
    + + + +

    Next is a 3 column block, with a wide alignment:

    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    +
    + + + +

    And here is a two column block with full width, and a longer text. Make sure that the text wraps correctly.

    + + + +
    +
    +

    This is column one. Sometimes, you may want to use columns to display a larger text, so, lets add some more words. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna. Praesent sit amet ligula id orci venenatis auctor. Phasellus porttitor, metus non tincidunt dapibus, orci pede pretium neque, sit amet adipiscing ipsum lectus et libero. Aenean bibendum. Curabitur mattis quam id urna. Vivamus dui. Donec nonummy lacinia lorem. Cras risus arcu, sodales ac, ultrices ac, mollis quis, justo. Sed a libero. Quisque risus erat, posuere at, tristique non, lacinia quis, eros.

    +
    + + + +
    +

    Column two. Cras volutpat, lacus quis semper pharetra, nisi enim dignissim est, et sollicitudin quam ipsum vel mi. Sed commodo urna ac urna. Nullam eu tortor. Curabitur sodales scelerisque magna. Donec ultricies tristique pede. Nullam libero. Nam sollicitudin felis vel metus. Nullam posuere molestie metus. Nullam molestie, nunc id suscipit rhoncus, felis mi vulputate lacus, a ultrices tortor dolor eget augue. Aenean ultricies felis ut turpis. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Suspendisse placerat tellus ac nulla. Proin adipiscing sem ac risus. Maecenas nisi. Cras semper.

    +
    +
    + + + +

    We can also add blocks inside columns:

    + + + +
    +
    +
    1. This is a numbered list,
    2. inside a 3 column block
    3. with a wide alignment.
    +
    + + + +
    +

    The middle column has a paragraph with an image block below.

    + + + +
    canola
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna.
    +
    + + + +
    +

    -This third column has a quote

    Theme Reviewer
    +
    +
    + + + +

    But wait there is more!  We also have a block called Media & Text, which is a two column block that helps you display media and text content next to each other, without having to first setup a column block:

    + + + +
    dsc20050813_115856_52
    +

    Media & Text

    + + + +

    A paragraph block sits ready to be used, below your headline.

    + + + +

    +
    +]]>
    + + 1743 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Block: Cover + https://wpthemetestdata.wordpress.com/2018/11/02/block-cover/ + Sat, 03 Nov 2018 12:25:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1745 + + +

    This is a left aligned cover block with a background image.

    + + + +

    The cover block lets you add text on top of images or videos.

    + + + +

    This blocktype has several alignment options, and you can also align or center the text inside the block.

    + + + +

    The background image can be fixed and you can change its opacity and add an overlay color.

    + + + +

    Make sure that the text wraps correctly over the image, and that text markup and alignments are working.

    + + + +

    The next image should have a pink overlay color, the text should be bold and aligned to the left:

    + + + +

    A center aligned cover image block, with a left aligned text.

    + + + +

    This is a full width cover block with a fixed background image with a 20% opacity.

    + + + +

    Make sure that all the text is readable.

    + + + +

    Our last cover image block has a wide width.

    + + + +

    This is a wide cover block with a video background.

    + + + +

    Compare the video and image blocks.
    This block is centered.

    + + + +

    The block below has no alignment, and the text is a link. Overlay colors must also work with video backgrounds.

    + + + + +]]>
    + + 1745 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Button + https://wpthemetestdata.wordpress.com/2018/11/02/block-button/ + Sat, 03 Nov 2018 13:20:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1747 + + +

    Button blocks are not semantically buttons, but links inside a styled div. 

    + + + +

    If you do not add a link, a link tag without an anchor will be used.

    + + + + + + + +

    Check to make sure that the text wraps correctly when the button has more than one line of text, and when it is extra long.

    + + + + + + + +

    Buttons have three styles: 

    + + + + + + + + + + + + + + + +

    If the theme has a custom color palette, test that background color and text color settings work correctly. 

    + + + + + + + +

    Now lets test how buttons display together with large texts.

    + + + +

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio.

    + + + + + + + +

    Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna. Praesent sit amet ligula id orci venenatis auctor. Phasellus porttitor, metus non tincidunt dapibus, orci pede pretium neque, sit amet adipiscing ipsum lectus et libero. Aenean bibendum. Curabitur mattis quam id urna.

    + + + + + + + +

    Vivamus dui. Donec nonummy lacinia lorem. Cras risus arcu, sodales ac, ultrices ac, mollis quis, justo. Sed a libero. Quisque risus erat, posuere at, tristique non, lacinia quis, eros.

    +]]>
    + + 1747 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Quote + https://wpthemetestdata.wordpress.com/2018/11/02/block-quote/ + Sat, 03 Nov 2018 03:05:49 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1749 + + +

    The quote block has two styles, regular:

    + + + +

    Gutenberg is more than an editor.

    The Gutenberg Team
    + + + +

    and large:

    + + + +

    Yes, it is a press, certainly, but a press from which shall flow in inexhaustible streams, the most abundant and most marvelous liquor that has ever flowed to relieve the thirst of men!


    Johannes Gutenberg
    + + + +

    The quote blocks themselves have no alignments but the text can be aligned, bold, italic, and linked:

    + + + +

    Right

    Theme Review
    + + + +

    In addition to the quote block, we also have the pull quote, with a regular and a solid color style.

    + + + +

    You can change the color of the border and the text with the regular style:

    + + + +

    In addition to the quote block, we also have the pull quote.

    Theme Reviewer
    + + + +

    Or change the background color and text color with the solid color style:

    + + + +

    a solid color style

    Theme Reviewer
    +]]>
    + + 1749 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Gallery + https://wpthemetestdata.wordpress.com/2018/11/02/block-gallery/ + Sat, 03 Nov 2018 04:34:24 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1752 + + +

    Gallery blocks have two settings: the number of columns, and whether or not images should be cropped. The default number of columns is three, and the maximum number of columns is eight.

    + + + +

    Below is a three column gallery at full width, with cropped images.

    + + + + + + + + + + + +

    Some more text for taking up space.

    + + + +

    A two column gallery, aligned to the left, linked to media file.

    + + + +

    In the editor, the image captions can be edited directly by clicking on the text.

    + + + +

    If the number of images cannot be divided into the number of columns you have selected, the default is to have the last image(s) automatically stretch to the width of your gallery.

    + + + + + + + +

    A four column gallery with a wide width:

    + + + + + + + +

    A five column gallery with normal images:

    + + + + + + + +

    This is the same gallery, but with cropped images.

    + + + + + + + +

    Six columns: does it work at all window sizes?

    + + + + + + + +

    Seven columns: how does this look on a narrow window?

    + + + + + + + +

    Eight columns:

    + + + + +]]>
    + + 1752 + + + + + + + 0 + 0 + + + 0 + + + + + + + + + +
    + + Block: Image + https://wpthemetestdata.wordpress.com/2018/11/03/block-image/ + Sat, 03 Nov 2018 15:20:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1755 + + +

    Welcome to image alignment! If you recognize this post, it is because these are blocks that have been converted from the classic Markup: Image Alignment post. The best way to demonstrate the ebb and flow of the various image positioning options is to nestle them snuggly among an ocean of words. Grab a paddle and let's get started. Be sure to try it in RTL mode. Left should stay left and right should stay right for both reading directions.

    + + + +

    On the topic of alignment, it should be noted that users can choose from the options of None, Left, Right, and Center. If the theme has added support for align wide, images can also be wide and full width. Be sure to test this page in RTL mode.

    + + + +

    In addition, they also get the options of the image dimensions 25%, 50%, 75%, 100% or a set width and height.

    + + + +
    Image Alignment 580x300
    + + + +

    The image above happens to be centered.

    + + + +
    Image Alignment 150x150
    + + + +

    The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned.

    + + + +

    As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished!

    + + + +

    And now for a massively large image. It also has no alignment.

    + + + +
    Image Alignment 1200x400
    + + + +

    The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.

    + + + +
    Image Alignment 300x200
    + + + +

    And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there… Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently.

    + + + +

    In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah… Just like that. It never felt so good to be right.

    + + + +

    And just when you thought we were done, we're going to do them all over again with captions!

    + + + +
    Image Alignment 580x300
    Look at 580x300 getting some caption love.
    + + + +

    The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky.

    + + + +
    Image Alignment 150x150
    Itty-bitty caption.
    + + + +

    The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned.

    + + + +

    As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished!

    + + + +

    And now for a massively large image. It also has no alignment.

    + + + +
    Image Alignment 1200x400
    Massive image comment for your eyeballs.
    + + + +

    The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.

    + + + +
    Image Alignment 300x200
    Feels good to be right all the time.
    + + + +

    And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there… Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently.

    + + + +

    In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah… Just like that. It never felt so good to be right.

    + + + +

    Imagine that we would find a use for the extra wide image! This image has the wide width alignment:

    + + + +
    Image Alignment 1200x4002
    + + + +

    Can we go bigger? This image has the full width alignment:

    + + + +
    Image Alignment 1200x4002
    + + + +

    And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! One last thing: The last item in this post's content is a thumbnail floated right. Make sure any elements after the content are clearing properly.

    + + + +
    +]]>
    + + 1755 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Ελληνικά-Greek + https://wpthemetestdata.wordpress.com/greek/ + Fri, 14 Feb 2020 10:31:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1809 + + Headings Επικεφαλίδες +

    Επικεφαλίδα 1 Header one

    +

    Επικεφαλίδα 2 Header two

    +

    Επικεφαλίδα 3 Header three

    +

    Επικεφαλίδα 2 Header four

    +
    Επικεφαλίδα 5 Header five
    +
    Επικεφαλίδα 6Header six
    +

    Παράθεση άλλου Blockquotes

    +Single line blockquote: Μια γραμμή +
    Πάντα να είναι περίεργος.
    +Πολλές γραμμέ με αναφορά Multi line blockquote with a cite reference: +
    Το HTML <blockquote> ElementHTML Block Quotation Element) καταδεικνύει ότι το κείμενο έχει μια παράθεση. Συνήθως οπτικοποιείται με εσοχή (δείτε Σημειώσεις για το πως να το αλλάξετε. Ίσως να δίνεται και URL πηγής με την χρήση του cite attribute, μπλα, μπλα <cite> .
    +multiple contributors - MDN HTML element reference - blockquote +

    Πίνακες Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Υπάλληλος EmployeeΜισθός Salary
    Τάδε κάποιος$1Γιατί τόσα χρειάζεται για να ζήσει
    Jane Doe$100KFor all the blogging she does.
    Fred Bloggs$100MPictures are worth a thousand words, right? So Jane x 1,000.
    Jane Bloggs$100BWith hair like that?! Enough said...
    +

    Λίστες Definition Lists

    +
    +
    Τίτλος λίστας Definition List Title
    +
    Υποδιαίρεση λίστας Definition list division.
    +
    +

    Λίστα με κουκίδες Unordered Lists (Nested)

    +
      +
    • Πρώτο στοιχείο List item one +
        +
      • Στοιχείο πρώτο List item one +
          +
        • Στοιχείο λίστα ένα List item one
        • +
        • Στοιχείο λίστας δύο List item two
        • +
        +
      • +
      • Στοιχείο δεύτερο -item two
      • +
      +
    • +
    • Στοιχειο δύο List item two
    • +
    +

    Αριθμημένη λίστα(Nested)

    +
      +
    1. Στοιχειο ξεκινά με 8-start at 8 +
        +
      1. Στοιχείο λίστας ενα List item one +
          +
        1. Στοιχείο λίστας ενα -reversed attribute
        2. +
        3. Στοιχείο λίστας δύο
        4. +
        +
      2. +
      3. Δεύτερο στοιχείο
      4. +
      +
    2. +
    3. Στοιχείο δύο
    4. +
    +

    Ετικέττες HTML Tags

    +Διεύθυνση Address Tag + +
    1 Απέραντη διαδρομή Infinite Loop +Απλωπολή , ΤΚ 95014 +Ελλάδα
    Αγκυρωση Anchor Tag (aka. Link) + +Πάραδειγμα συνδέσμου. + +Συντομογραφία Abbreviation Tag + +Η συντομογραφία κτλ σημαίνει "Και τα λοιπά". + +Ακρωνύμιο Acronym Tag + +Το ακρωνύμιο κυρ σημαίνει "Κύριος". + +Big Tag + +Αυτό είναι μεγάλο θέμα + +Cite Tag + +"Φάε το φαϊ σου" --Όλες οι μαμάδες + +Code Tag + +This tag styles blocks of code. +.post-title { +margin: 0 0 5px; +font-weight: bold; +font-size: 38px; +line-height: 1.2; +και μία γραμμή με πολύ πάρα πολύ υπερβολικά πάρα πολύ μεγάλο κείμενο που πρέπει να δούμε πως το χειρίζεται η γραμματοσειρά και αν ξεχειλίζει από τις γραμμές και δημιουργεί πρόβλημα; +} + +Διαγραφή Delete Tag + +Μπορείτε να διαγράφεται κείμενο, αλλά δεν συνιστάται. + +Έμφαση Emphasize Tag + +Θα πρέπει να κάνει ιταλικ italicize το κείμενο. + +Εισαγωγή Insert Tag + +Αυτό το tag υποδηλώνει εισηγμένο inserted κείμενο. + +Keyboard Tag + +Αυτό το ελάχιστο γνωστό κείμενο πληκτρολογίου keyboard Tag, συνήθως μορφοποιείται όμοια με το <κώδικα code> tag. + +Προδιαμορφωμένο Preformatted Tag +

    Ο Δρόμος που δεν διάλεξα - The Road Not Taken

    +
    Robert Frost
    +	 Δυο δρόμοι διασταυρώθηκαν σ' ένα χρυσαφένιο δάσος ,
    +	 Και προς λύπη μου και τους δυο τα πόδια μου να ταξιδέψουν δεν μπορούσαν
    +	 Κι επί μακρόν εστάθηκα , καθώς ένας ήμουν ταξιδευτής μονάχος ,
    +	 κι έστρεψα το βλέμμα μου στον πρώτο όσο να χαθεί στο βάθος
    +	 μέχρι εκεί που χάνονταν στα άγρια χόρτα που βλαστούσαν.
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	και μία μακριά, πάρα πολύ μακριά, υπερβολικά μακροσκελής δίχως νόημα πρόταση για να δούμε πως το χειρίζεται το θέμα εμφάνισης και αν αναδιπλώνεται, κρύβεται ή ξεχειλίζει;
    +
    +Quote Tag for short, inline quotes + +Προγραμματιστές, προγραμματιστές, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +Αυτή η ετικέτα είναι με διαγράμμιση strike-through κείμενο text. + +Μικρά Small Tag + +Αυτή η ετικέτα είναι μικρότερο smaller κείμενο text. + +Strong Tag + +Αυτή η ετικέτα δείχνει έντονο bold κείμενο text. + +Subscript Tag + +Getting our science styling on with H2 δύοO, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2 δύο, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +Αυτή η ετικέτα δείχνει τυλετυπος teletype κείμενο, which is usually styled like the <κώδικα code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +Αυτή η ετικέτα δείχνει υπογράμμιση underlined text. + +Variable Tag + +Αυτή η ετικέτα δείχνει παράμετροι variables.]]>
    + + 1809 + + + + + + + 0 + 0 + + + 0 + + + + + + + + +
    + + Επίπεδο 2 -Second Greek level + https://wpthemetestdata.wordpress.com//greek/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-2/ + Fri, 14 Feb 2020 10:31:47 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1811 + + + + 1811 + + + + + + + 1809 + 0 + + + 0 + + + + + + + + + + + Επίπεδο 3 + https://wpthemetestdata.wordpress.com/greek/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-2/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-3/ + Fri, 14 Feb 2020 10:32:50 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1813 + + + + 1813 + + + + + + + 1811 + 0 + + + 0 + + + + + + + + + +
    +
    \ No newline at end of file diff --git a/packages/playground/data-liberation/tests/wxr/a11y-unit-test-data.xml b/packages/playground/data-liberation/tests/wxr/a11y-unit-test-data.xml new file mode 100644 index 0000000000..04ab83871f --- /dev/null +++ b/packages/playground/data-liberation/tests/wxr/a11y-unit-test-data.xml @@ -0,0 +1,9948 @@ + + + + + +Theme Accessibility Unit Test Data +http://wpthemetestdata.wordpress.com +Just another WordPress website with a purposefully really long description +Tue, 02 Sep 2014 17:16:26 +0000 +en +1.2 +http://wordpress.com/ +http://wpthemetestdata.wordpress.com + + a11yteam + a11yteam@wordpress.org + + + + + + 193 + + + + + + + 1356 + blogroll + + + + + 111995 + cat-a + + + + + 111996 + cat-b + + + + + 111997 + cat-c + + + + + 161095136 + edge-case-2 + + + + + + 3128700 + foo-a + + + + + 3128707 + foo-parent + + + + + 4675 + markup + + + + + + 329026 + media-2 + + + + + + 2835030 + packthread + + + + + 54150 + parent + + + + + 6004933 + parent-category + + + + + + 44090582 + post-formats + + + + + + 33328006 + template-2 + + + + + + 1 + uncategorized + + + + + 54090 + unpublished + + + + + + 67899 + years + + + + + 1043326 + child-1 + parent + + + + 1043329 + child-2 + child-1 + + + + 158081316 + child-category-01 + parent-category + + + + + 158081319 + child-category-02 + parent-category + + + + + 158081321 + child-category-03 + parent-category + + + + + 158081323 + child-category-04 + parent-category + + + + + 158081325 + child-category-05 + parent-category + + + + + 3128710 + foo-a-foo-parent + foo-parent + + + + 57037077 + grandchild-category + child-category-03 + + + + + 38590737 + alignment-2 + + + + 651 + articles + + + + + 6935 + aside + + + + 413 + audio + + + + 36446125 + captions-2 + + + + 1656 + categories + + + + 4870 + chat + + + + 12525 + codex + + + + 1861347 + comments-2 + + + + 35181409 + content-2 + + + + 169 + css + + + + 13207917 + dowork + + + + + 16894899 + edge-case + + + + 161043722 + embeds-2 + + + + 31262653 + excerpt-2 + + + + 112207 + fail + + + + + 8923091 + featured-image + + + + 44189092 + formatting-2 + + + + 3263 + gallery + + + + 647 + html + + + + 686 + image + + + + 66451 + is + + + + 76655687 + jetpack-2 + + + + 26060 + layout + + + + 2717 + link + + + + 35081376 + lists-2 + + + + 118729 + lorem + + + + 38696790 + markup-2 + + + + 292 + media + + + + 11212 + more + + + + 697683 + pagination + + + + 39214087 + password-2 + + + + 835 + pictures + + + + 161099149 + pingbacks-2 + + + + 1187 + post + + + + 44090582 + post-formats + + + + 3099 + quote + + + + 40586 + read-more + + + + 71229 + readability + + + + 412776 + shortcode + + + + 472597 + standard-2 + + + + 577 + status + + + + 45997922 + sticky-2 + + + + 4668 + success + + + + + 1790856 + tag-a + + + + 1790857 + tag-b + + + + 1790858 + tag-c + + + + 22652 + tag1 + + + + 22653 + tag2 + + + + 359495 + tag3 + + + + 1502 + tags + + + + + 11867 + template + + + + 5117 + text + + + + 1235460 + tiled + + + + 1653 + title + + + + 64903049 + trackbacks-2 + + + + 11320090 + twitter-2 + + + + 412 + video + + + + 20117770 + videopress + + + + 33 + wordpress + + + + + 15787590 + wordpress-tv + + + + 161107798 + nav_menu + all-pages + + + + 161104374 + nav_menu + short + + + + 161101812 + nav_menu + all-pages-flat + + + + 158084196 + nav_menu + testing-menu + + + + 158085404 + nav_menu + empty-menu + + +http://wordpress.com/ + + https://s2.wp.com/i/buttonw-com.png + » Theme Unit Test Data + http://wpthemetestdata.wordpress.com + + + About The Tests + http://wpthemetestdata.wordpress.com/about/ + Mon, 26 Jul 2010 02:40:01 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/about/ + + WordPress Theme Development Resources + +
      +
    1. See Theme Development for code standards, examples of best practices, and resources for Theme development.
    2. +
    3. See Theme Unit Test for a robust test suite for your Theme and get the latest version of the test data you see here.
    4. +
    5. See Theme Review for a guide to submitting your Theme to the Themes Directory.
    6. +
    ]]>
    + + 2 + 2010-07-25 19:40:01 + 2010-07-26 02:40:01 + closed + closed + about + publish + 0 + 1 + page + + 0 + + _wp_page_template + + +
    + + Lorem Ipsum + http://wpthemetestdata.wordpress.com/lorem-ipsum/ + Tue, 04 Sep 2007 16:52:50 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/lorem-ipsum/ + + + + 146 + 2007-09-04 09:52:50 + 2007-09-04 16:52:50 + closed + closed + lorem-ipsum + publish + 0 + 7 + page + + 0 + + _wp_page_template + + + + + Page with comments + http://wpthemetestdata.wordpress.com/about/page-with-comments/ + + _wp_page_template + + + + 167 + + + + + 168 + + tellyworth+test2@gmail.com + + 59.167.157.3 + 2007-09-04 10:49:03 + 2007-09-04 00:49:03 + + 1 + + 0 + 0 + + + 169 + + example@example.org + http://example.org + 59.167.157.3 + 2007-09-04 10:48:51 + 2007-09-04 17:48:51 + + 1 + + 0 + 0 + + + + Page with comments disabled + http://wpthemetestdata.wordpress.com/about/page-with-comments-disabled/ + Tue, 04 Sep 2007 17:48:10 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/page-with-comments-disabled/ + + + + 156 + 2007-09-04 10:48:10 + 2007-09-04 17:48:10 + closed + closed + page-with-comments-disabled + publish + 2 + 4 + page + + 0 + + _wp_page_template + + + + + Level 3 + http://wpthemetestdata.wordpress.com/level-1/level-2/level-3/ + Tue, 11 Dec 2007 06:23:16 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/level-3/ + + + + 172 + 2007-12-11 16:23:16 + 2007-12-11 06:23:16 + closed + closed + level-3 + publish + 173 + 0 + page + + 0 + + _wp_page_template + + + + + Level 2 + http://wpthemetestdata.wordpress.com/level-1/level-2/ + Tue, 11 Dec 2007 06:23:33 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/level-2/ + + + + 173 + 2007-12-11 16:23:33 + 2007-12-11 06:23:33 + closed + closed + level-2 + publish + 174 + 0 + page + + 0 + + _wp_page_template + + + + + Level 1 + http://wpthemetestdata.wordpress.com/level-1/ + Tue, 11 Dec 2007 23:25:40 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/level-1/ + + + + 174 + 2007-12-11 16:25:40 + 2007-12-11 23:25:40 + closed + closed + level-1 + publish + 0 + 5 + page + + 0 + + _wp_page_template + + + + + Clearing Floats + http://wpthemetestdata.wordpress.com/about/clearing-floats/ + Sun, 01 Aug 2010 16:42:26 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/ + + ]]> + + 501 + 2010-08-01 09:42:26 + 2010-08-01 16:42:26 + closed + closed + clearing-floats + publish + 2 + 2 + page + + 0 + + _wp_page_template + + + + + canola2 + http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/canola2/ + Mon, 10 Jan 2011 13:17:54 +0000 + a11yteam + http://wpthemetestdata.files.wordpress.com/2008/06/canola2.jpg + + + + 611 + 2011-01-10 06:17:54 + 2011-01-10 13:17:54 + open + closed + canola2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/canola2.jpg + + _wp_attachment_image_alt + + + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + dsc20050727_091048_222 + http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050727_091048_222/ + Mon, 10 Jan 2011 13:20:37 +0000 + a11yteam + http://wpthemetestdata.files.wordpress.com/2008/06/dsc20050727_091048_222.jpg + + + + 616 + 2011-01-10 06:20:37 + 2011-01-10 13:20:37 + open + closed + dsc20050727_091048_222 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050727_091048_222.jpg + + _wp_attachment_image_alt + + + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + dsc20050813_115856_52 + http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050813_115856_52/ + Mon, 10 Jan 2011 13:20:57 +0000 + a11yteam + http://wpthemetestdata.files.wordpress.com/2008/06/dsc20050813_115856_52.jpg + + + + 617 + 2011-01-10 06:20:57 + 2011-01-10 13:20:57 + open + closed + dsc20050813_115856_52 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050813_115856_52.jpg + + _wp_attachment_image_alt + + + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Front Page + http://wpthemetestdata.wordpress.com/front-page/ + Sat, 21 May 2011 01:49:43 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/?page_id=701 + + + + 701 + 2011-05-20 18:49:43 + 2011-05-21 01:49:43 + open + closed + front-page + publish + 0 + 0 + page + + 0 + + _wp_page_template + + + + + Blog + http://wpthemetestdata.wordpress.com/blog/ + Sat, 21 May 2011 01:51:43 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/?page_id=703 + + + + 703 + 2011-05-20 18:51:43 + 2011-05-21 01:51:43 + open + closed + blog + publish + 0 + 0 + page + + 0 + + _wp_page_template + + + + + Bell on Wharf + http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/100_5478/ + Fri, 15 Jul 2011 21:34:50 +0000 + a11yteam + http://wpthemetestdata.files.wordpress.com/2008/06/100_5478.jpg + + + + 754 + 2011-07-15 14:34:50 + 2011-07-15 21:34:50 + open + closed + 100_5478 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/100_5478.jpg + + _wp_attachment_image_alt + + + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Golden Gate Bridge + http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/100_5540/ + Fri, 15 Jul 2011 21:35:55 +0000 + a11yteam + http://wpthemetestdata.files.wordpress.com/2008/06/100_5540.jpg + + + + 755 + 2011-07-15 14:35:55 + 2011-07-15 21:35:55 + open + closed + 100_5540 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/100_5540.jpg + + _wp_attachment_image_alt + + + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sunburst Over River + http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/cep00032/ + Fri, 15 Jul 2011 21:41:24 +0000 + a11yteam + http://wpthemetestdata.files.wordpress.com/2008/06/cep00032.jpg + + + + 756 + 2011-07-15 14:41:24 + 2011-07-15 21:41:24 + open + closed + cep00032 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/cep00032.jpg + + _wp_attachment_image_alt + + + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Boardwalk + http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dcp_2082/ + Fri, 15 Jul 2011 21:41:27 +0000 + a11yteam + http://wpthemetestdata.files.wordpress.com/2008/06/dcp_2082.jpg + + + + 757 + 2011-07-15 14:41:27 + 2011-07-15 21:41:27 + open + closed + dcp_2082 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dcp_2082.jpg + + _wp_attachment_image_alt + + + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Yachtsody in Blue + http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc03149/ + Fri, 15 Jul 2011 21:41:33 +0000 + a11yteam + http://wpthemetestdata.files.wordpress.com/2008/06/dsc03149.jpg + + + + 758 + 2011-07-15 14:41:33 + 2011-07-15 21:41:33 + open + closed + dsc03149 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc03149.jpg + + _wp_attachment_image_alt + + + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Rain Ripples + http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc04563/ + Fri, 15 Jul 2011 21:41:37 +0000 + a11yteam + http://wpthemetestdata.files.wordpress.com/2008/06/dsc04563.jpg + + + + 759 + 2011-07-15 14:41:37 + 2011-07-15 21:41:37 + open + closed + dsc04563 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc04563.jpg + + _wp_attachment_image_alt + + + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sydney Harbor Bridge + http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc09114/ + Fri, 15 Jul 2011 21:41:41 +0000 + a11yteam + http://wpthemetestdata.files.wordpress.com/2008/06/dsc09114.jpg + + + + 760 + 2011-07-15 14:41:41 + 2011-07-15 21:41:41 + open + closed + dsc09114 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc09114.jpg + + _wp_attachment_image_alt + + + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Wind Farm + http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050102_192118_51/ + Fri, 15 Jul 2011 21:41:42 +0000 + a11yteam + http://wpthemetestdata.files.wordpress.com/2008/06/dsc20050102_192118_51.jpg + + + + 761 + 2011-07-15 14:41:42 + 2011-07-15 21:41:42 + open + closed + dsc20050102_192118_51 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050102_192118_51.jpg + + _wp_attachment_image_alt + + + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Antique Farm Machinery + http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20051220_160808_102/ + Fri, 15 Jul 2011 21:41:45 +0000 + a11yteam + http://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_160808_102.jpg + + + + 762 + 2011-07-15 14:41:45 + 2011-07-15 21:41:45 + open + closed + dsc20051220_160808_102 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_160808_102.jpg + + _wp_attachment_image_alt + + + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Orange Iris + http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc02085/ + Fri, 15 Jul 2011 21:46:27 +0000 + a11yteam + http://wpthemetestdata.files.wordpress.com/2008/06/dsc02085.jpg + + + + 763 + 2011-07-15 14:46:27 + 2011-07-15 21:46:27 + open + closed + dsc02085 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc02085.jpg + + _wp_attachment_image_alt + + + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Rusty Rail + http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20051220_173257_119/ + Fri, 15 Jul 2011 21:47:17 +0000 + a11yteam + http://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_173257_119.jpg + + + + 764 + 2011-07-15 14:47:17 + 2011-07-15 21:47:17 + open + closed + dsc20051220_173257_119 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_173257_119.jpg + + _wp_attachment_image_alt + + + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sea and Rocks + http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dscn3316/ + Fri, 15 Jul 2011 21:47:20 +0000 + a11yteam + http://wpthemetestdata.files.wordpress.com/2008/06/dscn3316.jpg + + + + 765 + 2011-07-15 14:47:20 + 2011-07-15 21:47:20 + open + closed + dscn3316 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dscn3316.jpg + + _wp_attachment_image_alt + + + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Big Sur + http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/michelle_049/ + Fri, 15 Jul 2011 21:47:23 +0000 + a11yteam + http://wpthemetestdata.files.wordpress.com/2008/06/michelle_049.jpg + + + + 766 + 2011-07-15 14:47:23 + 2011-07-15 21:47:23 + open + closed + michelle_049 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/michelle_049.jpg + + _wp_attachment_image_alt + + + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Windmill + http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dcf-1-0/ + Fri, 15 Jul 2011 21:47:26 +0000 + a11yteam + http://wpthemetestdata.files.wordpress.com/2008/06/windmill.jpg + + + + 767 + 2011-07-15 14:47:26 + 2011-07-15 21:47:26 + open + closed + dcf-1-0 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/windmill.jpg + + _wp_attachment_image_alt + + + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Huatulco Coastline + http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/alas-i-have-found-my-shangri-la/ + Fri, 15 Jul 2011 21:49:48 +0000 + a11yteam + http://wpthemetestdata.files.wordpress.com/2008/06/img_0513-1.jpg + + + + 768 + 2011-07-15 14:49:48 + 2011-07-15 21:49:48 + open + closed + alas-i-have-found-my-shangri-la + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0513-1.jpg + + _wp_attachment_image_alt + + + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Brazil Beach + http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_0747/ + Fri, 15 Jul 2011 21:50:37 +0000 + a11yteam + http://wpthemetestdata.files.wordpress.com/2008/06/img_0747.jpg + + + + 769 + 2011-07-15 14:50:37 + 2011-07-15 21:50:37 + open + closed + img_0747 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0747.jpg + + _wp_attachment_image_alt + + + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Huatulco Coastline + http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_0767/ + Fri, 15 Jul 2011 21:51:19 +0000 + a11yteam + http://wpthemetestdata.files.wordpress.com/2008/06/img_0767.jpg + + + + 770 + 2011-07-15 14:51:19 + 2011-07-15 21:51:19 + open + closed + img_0767 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0767.jpg + + _wp_attachment_image_alt + + + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Boat Barco Texture + http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_8399/ + Fri, 15 Jul 2011 21:51:57 +0000 + a11yteam + http://wpthemetestdata.files.wordpress.com/2008/06/img_8399.jpg + + + + 771 + 2011-07-15 14:51:57 + 2011-07-15 21:51:57 + open + closed + img_8399 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_8399.jpg + + _wp_attachment_image_alt + + + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + dsc20040724_152504_532 + http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20040724_152504_532-2/ + Mon, 04 Jun 2012 18:36:56 +0000 + a11yteam + https://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg + + + + 807 + 2012-06-04 11:36:56 + 2012-06-04 18:36:56 + open + closed + dsc20040724_152504_532-2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg + + _attachment_original_parent_id + + + + + dsc20050604_133440_3421 + http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050604_133440_3421/ + Mon, 04 Jun 2012 18:58:15 +0000 + a11yteam + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050604_133440_34211.jpg + + + + 811 + 2012-06-04 11:58:15 + 2012-06-04 18:58:15 + open + closed + dsc20050604_133440_3421 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050604_133440_34211.jpg + + _attachment_original_parent_id + + + + + St. Louis Blues + http://wpthemetestdata.wordpress.com/2010/07/02/post-format-audio/originaldixielandjazzbandwithalbernard-stlouisblues/ + Thu, 05 Jul 2012 16:49:29 +0000 + a11yteam + http://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3 + + + + 821 + 2012-07-05 09:49:29 + 2012-07-05 16:49:29 + open + closed + originaldixielandjazzbandwithalbernard-stlouisblues + inherit + 587 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3 + + + OLYMPUS DIGITAL CAMERA + http://wpthemetestdata.wordpress.com/about/clearing-floats/olympus-digital-camera/ + Thu, 05 Jul 2012 18:07:34 +0000 + a11yteam + http://wpthemetestdata.files.wordpress.com/2010/08/manhattansummer.jpg + + + + 827 + 2012-07-05 11:07:34 + 2012-07-05 18:07:34 + open + closed + olympus-digital-camera + inherit + 501 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2010/08/manhattansummer.jpg + + + Image Alignment 580x300 + http://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-580x300/ + Fri, 15 Mar 2013 00:44:50 +0000 + a11yteam + http://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg + + + + 967 + 2013-03-14 19:44:50 + 2013-03-15 00:44:50 + open + open + image-alignment-580x300 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg + + pre_import_post_parent + + + + pre_import_post_id + + + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Image Alignment 150x150 + http://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-150x150/ + Fri, 15 Mar 2013 00:44:49 +0000 + a11yteam + http://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg + + + + 968 + 2013-03-14 19:44:49 + 2013-03-15 00:44:49 + open + open + image-alignment-150x150 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg + + pre_import_post_parent + + + + pre_import_post_id + + + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Horizontal Featured Image + http://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-horizontal/featured-image-horizontal-2/ + Fri, 15 Mar 2013 20:40:38 +0000 + a11yteam + http://wpthemetestdata.files.wordpress.com/2013/03/featured-image-horizontal.jpg + + + + 1022 + 2013-03-15 15:40:38 + 2013-03-15 20:40:38 + open + open + featured-image-horizontal-2 + inherit + 1011 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-horizontal.jpg + + pre_import_post_parent + + + + pre_import_post_id + + + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + I Am Worth Loving Wallpaper + http://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/soworthloving-wallpaper/ + Thu, 14 Mar 2013 14:58:24 +0000 + a11yteam + http://wpthemetestdata.files.wordpress.com/2013/03/soworthloving-wallpaper.jpg + + + + 1023 + 2013-03-14 09:58:24 + 2013-03-14 14:58:24 + open + open + soworthloving-wallpaper + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/soworthloving-wallpaper.jpg + + pre_import_post_parent + + + + pre_import_post_id + + + + _wp_attachment_image_alt + + + + + Image Alignment 300x200 + http://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-300x200/ + Fri, 15 Mar 2013 00:44:49 +0000 + a11yteam + http://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg + + + + 1025 + 2013-03-14 19:44:49 + 2013-03-15 00:44:49 + open + open + image-alignment-300x200 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg + + pre_import_post_parent + + + + pre_import_post_id + + + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Vertical Featured Image + http://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-vertical/featured-image-vertical-2/ + Fri, 15 Mar 2013 20:41:09 +0000 + a11yteam + http://wpthemetestdata.files.wordpress.com/2013/03/featured-image-vertical.jpg + + + + 1027 + 2013-03-15 15:41:09 + 2013-03-15 20:41:09 + open + open + featured-image-vertical-2 + inherit + 1016 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-vertical.jpg + + pre_import_post_parent + + + + pre_import_post_id + + + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Image Alignment 1200x4002 + http://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-1200x4002/ + Fri, 15 Mar 2013 00:44:50 +0000 + a11yteam + http://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg + + + + 1029 + 2013-03-14 19:44:50 + 2013-03-15 00:44:50 + open + open + image-alignment-1200x4002 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg + + pre_import_post_parent + + + + pre_import_post_id + + + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Unicorn Wallpaper + http://wpthemetestdata.wordpress.com/2010/08/08/post-format-image/unicorn-wallpaper/ + Fri, 15 Mar 2013 03:10:39 +0000 + a11yteam + http://wpthemetestdata.files.wordpress.com/2012/12/unicorn-wallpaper.jpg + + + + 1045 + 2013-03-14 22:10:39 + 2013-03-15 03:10:39 + open + open + unicorn-wallpaper + inherit + 1158 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2012/12/unicorn-wallpaper.jpg + + pre_import_post_parent + + + + pre_import_post_id + + + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Pages + http://wpthemetestdata.wordpress.com/2013/04/09/pages/ + Tue, 09 Apr 2013 13:37:45 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/2013/04/09/pages + + + + 1100 + 2013-04-09 06:37:45 + 2013-04-09 13:37:45 + open + closed + pages + publish + 0 + 2 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Categories + http://wpthemetestdata.wordpress.com/2013/04/09/categories/ + Tue, 09 Apr 2013 13:37:45 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/2013/04/09/categories + + + + 1101 + 2013-04-09 06:37:45 + 2013-04-09 13:37:45 + open + closed + categories + publish + 0 + 10 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + <link>http://wpthemetestdata.wordpress.com/2013/04/09/1112/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>a11yteam</dc:creator> + <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/2013/04/09/1112</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test markup tags and styles.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1112</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1112</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>21</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[4675]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>http://wpthemetestdata.wordpress.com/2013/04/09/1115/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>a11yteam</dc:creator> + <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/2013/04/09/1115</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test post formats.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1115</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1115</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>24</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[44090582]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>http://wpthemetestdata.wordpress.com/2013/04/09/1118/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>a11yteam</dc:creator> + <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/2013/04/09/1118</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test unpublished posts.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1118</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1118</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>28</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[54090]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>Depth + http://wpthemetestdata.wordpress.com/2013/04/09/depth/ + Tue, 09 Apr 2013 13:37:46 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/2013/04/09/depth + + + + 1119 + 2013-04-09 06:37:46 + 2013-04-09 13:37:46 + open + closed + depth + publish + 0 + 29 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 01 + http://wpthemetestdata.wordpress.com/2013/04/09/level-01/ + Tue, 09 Apr 2013 13:37:47 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/2013/04/09/level-01 + + + + 1120 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-01 + publish + 0 + 30 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 02 + http://wpthemetestdata.wordpress.com/2013/04/09/level-02/ + Tue, 09 Apr 2013 13:37:47 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/2013/04/09/level-02 + + + + 1121 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-02 + publish + 0 + 31 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 03 + http://wpthemetestdata.wordpress.com/2013/04/09/level-03/ + Tue, 09 Apr 2013 13:37:47 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/2013/04/09/level-03 + + + + 1122 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-03 + publish + 0 + 32 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 04 + http://wpthemetestdata.wordpress.com/2013/04/09/level-04/ + Tue, 09 Apr 2013 13:37:47 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/2013/04/09/level-04 + + + + 1123 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-04 + publish + 0 + 33 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 05 + http://wpthemetestdata.wordpress.com/2013/04/09/level-05/ + Tue, 09 Apr 2013 13:37:47 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/2013/04/09/level-05 + + + + 1124 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-05 + publish + 0 + 34 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 06 + http://wpthemetestdata.wordpress.com/2013/04/09/level-06/ + Tue, 09 Apr 2013 13:37:49 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/2013/04/09/level-06 + + + + 1125 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-06 + publish + 0 + 35 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 07 + http://wpthemetestdata.wordpress.com/2013/04/09/level-07/ + Tue, 09 Apr 2013 13:37:49 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/2013/04/09/level-07 + + + + 1126 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-07 + publish + 0 + 36 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 08 + http://wpthemetestdata.wordpress.com/2013/04/09/level-08/ + Tue, 09 Apr 2013 13:37:49 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/2013/04/09/level-08 + + + + 1127 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-08 + publish + 0 + 37 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 09 + http://wpthemetestdata.wordpress.com/2013/04/09/level-09/ + Tue, 09 Apr 2013 13:37:49 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/2013/04/09/level-09 + + + + 1128 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-09 + publish + 0 + 38 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 10 + http://wpthemetestdata.wordpress.com/2013/04/09/level-10/ + Tue, 09 Apr 2013 13:37:49 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/2013/04/09/level-10 + + + + 1129 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-10 + publish + 0 + 39 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Advanced + http://wpthemetestdata.wordpress.com/2013/04/09/advanced/ + Tue, 09 Apr 2013 13:37:49 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/2013/04/09/advanced + + + + 1130 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + advanced + publish + 0 + 40 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu Description + http://wpthemetestdata.wordpress.com/2013/04/09/menu-description/ + Tue, 09 Apr 2013 13:37:50 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/2013/04/09/menu-description + + + + 1142 + 2013-04-09 06:37:50 + 2013-04-09 13:37:50 + open + closed + menu-description + publish + 0 + 44 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu Title Attribute + http://wpthemetestdata.wordpress.com/2013/04/09/menu-title-attribute/ + Tue, 09 Apr 2013 13:37:50 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/2013/04/09/menu-title-attribute + + + + 1143 + 2013-04-09 06:37:50 + 2013-04-09 13:37:50 + open + closed + menu-title-attribute + publish + 0 + 41 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu CSS Class + http://wpthemetestdata.wordpress.com/2013/04/09/menu-css-class/ + Tue, 09 Apr 2013 13:37:51 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/2013/04/09/menu-css-class + + + + 1144 + 2013-04-09 06:37:51 + 2013-04-09 13:37:51 + open + closed + menu-css-class + publish + 0 + 42 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + <link>http://wpthemetestdata.wordpress.com/2013/04/09/1263/</link> + <pubDate>Tue, 09 Apr 2013 13:38:00 +0000</pubDate> + <dc:creator>a11yteam</dc:creator> + <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/2013/04/09/1263</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1263</wp:post_id> + <wp:post_date>2013-04-09 06:38:00</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:38:00</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1263</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1100]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>http://wpthemetestdata.wordpress.com/2013/04/09/1264/</link> + <pubDate>Tue, 09 Apr 2013 13:38:01 +0000</pubDate> + <dc:creator>a11yteam</dc:creator> + <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/2013/04/09/1264</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1264</wp:post_id> + <wp:post_date>2013-04-09 06:38:01</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:38:01</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1264</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1100]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>http://wpthemetestdata.wordpress.com/2013/04/09/1287/</link> + <pubDate>Tue, 09 Apr 2013 13:53:04 +0000</pubDate> + <dc:creator>a11yteam</dc:creator> + <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/2013/04/09/1287</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1287</wp:post_id> + <wp:post_date>2013-04-09 06:53:04</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:53:04</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1287</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1100]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>http://wpthemetestdata.wordpress.com/2013/04/09/1288/</link> + <pubDate>Tue, 09 Apr 2013 13:53:04 +0000</pubDate> + <dc:creator>a11yteam</dc:creator> + <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/2013/04/09/1288</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1288</wp:post_id> + <wp:post_date>2013-04-09 06:53:04</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:53:04</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1288</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1100]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>triforce-wallpaper + http://wpthemetestdata.wordpress.com/2010/08/07/post-format-image-caption/triforce-wallpaper/ + Tue, 09 Apr 2013 20:17:31 +0000 + a11yteam + http://wpthemetestdata.files.wordpress.com/2010/08/triforce-wallpaper.jpg + + + + 1628 + 2013-04-09 13:17:31 + 2013-04-09 20:17:31 + open + closed + triforce-wallpaper + inherit + 1163 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2010/08/triforce-wallpaper.jpg + + + Home + http://wpthemetestdata.wordpress.com/2013/05/07/home/ + Tue, 07 May 2013 19:54:30 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/?p=1635 + + + + 1635 + 2013-05-07 12:54:30 + 2013-05-07 19:54:30 + open + closed + home + publish + 0 + 1 + nav_menu_item + + 0 + + + _menu_item_object_id + + + + _menu_item_menu_item_parent + + + + _menu_item_type + + + + _publicize_pending + + + + _menu_item_url + + + + _menu_item_xfn + + + + _menu_item_classes + + + + _menu_item_target + + + + _menu_item_object + + + + + + <link>http://wpthemetestdata.wordpress.com/2013/05/07/1636/</link> + <pubDate>Tue, 07 May 2013 19:54:30 +0000</pubDate> + <dc:creator>a11yteam</dc:creator> + <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1636</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1636</wp:post_id> + <wp:post_date>2013-05-07 12:54:30</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:30</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1636</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>http://wpthemetestdata.wordpress.com/2013/05/07/1637/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>a11yteam</dc:creator> + <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1637</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1637</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1637</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>http://wpthemetestdata.wordpress.com/2013/05/07/1638/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>a11yteam</dc:creator> + <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1638</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1638</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1638</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>http://wpthemetestdata.wordpress.com/2013/05/07/1639/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>a11yteam</dc:creator> + <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1639</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1639</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1639</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>http://wpthemetestdata.wordpress.com/2013/05/07/1640/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>a11yteam</dc:creator> + <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1640</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1640</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1640</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>http://wpthemetestdata.wordpress.com/2013/05/07/1641/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>a11yteam</dc:creator> + <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1641</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1641</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1641</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>Home + http://wpthemetestdata.wordpress.com/2013/05/07/home-2/ + Tue, 07 May 2013 19:55:38 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/?p=1642 + + + + 1642 + 2013-05-07 12:55:38 + 2013-05-07 19:55:38 + open + closed + home-2 + publish + 0 + 1 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_url + + + + _menu_item_xfn + + + + _menu_item_classes + + + + _menu_item_target + + + + _menu_item_object + + + + _menu_item_object_id + + + + _menu_item_menu_item_parent + + + + _menu_item_type + + + + + + <link>http://wpthemetestdata.wordpress.com/2013/05/07/1643/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>a11yteam</dc:creator> + <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1643</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1643</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1643</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>http://wpthemetestdata.wordpress.com/2013/05/07/1644/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>a11yteam</dc:creator> + <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1644</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1644</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1644</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[701]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>http://wpthemetestdata.wordpress.com/2013/05/07/1645/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>a11yteam</dc:creator> + <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1645</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1645</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1645</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>http://wpthemetestdata.wordpress.com/2013/05/07/1646/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>a11yteam</dc:creator> + <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1646</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1646</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1646</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>http://wpthemetestdata.wordpress.com/2013/05/07/1647/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>a11yteam</dc:creator> + <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1647</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1647</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1647</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>http://wpthemetestdata.wordpress.com/2013/05/07/1648/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>a11yteam</dc:creator> + <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1648</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1648</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1648</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>http://wpthemetestdata.wordpress.com/2013/05/07/1649/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>a11yteam</dc:creator> + <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1649</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1649</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1649</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>http://wpthemetestdata.wordpress.com/2013/05/07/1650/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>a11yteam</dc:creator> + <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1650</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1650</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1650</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>http://wpthemetestdata.wordpress.com/2013/05/07/1651/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>a11yteam</dc:creator> + <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1651</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1651</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1651</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>10</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[174]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>http://wpthemetestdata.wordpress.com/2013/05/07/1652/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>a11yteam</dc:creator> + <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1652</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1652</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1652</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>11</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[173]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>http://wpthemetestdata.wordpress.com/2013/05/07/1653/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>a11yteam</dc:creator> + <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1653</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1653</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1653</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>12</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[172]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>http://wpthemetestdata.wordpress.com/2013/05/07/1654/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>a11yteam</dc:creator> + <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1654</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1654</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1654</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>13</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[746]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>http://wpthemetestdata.wordpress.com/2013/05/07/1655/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>a11yteam</dc:creator> + <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1655</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1655</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1655</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>14</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[748]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>http://wpthemetestdata.wordpress.com/2013/05/07/1656/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>a11yteam</dc:creator> + <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1656</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1656</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1656</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>15</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[742]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>http://wpthemetestdata.wordpress.com/2013/05/07/1657/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>a11yteam</dc:creator> + <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1657</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1657</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1657</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>16</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[744]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>http://wpthemetestdata.wordpress.com/2013/05/07/1658/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>a11yteam</dc:creator> + <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1658</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1658</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1658</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>17</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>http://wpthemetestdata.wordpress.com/2013/05/07/1659/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>a11yteam</dc:creator> + <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1659</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1659</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1659</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>18</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[733]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>http://wpthemetestdata.wordpress.com/2013/05/07/1660/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>a11yteam</dc:creator> + <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1660</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1660</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1660</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>19</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[735]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>dsc20040724_152504_532 + http://wpthemetestdata.wordpress.com/?attachment_id=1686 + Wed, 18 Sep 2013 21:37:05 +0000 + a11yteam + http://wpthemetestdata.files.wordpress.com/2013/09/dsc20040724_152504_532.jpg + + + + 1686 + 2013-09-18 14:37:05 + 2013-09-18 21:37:05 + open + closed + dsc20040724_152504_532 + inherit + 0 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20040724_152504_532.jpg + + + dsc20050604_133440_34211 + http://wpthemetestdata.wordpress.com/?attachment_id=1687 + Wed, 18 Sep 2013 21:37:07 +0000 + a11yteam + http://wpthemetestdata.files.wordpress.com/2013/09/dsc20050604_133440_34211.jpg + + + + 1687 + 2013-09-18 14:37:07 + 2013-09-18 21:37:07 + open + closed + dsc20050604_133440_34211 + inherit + 0 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20050604_133440_34211.jpg + + + 2014-slider-mobile-behavior + http://wpthemetestdata.wordpress.com/?attachment_id=1690 + Wed, 04 Dec 2013 18:08:29 +0000 + a11yteam + http://wpthemetestdata.files.wordpress.com/2013/12/2014-slider-mobile-behavior.mov + + + + 1690 + 2013-12-04 11:08:29 + 2013-12-04 18:08:29 + open + closed + 2014-slider-mobile-behavior + inherit + 0 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/12/2014-slider-mobile-behavior.mov + + + dsc20050315_145007_132 + http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050315_145007_132-2/ + Sun, 05 Jan 2014 18:45:21 +0000 + a11yteam + http://wpthemetestdata.files.wordpress.com/2014/01/dsc20050315_145007_132.jpg + + + + 1691 + 2014-01-05 11:45:21 + 2014-01-05 18:45:21 + open + closed + dsc20050315_145007_132-2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2014/01/dsc20050315_145007_132.jpg + + + spectacles + http://wpthemetestdata.wordpress.com/about/clearing-floats/spectacles-2/ + Sun, 05 Jan 2014 18:45:36 +0000 + a11yteam + http://wpthemetestdata.files.wordpress.com/2014/01/spectacles.gif + + + + 1692 + 2014-01-05 11:45:36 + 2014-01-05 18:45:36 + open + closed + spectacles-2 + inherit + 501 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2014/01/spectacles.gif + + + Post Format: Standard + http://wpthemetestdata.wordpress.com/2010/10/05/post-format-standard/ + Tue, 05 Oct 2010 07:27:25 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/?p=358 + + + +Mrs. Darling first heard of Peter when she was tidying up her children's minds. It is the nightly custom of every good mother after her children are asleep to rummage in their minds and put things straight for next morning, repacking into their proper places the many articles that have wandered during the day. + +If you could keep awake (but of course you can't) you would see your own mother doing this, and you would find it very interesting to watch her. It is quite like tidying up drawers. You would see her on her knees, I expect, lingering humorously over some of your contents, wondering where on earth you had picked this thing up, making discoveries sweet and not so sweet, pressing this to her cheek as if it were as nice as a kitten, and hurriedly stowing that out of sight. When you wake in the morning, the naughtiness and evil passions with which you went to bed have been folded up small and placed at the bottom of your mind and on the top, beautifully aired, are spread out your prettier thoughts, ready for you to put on. + +I don't know whether you have ever seen a map of a person's mind. Doctors sometimes draw maps of other parts of you, and your own map can become intensely interesting, but catch them trying to draw a map of a child's mind, which is not only confused, but keeps going round all the time. There are zigzag lines on it, just like your temperature on a card, and these are probably roads in the island, for the Neverland is always more or less an island, with astonishing splashes of colour here and there, and coral reefs and rakish-looking craft in the offing, and savages and lonely lairs, and gnomes who are mostly tailors, and caves through which a river runs, and princes with six elder brothers, and a hut fast going to decay, and one very small old lady with a hooked nose. It would be an easy map if that were all, but there is also first day at school, religion, fathers, the round pond, needle-work, murders, hangings, verbs that take the dative, chocolate pudding day, getting into braces, say ninety-nine, three-pence for pulling out your tooth yourself, and so on, and either these are part of the island or they are another map showing through, and it is all rather confusing, especially as nothing will stand still. + +Of course the Neverlands vary a good deal. John's, for instance, had a lagoon with flamingoes flying over it at which John was shooting, while Michael, who was very small, had a flamingo with lagoons flying over it. John lived in a boat turned upside down on the sands, Michael in a wigwam, Wendy in a house of leaves deftly sewn together. John had no friends, Michael had friends at night, Wendy had a pet wolf forsaken by its parents, but on the whole the Neverlands have a family resemba11yteam, and if they stood still in a row you could say of them that they have each other's nose, and so forth. On these magic shores children at play are for ever beaching their coracles [simple boat]. We too have been there; we can still hear the sound of the surf, though we shall land no more. + +Of all delectable islands the Neverland is the snuggest and most compact, not large and sprawly, you know, with tedious distances between one adventure and another, but nicely crammed. When you play at it by day with the chairs and table-cloth, it is not in the least alarming, but in the two minutes before you go to sleep it becomes very real. That is why there are night-lights. + +Occasionally in her travels through her children's minds Mrs. Darling found things she could not understand, and of these quite the most perplexing was the word Peter. She knew of no Peter, and yet he was here and there in John and Michael's minds, while Wendy's began to be scrawled all over with him. The name stood out in bolder letters than any of the other words, and as Mrs. Darling gazed she felt that it had an oddly cocky appearance.]]> + + 358 + 2010-10-05 00:27:25 + 2010-10-05 07:27:25 + closed + closed + post-format-standard + publish + 0 + 0 + post + + 0 + + + + + + _wp_old_slug + + + + _wp_old_slug + + + + _wp_old_slug + + + + _wp_old_slug + + + + + Post Format: Gallery + http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/ + Fri, 10 Sep 2010 14:24:14 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/?p=555 + + + +You can use this page to test the Theme's handling of the[gallery] + +shortcode, including the columns parameter, from 1 to 9 columns. Themes are only required to support the default setting (3 columns), so this page is entirely optional. +

    One Column

    +[gallery columns="1"] +

    Two Columns

    +[gallery columns="2"] +

    Three Columns

    +[gallery columns="3"] +

    Four Columns

    +[gallery columns="4"] +

    Five Columns

    +[gallery columns="5"] +

    Six Columns

    +[gallery columns="6"] +

    Seven Columns

    +[gallery columns="7"] +

    Eight Columns

    +[gallery columns="8"] +

    Nine Columns

    +[gallery columns="9"]]]>
    + + 555 + 2010-09-10 07:24:14 + 2010-09-10 14:24:14 + closed + closed + post-format-gallery + publish + 0 + 0 + post + + 0 + + + + + + + _wp_old_slug + + + + _thumbnail_id + + + + _wp_old_slug + + +
    + + Post Format: Aside + http://wpthemetestdata.wordpress.com/2010/05/09/post-format-aside/ + Sun, 09 May 2010 14:51:54 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/?p=559 + + + + 559 + 2010-05-09 07:51:54 + 2010-05-09 14:51:54 + closed + closed + post-format-aside + publish + 0 + 0 + post + + 0 + + + + + + _wp_old_slug + + + + _wp_old_slug + + + + + Post Format: Chat + http://wpthemetestdata.wordpress.com/2010/01/08/post-format-chat/ + Fri, 08 Jan 2010 14:59:31 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/?p=562 + + + + 562 + 2010-01-08 07:59:31 + 2010-01-08 14:59:31 + closed + closed + post-format-chat + publish + 0 + 0 + post + + 0 + + + + + + _wp_old_slug + + + + + Post Format: Link + http://wpthemetestdata.wordpress.com/2010/03/07/post-format-link/ + Sun, 07 Mar 2010 15:06:53 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/?p=565 + + The WordPress Theme Review Team Website]]> + + 565 + 2010-03-07 08:06:53 + 2010-03-07 15:06:53 + closed + closed + post-format-link + publish + 0 + 0 + post + + 0 + + + + + + _wp_old_slug + + + + + Post Format: Image (Linked) + http://wpthemetestdata.wordpress.com/2010/08/06/post-format-image-linked/ + Fri, 06 Aug 2010 15:09:39 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/?p=568 + + chunk of resinous blackboy husk[/caption] +]]> + + 568 + 2010-08-06 08:09:39 + 2010-08-06 15:09:39 + closed + closed + post-format-image-linked + publish + 0 + 0 + post + + 0 + + + + + + _wp_old_slug + + + + _wp_old_slug + + + + + Post Format: Quote + http://wpthemetestdata.wordpress.com/2010/02/05/post-format-quote/ + Fri, 05 Feb 2010 15:13:15 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/?p=575 + + Only one thing is impossible for God: To find any sense in any copyright law on the planet. +Mark Twain]]> + + 575 + 2010-02-05 08:13:15 + 2010-02-05 15:13:15 + closed + closed + post-format-quote + publish + 0 + 0 + post + + 0 + + + + + + _wp_old_slug + + + + + Post Format: Status + http://wpthemetestdata.wordpress.com/2010/04/04/post-format-status/ + Sun, 04 Apr 2010 15:21:24 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/?p=579 + + + + 579 + 2010-04-04 08:21:24 + 2010-04-04 15:21:24 + closed + closed + post-format-status + publish + 0 + 0 + post + + 0 + + + + + + _wp_old_slug + + + + + Page A + http://wpthemetestdata.wordpress.com/page-a/ + Fri, 24 Jun 2011 01:38:52 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/?page_id=733 + + + + 733 + 2011-06-23 18:38:52 + 2011-06-24 01:38:52 + open + closed + page-a + publish + 0 + 10 + page + + 0 + + _wp_page_template + + + + + Page B + http://wpthemetestdata.wordpress.com/page-b/ + Fri, 24 Jun 2011 01:39:14 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/?page_id=735 + + + + 735 + 2011-06-23 18:39:14 + 2011-06-24 01:39:14 + open + closed + page-b + publish + 0 + 11 + page + + 0 + + _wp_page_template + + + + + Level 2a + http://wpthemetestdata.wordpress.com/level-1/level-2a/ + Fri, 24 Jun 2011 02:03:33 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/?page_id=742 + + + + 742 + 2011-06-23 19:03:33 + 2011-06-24 02:03:33 + open + closed + level-2a + publish + 174 + 0 + page + + 0 + + _wp_page_template + + + + + Level 2b + http://wpthemetestdata.wordpress.com/level-1/level-2b/ + Fri, 24 Jun 2011 02:04:03 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/?page_id=744 + + + + 744 + 2011-06-23 19:04:03 + 2011-06-24 02:04:03 + open + closed + level-2b + publish + 174 + 0 + page + + 0 + + _wp_page_template + + + + + Level 3a + http://wpthemetestdata.wordpress.com/level-1/level-2/level-3a/ + Fri, 24 Jun 2011 02:04:24 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/?page_id=746 + + + + 746 + 2011-06-23 19:04:24 + 2011-06-24 02:04:24 + open + closed + level-3a + publish + 173 + 0 + page + + 0 + + _wp_page_template + + + + + Level 3b + http://wpthemetestdata.wordpress.com/level-1/level-2/level-3b/ + Fri, 24 Jun 2011 02:04:46 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/?page_id=748 + + + + 748 + 2011-06-23 19:04:46 + 2011-06-24 02:04:46 + open + closed + level-3b + publish + 173 + 0 + page + + 0 + + _wp_page_template + + + + + Template: Excerpt (Defined) + http://wpthemetestdata.wordpress.com/2012/03/15/template-excerpt-defined/ + Thu, 15 Mar 2012 21:38:08 +0000 + a11yteam + http://wptest.io/demo/?p=993 + + + + 993 + 2012-03-15 14:38:08 + 2012-03-15 21:38:08 + closed + closed + template-excerpt-defined + publish + 0 + 0 + post + + 0 + + + + + + + _wp_old_slug + + + + _wp_old_slug + + + + _publicize_pending + + + + original_post_id + + + + _wp_old_slug + + + + + Template: More Tag + http://wpthemetestdata.wordpress.com/2012/03/15/template-more-tag/ + Thu, 15 Mar 2012 21:41:11 +0000 + a11yteam + http://wptest.io/demo/?p=996 + + more tag. + +Right after this sentence should be a "continue reading" button of some sort. + + + +And this content is after the more tag.]]> + + 996 + 2012-03-15 14:41:11 + 2012-03-15 21:41:11 + closed + closed + template-more-tag + publish + 0 + 0 + post + + 0 + + + + + + + _wp_old_slug + + + + _publicize_pending + + + + original_post_id + + + + _wp_old_slug + + + + + Edge Case: Nested And Mixed Lists + http://wpthemetestdata.wordpress.com/2009/05/15/edge-case-nested-and-mixed-lists/ + Fri, 15 May 2009 21:48:32 +0000 + a11yteam + http://wptest.io/demo/?p=1000 + + +
  • Lists within lists do not break the ordered list numbering order
  • +
  • Your list styles go deep enough.
  • + +

    Ordered - Unordered - Ordered

    +
      +
    1. ordered item
    2. +
    3. ordered item +
        +
      • unordered
      • +
      • unordered +
          +
        1. ordered item
        2. +
        3. ordered item
        4. +
        +
      • +
      +
    4. +
    5. ordered item
    6. +
    7. ordered item
    8. +
    +

    Ordered - Unordered - Unordered

    +
      +
    1. ordered item
    2. +
    3. ordered item +
        +
      • unordered
      • +
      • unordered +
          +
        • unordered item
        • +
        • unordered item
        • +
        +
      • +
      +
    4. +
    5. ordered item
    6. +
    7. ordered item
    8. +
    +

    Unordered - Ordered - Unordered

    +
      +
    • unordered item
    • +
    • unordered item +
        +
      1. ordered
      2. +
      3. ordered +
          +
        • unordered item
        • +
        • unordered item
        • +
        +
      4. +
      +
    • +
    • unordered item
    • +
    • unordered item
    • +
    +

    Unordered - Unordered - Ordered

    +
      +
    • unordered item
    • +
    • unordered item +
        +
      • unordered
      • +
      • unordered +
          +
        1. ordered item
        2. +
        3. ordered item
        4. +
        +
      • +
      +
    • +
    • unordered item
    • +
    • unordered item
    • +
    ]]>
    + + 1000 + 2009-05-15 14:48:32 + 2009-05-15 21:48:32 + closed + closed + edge-case-nested-and-mixed-lists + publish + 0 + 0 + post + + 0 + + + + + + + + _wp_old_slug + + + + _wp_old_slug + + + + _wp_old_slug + + + + _publicize_pending + + + + original_post_id + + + + _wp_old_slug + + +
    + + Template: Featured Image (Horizontal) + http://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-horizontal/ + Thu, 15 Mar 2012 22:15:12 +0000 + a11yteam + http://wptest.io/demo/?p=1011 + + featured image, if the theme supports it. + +Non-square images can provide some unique styling issues. + +This post tests a horizontal featured image.]]> + + 1011 + 2012-03-15 15:15:12 + 2012-03-15 22:15:12 + closed + closed + template-featured-image-horizontal + publish + 0 + 0 + post + + 0 + + + + + + + + + _wp_old_slug + + + + _wp_old_slug + + + + _publicize_pending + + + + _wp_old_slug + + + + _thumbnail_id + + + + standard_seo_post_level_layout + + + + standard_link_url_field + + + + standard_seo_post_meta_description + + + + original_post_id + + + + _wp_old_slug + + + + + Template: Featured Image (Vertical) + http://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-vertical/ + Thu, 15 Mar 2012 22:36:32 +0000 + a11yteam + http://wptest.io/demo/?p=1016 + + featured image, if the theme supports it. + +Non-square images can provide some unique styling issues. + +This post tests a vertical featured image.]]> + + 1016 + 2012-03-15 15:36:32 + 2012-03-15 22:36:32 + closed + closed + template-featured-image-vertical + publish + 0 + 0 + post + + 0 + + + + + + + + + _wp_old_slug + + + + _wp_old_slug + + + + _publicize_pending + + + + _thumbnail_id + + + + standard_seo_post_level_layout + + + + standard_link_url_field + + + + standard_seo_post_meta_description + + + + original_post_id + + + + _wp_old_slug + + + + + Page Image Alignment + http://wpthemetestdata.wordpress.com/about/page-image-alignment/ + Fri, 15 Mar 2013 23:19:23 +0000 + a11yteam + http://wptest.io/demo/?page_id=1080 + + None, Left, Right, and Center. In addition, they also get the options of Thumbnail, Medium, Large & Fullsize. +

    Image Alignment 580x300

    +The image above happens to be centered. + +Image Alignment 150x150The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +Image Alignment 1200x400 + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 300x200 + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And just when you thought we were done, we're going to do them all over again with captions! + +[caption id="attachment_906" align="aligncenter" width="580"]Image Alignment 580x300 Look at 580x300 getting some caption love.[/caption] + +The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky. + +[caption id="attachment_904" align="alignleft" width="150"]Image Alignment 150x150 Itty-bitty caption.[/caption] + +The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +[caption id="attachment_907" align="alignnone" width="1200"]Image Alignment 1200x400 Massive image comment for your eyeballs.[/caption] + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +[caption id="attachment_905" align="alignright" width="300"]Image Alignment 300x200 Feels good to be right all the time.[/caption] + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked!]]>
    + + 1133 + 2013-03-15 18:19:23 + 2013-03-15 23:19:23 + open + open + page-image-alignment + publish + 2 + 0 + page + + 0 + + _publicize_pending + + + + _wp_page_template + + + + original_post_id + + + + _wp_old_slug + + +
    + + Page Markup And Formatting + http://wpthemetestdata.wordpress.com/about/page-markup-and-formatting/ + Fri, 15 Mar 2013 23:20:05 +0000 + a11yteam + http://wptest.io/demo/?page_id=1083 + + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +
    People think focus means saying yes to the thing you've got to focus on. But that's not what it means at all. It means saying no to the hundred other good ideas that there are. You have to pick carefully. I'm actually as proud of the things we haven't done as the things I have done. Innovation is saying no to 1,000 things. Steve Jobs - Apple Worldwide Developers' Conference, 1997
    +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalaryComments
    Jane$1Because that's all Steve Job' needed for a salary.
    John$100KFor all the blogging he does.
    Jane$100MPictures are worth a thousand words, right? So Tom x 1,000.
    Jane$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one +
        +
      1. List item one +
          +
        1. List item one
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag + +The acronym ftw stands for "for the win". + +Big Tag + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strikeout text, but this tag is no longer supported in HTML5 (use the <strike> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag styles large blocks of code. +
    .post-title {
    +	margin: 0 0 5px;
    +	font-weight: bold;
    +	font-size: 38px;
    +	line-height: 1.2;
    +}
    +Quote Tag + +Developers, developers, developers... --Steve Ballmer + +Strong Tag + +This tag shows bold text. + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Isaac Newton's E = MC2, which should lift the 2 up. + +Teletype Tag + +This rarely used tag emulates teletype text, which is usually styled like the <code> tag. + +Variable Tag + +This allows you to denote variables.]]>
    + + 1134 + 2013-03-15 18:20:05 + 2013-03-15 23:20:05 + open + open + page-markup-and-formatting + publish + 2 + 0 + page + + 0 + + _publicize_pending + + + + _wp_page_template + + + + standard_seo_post_meta_description + + + + original_post_id + + + + _wp_old_slug + + +
    + + Template: Comments + http://wpthemetestdata.wordpress.com/2012/01/03/template-comments/ + Tue, 03 Jan 2012 17:11:37 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/2007/09/04/comment-test/ + + +
  • Threaded comments up to 10 levels deep
  • +
  • Paginated comments (set Settings > Discussion > Break comments into pages to 5 top level comments per page)
  • +
  • Comment markup / formatting
  • +
  • Comment images
  • +
  • Comment videos
  • +
  • Author comments
  • +
  • Gravatars and default fallbacks
  • +]]>
    + + 1148 + 2012-01-03 10:11:37 + 2012-01-03 17:11:37 + open + closed + template-comments + publish + 0 + 0 + post + + 0 + + + + + + _publicize_pending + + + + _wp_old_slug + + + + original_post_id + + + + _wp_old_slug + + + + _wp_old_slug + + + + 881 + + example@example.org + http://example.org/ + 59.167.157.3 + 2012-09-03 10:18:04 + 2012-09-03 17:18:04 + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +
    People think focus means saying yes to the thing you've got to focus on. But that's not what it means at all. It means saying no to the hundred other good ideas that there are. You have to pick carefully. I'm actually as proud of the things we haven't done as the things I have done. Innovation is saying no to 1,000 things. Steve Jobs - Apple Worldwide Developers' Conference, 1997
    +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalaryComments
    John Saddington$1Because that's all Steve Job' needed for a salary.
    Tom McFarlin$100KFor all the blogging he does.
    Jared Erickson$100MPictures are worth a thousand words, right? So Tom x 1,000.
    Chris Ames$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one +
        +
      1. List item one +
          +
        1. List item one
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag + +The acronym ftw stands for "for the win". + +Big Tag + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strikeout text, but this tag is no longer supported in HTML5 (use the <strike> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag styles large blocks of code. +
    .post-title {
    +  margin: 0 0 5px;
    +  font-weight: bold;
    +  font-size: 38px;
    +  line-height: 1.2;
    +}
    + +Quote Tag + +Developers, developers, developers... --Steve Ballmer + +Strong Tag + +This tag shows bold text. + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Isaac Newton's E = MC2, which should lift the 2 up. + +Teletype Tag + +This rarely used tag emulates teletype text, which is usually styled like the <code> tag. + +Variable Tag + +This allows you to denote variables.]]>
    + 1 + + 0 + 0 +
    + + 899 + + fake@email.com + + 67.3.69.40 + 2013-03-11 23:45:54 + 2013-03-12 04:45:54 + Gravatar associated with it. + They did not speify a website, so there should be no link to it in the comment. +]]> + 1 + + 0 + 0 + + + 900 + + example@example.org + http://example.org/ + 204.54.106.1 + 2013-03-12 13:17:35 + 2013-03-12 20:17:35 + + 1 + + 0 + 0 + + + 901 + + example@example.org + http://example.org + 24.126.245.62 + 2013-03-14 07:53:26 + 2013-03-14 14:53:26 + + 1 + + 0 + 0 + + + 903 + + example@example.org + http://example.org/ + 24.126.245.62 + 2013-03-14 07:56:46 + 2013-03-14 14:56:46 + + 1 + + 0 + 24783058 + + + 904 + + example@example.org + http://example.org/ + 24.126.245.62 + 2013-03-14 07:57:01 + 2013-03-14 14:57:01 + + 1 + + 0 + 0 + + + 905 + + example@example.org + http://example.org/ + 24.126.245.62 + 2013-03-14 08:01:21 + 2013-03-14 15:01:21 + + 1 + + 904 + 0 + + + 906 + + example@example.org + http://example.org/ + 24.126.245.62 + 2013-03-14 08:02:06 + 2013-03-14 15:02:06 + + 1 + + 905 + 0 + + + 907 + + example@example.org + http://example.org/ + 24.126.245.62 + 2013-03-14 08:03:22 + 2013-03-14 15:03:22 + + 1 + + 906 + 0 + + + 910 + + example@example.org + http://example.org/ + 24.126.245.62 + 2013-03-14 08:10:29 + 2013-03-14 15:10:29 + + 1 + + 907 + 24783058 + + + 911 + + example@example.org + http://example.org/ + 24.126.245.62 + 2013-03-14 08:12:16 + 2013-03-14 15:12:16 + + 1 + + 910 + 0 + + + 912 + + example@example.org + http://example.org/ + 24.126.245.62 + 2013-03-14 08:12:58 + 2013-03-14 15:12:58 + + 1 + + 911 + 0 + + + 913 + + example@example.org + http://example.org/ + 24.126.245.62 + 2013-03-14 08:13:42 + 2013-03-14 15:13:42 + + 1 + + 912 + 0 + + + 914 + + example@example.org + http://example.org/ + 24.126.245.62 + 2013-03-14 08:14:13 + 2013-03-14 15:14:13 + + 1 + + 913 + 0 + + + 915 + + example@example.org + http://example.org/ + 24.126.245.62 + 2013-03-14 08:14:47 + 2013-03-14 15:14:47 + + 1 + + 914 + 24783058 + + + 917 + + example@example.org + http://example.org/ + 24.126.245.62 + 2013-03-14 09:56:43 + 2013-03-14 16:56:43 + + 1 + + 0 + 0 + + + 918 + + example@example.org + http://example.org/ + 24.126.245.62 + 2013-03-14 11:23:24 + 2013-03-14 18:23:24 + + 1 + + 0 + 0 + + + 919 + + example@example.org + http://example.org/ + 24.126.245.62 + 2013-03-14 11:27:54 + 2013-03-14 18:27:54 + + 1 + + 0 + 0 + + + 920 + + example@example.org + http://example.org/ + 24.126.245.62 + 2013-03-14 11:30:33 + 2013-03-14 18:30:33 + + 1 + + 0 + 24783058 + +
    + + Template: Pingbacks And Trackbacks + http://wpthemetestdata.wordpress.com/2012/01/01/template-pingbacks-an-trackbacks/ + Sun, 01 Jan 2012 17:17:18 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/2007/09/04/many-trackbacks/ + + +
  • Above the comments
  • +
  • Below the comments
  • +
  • Included within the normal flow of comments
  • +]]>
    + + 1149 + 2012-01-01 10:17:18 + 2012-01-01 17:17:18 + closed + closed + template-pingbacks-an-trackbacks + publish + 0 + 0 + post + + 0 + + + + + + + + _wp_old_slug + + + + _publicize_pending + + + + _wp_old_slug + + + + original_post_id + + + + _wp_old_slug + + + + 921 + + + http://tellyworth.wordpress.com/2007/11/21/ping-1/ + 72.232.101.12 + 2007-11-21 11:31:12 + 2007-11-21 01:31:12 + + 1 + pingback + 0 + 0 + + + 922 + + + http://tellyworth.wordpress.com/2007/11/21/ping-2-with-a-much-longer-title-than-the-previous-ping-which-was-called-ping-1/ + 72.232.101.12 + 2007-11-21 11:35:47 + 2007-11-21 01:35:47 + + 1 + pingback + 0 + 0 + + + 923 + + + http://tellyworth.wordpress.com/2007/11/21/ping-4/ + 72.232.101.12 + 2007-11-21 11:39:25 + 2007-11-21 01:39:25 + + 1 + pingback + 0 + 0 + + + 924 + + + http://tellyworth.wordpress.com/2007/11/21/ping-3/ + 72.232.101.12 + 2007-11-21 11:38:22 + 2007-11-21 01:38:22 + + 1 + pingback + 0 + 0 + + + 925 + + example@example.org + http://example.org/ + 146.214.103.251 + 2010-06-11 15:27:04 + 2010-06-11 22:27:04 + + 1 + + 0 + 0 + +
    + + Template: Comments Disabled + http://wpthemetestdata.wordpress.com/2012/01/02/template-comments-disabled/ + Mon, 02 Jan 2012 17:21:15 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/2007/09/04/no-comments/ + + should display pingbacks and trackbacks.]]> + + 1150 + 2012-01-02 10:21:15 + 2012-01-02 17:21:15 + closed + closed + template-comments-disabled + publish + 0 + 0 + post + + 0 + + + + + + _publicize_pending + + + + _wp_old_slug + + + + original_post_id + + + + _wp_old_slug + + + + _wp_old_slug + + + + + Edge Case: Many Tags + http://wpthemetestdata.wordpress.com/2009/06/01/edge-case-many-tags/ + Mon, 01 Jun 2009 08:00:34 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/2007/11/24/many-tags/ + + + + 1151 + 2009-06-01 01:00:34 + 2009-06-01 08:00:34 + closed + closed + edge-case-many-tags + publish + 0 + 0 + post + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + _publicize_pending + + + + original_post_id + + + + _wp_old_slug + + + + _wp_old_slug + + + + + Edge Case: Many Categories + http://wpthemetestdata.wordpress.com/2009/07/02/edge-case-many-categories/ + Thu, 02 Jul 2009 09:00:03 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/2007/11/24/many-categories/ + + + + 1152 + 2009-07-02 02:00:03 + 2009-07-02 09:00:03 + closed + closed + edge-case-many-categories + publish + 0 + 0 + post + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + _wp_old_slug + + + + _publicize_pending + + + + original_post_id + + + + _wp_old_slug + + + + + Scheduled + http://wpthemetestdata.wordpress.com/2020/01/01/scheduled/ + Wed, 01 Jan 2020 19:00:18 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/?p=418 + + + + 1153 + 2020-01-01 12:00:18 + 2020-01-01 19:00:18 + closed + closed + scheduled + future + 0 + 0 + post + + 0 + + + + original_post_id + + + + _wp_old_slug + + + + + Post Format: Image + http://wpthemetestdata.wordpress.com/2010/08/08/post-format-image/ + Sun, 08 Aug 2010 12:00:39 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/?p=568 + + ]]> + + 1158 + 2010-08-08 05:00:39 + 2010-08-08 12:00:39 + closed + closed + post-format-image + publish + 0 + 0 + post + + 0 + + + + + + _publicize_pending + + + + _wp_old_slug + + + + _wp_old_slug + + + + original_post_id + + + + _wp_old_slug + + + + + Post Format: Video (YouTube) + http://wpthemetestdata.wordpress.com/2010/06/02/post-format-video-youtube/ + Wed, 02 Jun 2010 09:00:58 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/?p=582 + + WordPress Embeds.]]> + + 1161 + 2010-06-02 02:00:58 + 2010-06-02 09:00:58 + closed + closed + post-format-video-youtube + publish + 0 + 0 + post + + 0 + + + + + _publicize_pending + + + + _wp_old_slug + + + + _wp_old_slug + + + + original_post_id + + + + _wp_old_slug + + + + + Post Format: Image (Caption) + http://wpthemetestdata.wordpress.com/2010/08/07/post-format-image-caption/ + Sat, 07 Aug 2010 13:00:19 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/?p=674 + + Bell on Wharf Bell on wharf in San Francisco[/caption]]]> + + 1163 + 2010-08-07 06:00:19 + 2010-08-07 13:00:19 + closed + closed + post-format-image-caption + publish + 0 + 0 + post + + 0 + + + + + + + _publicize_pending + + + + _wp_old_slug + + + + original_post_id + + + + _wp_old_slug + + + + _thumbnail_id + + + + _format_url + + + + _format_link_url + + + + _format_quote_source_url + + + + _format_quote_source_name + + + + _format_image + + + + _format_audio_embed + + + + _format_video_embed + + + + + Draft + http://wpthemetestdata.wordpress.com/?p=1164 + Tue, 09 Apr 2013 18:20:39 +0000 + a11yteam + http://wptest.io/demo/?p=922 + + + + 1164 + 2013-04-09 11:20:39 + 2013-04-09 18:20:39 + closed + closed + + draft + 0 + 0 + post + + 0 + + + + standard_seo_post_level_layout + + + + standard_link_url_field + + + + standard_seo_post_meta_description + + + + original_post_id + + + + _wp_old_slug + + + + + Template: Password Protected (the password is "enter") + http://wpthemetestdata.wordpress.com/2012/01/04/template-password-protected/ + Wed, 04 Jan 2012 16:38:05 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/2007/09/04/test-with-secret-password/ + + + + 1168 + 2012-01-04 09:38:05 + 2012-01-04 16:38:05 + closed + closed + template-password-protected + publish + 0 + 0 + post + enter + 0 + + + + + + _wp_old_slug + + + + _publicize_pending + + + + _wp_old_slug + + + + original_post_id + + + + _wp_old_slug + + + + 926 + + example@example.org + http://example.org/ + 24.126.245.62 + 2013-03-14 11:56:08 + 2013-03-14 18:56:08 + + 1 + + 0 + 0 + + + + + <link>http://wpthemetestdata.wordpress.com/2009/09/05/edge-case-no-title/</link> + <pubDate>Sat, 05 Sep 2009 16:00:23 +0000</pubDate> + <dc:creator>a11yteam</dc:creator> + <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/2007/09/04/14/</guid> + <description/> + <content:encoded><![CDATA[This post has no title, but it still must link to the single post view somehow. + +This is typically done by placing the permalink on the post date.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1169</wp:post_id> + <wp:post_date>2009-09-05 09:00:23</wp:post_date> + <wp:post_date_gmt>2009-09-05 16:00:23</wp:post_date_gmt> + <wp:comment_status>closed</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>edge-case-no-title</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>0</wp:menu_order> + <wp:post_type>post</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="post_tag" nicename="edge-case"><![CDATA[edge case]]></category> + <category domain="category" nicename="edge-case-2"><![CDATA[Edge Case]]></category> + <category domain="post_tag" nicename="layout"><![CDATA[layout]]></category> + <category domain="post_tag" nicename="title"><![CDATA[title]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_wp_old_slug</wp:meta_key> + <wp:meta_value><![CDATA[14]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>original_post_id</wp:meta_key> + <wp:meta_value><![CDATA[133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_wp_old_slug</wp:meta_key> + <wp:meta_value><![CDATA[133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_wp_old_slug</wp:meta_key> + <wp:meta_value><![CDATA[no-title-2]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>Edge Case: No Content + http://wpthemetestdata.wordpress.com/2009/08/06/edge-case-no-content/ + Thu, 06 Aug 2009 16:39:56 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/2007/09/04/this-post-has-no-body/ + + + + 1170 + 2009-08-06 09:39:56 + 2009-08-06 16:39:56 + closed + closed + edge-case-no-content + publish + 0 + 0 + post + + 0 + + + + + + _publicize_pending + + + + _wp_old_slug + + + + original_post_id + + + + _wp_old_slug + + + + _wp_old_slug + + + + 927 + + example@example.org + http://example.org/ + 24.126.245.62 + 2013-03-14 12:35:07 + 2013-03-14 19:35:07 + + 1 + + 0 + 0 + + + + Template: Paginated + http://wpthemetestdata.wordpress.com/2012/01/08/template-paginated/ + Sun, 08 Jan 2012 17:00:20 +0000 + a11yteam + http://noeltest.wordpress.com/?p=188 + + + +Post Page 2 + + + +Post Page 3]]> + + 1171 + 2012-01-08 10:00:20 + 2012-01-08 17:00:20 + closed + closed + template-paginated + publish + 0 + 0 + post + + 0 + + + + + + + _publicize_pending + + + + _wp_old_slug + + + + original_post_id + + + + _wp_old_slug + + + + _wp_old_slug + + + + + Markup: Title With Markup + http://wpthemetestdata.wordpress.com/2013/01/05/markup-title-with-markup/ + Sat, 05 Jan 2013 17:00:49 +0000 + a11yteam + http://wptest.io/demo/?p=861 + + +
  • The post title renders the word "with" in italics and the word "markup" in bold.
  • +
  • The post title markup should be removed from the browser window / tab.
  • +]]>
    + + 1173 + 2013-01-05 10:00:49 + 2013-01-05 17:00:49 + closed + closed + markup-title-with-markup + publish + 0 + 0 + post + + 0 + + + + + + _publicize_pending + + + + original_post_id + + + + _wp_old_slug + + + + _wp_old_slug + + +
    + + Markup: Title With Special Characters + http://wpthemetestdata.wordpress.com/2013/01/05/title-with-special-characters/ + Sat, 05 Jan 2013 18:00:20 +0000 + a11yteam + http://wptest.io/demo/?p=867 + + Latin Character Tests +This is a test to see if the fonts used in this theme support basic Latin characters. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    !"#$%&'()*
    +,-./01234
    56789:;>=<
    ?@ABCDEFGH
    IJKLMNOPQR
    STUVWXYZ[\
    ]^_`abcdef
    ghijklmnop
    qrstuvwxyz
    {|}~
    ]]>
    + + 1174 + 2013-01-05 11:00:20 + 2013-01-05 18:00:20 + closed + closed + title-with-special-characters + publish + 0 + 0 + post + + 0 + + + + + + + _publicize_pending + + + + original_post_id + + + + _wp_old_slug + + +
    + + Antidisestablishmentarianism + http://wpthemetestdata.wordpress.com/2009/10/05/title-should-not-overflow-the-content-area/ + Mon, 05 Oct 2009 19:00:59 +0000 + a11yteam + http://wptest.io/demo/?p=877 + + Title should not overflow the content area + +A few things to check for: +
      +
    • Non-breaking text in the title, content, and comments should have no adverse effects on layout or functionality.
    • +
    • Check the browser window / tab title.
    • +
    • If you are a plugin or widget developer, check that this text does not break anything.
    • +
    + +The following CSS properties will help you support non-breaking text. + +
    -ms-word-wrap: break-word;
    +word-wrap: break-word;
    + ]]>
    + + 1175 + 2009-10-05 12:00:59 + 2009-10-05 19:00:59 + closed + closed + title-should-not-overflow-the-content-area + publish + 0 + 0 + post + + 0 + + + + + + + + + _wp_old_slug + + + + _wp_old_slug + + + + _publicize_pending + + + + _wp_old_slug + + + + original_post_id + + + + _wp_old_slug + + +
    + + Markup: Text Alignment + http://wpthemetestdata.wordpress.com/2013/01/09/markup-text-alignment/ + Wed, 09 Jan 2013 16:00:39 +0000 + a11yteam + http://wptest.io/demo/?p=895 + + Default +This is a paragraph. It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love. Completely neutral and not picking a side or sitting on the fence. It just is. It just freaking is. It likes where it is. It does not feel compelled to pick a side. Leave him be. It will just be better that way. Trust me. +

    Left Align

    +

    This is a paragraph. It is left aligned. Because of this, it is a bit more liberal in it's views. It's favorite color is green. Left align tends to be more eco-friendly, but it provides no concrete evidence that it really is. Even though it likes share the wealth evenly, it leaves the equal distribution up to justified alignment.

    + +

    Center Align

    +

    This is a paragraph. It is center aligned. Center is, but nature, a fence sitter. A flip flopper. It has a difficult time making up its mind. It wants to pick a side. Really, it does. It has the best intentions, but it tends to complicate matters more than help. The best you can do is try to win it over and hope for the best. I hear center align does take bribes.

    + +

    Right Align

    +

    This is a paragraph. It is right aligned. It is a bit more conservative in it's views. It's prefers to not be told what to do or how to do it. Right align totally owns a slew of guns and loves to head to the range for some practice. Which is cool and all. I mean, it's a pretty good shot from at least four or five football fields away. Dead on. So boss.

    + +

    Justify Align

    +

    This is a paragraph. It is justify aligned. It gets really mad when people associate it with Justin Timberlake. Typically, justified is pretty straight laced. It likes everything to be in it's place and not all cattywampus like the rest of the aligns. I am not saying that makes it better than the rest of the aligns, but it does tend to put off more of an elitist attitude.

    ]]>
    + + 1176 + 2013-01-09 09:00:39 + 2013-01-09 16:00:39 + closed + closed + markup-text-alignment + publish + 0 + 0 + post + + 0 + + + + + + + _wp_old_slug + + + + _publicize_pending + + + + original_post_id + + + + _wp_old_slug + + +
    + + Markup: Image Alignment + http://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/ + Fri, 11 Jan 2013 03:15:40 +0000 + a11yteam + http://wptest.io/demo/?p=903 + + None, Left, Right, and Center. In addition, they also get the options of Thumbnail, Medium, Large & Fullsize. +

    Image Alignment 580x300

    +The image above happens to be centered. + +Image Alignment 150x150The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +Image Alignment 1200x400 + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 300x200 + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And just when you thought we were done, we're going to do them all over again with captions! + +[caption id="attachment_906" align="aligncenter" width="580"]Image Alignment 580x300 Look at 580x300 getting some caption love.[/caption] + +The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky. + +[caption id="attachment_904" align="alignleft" width="150"]Image Alignment 150x150 Itty-bitty caption.[/caption] + +The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +[caption id="attachment_907" align="alignnone" width="1200"]Image Alignment 1200x400 Massive image comment for your eyeballs.[/caption] + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +[caption id="attachment_905" align="alignright" width="300"]Image Alignment 300x200 Feels good to be right all the time.[/caption] + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked!]]>
    + + 1177 + 2013-01-10 20:15:40 + 2013-01-11 03:15:40 + closed + closed + markup-image-alignment + publish + 0 + 0 + post + + 0 + + + + + + + + + _thumbnail_id + + + + _wp_old_slug + + + + _publicize_pending + + + + standard_seo_post_level_layout + + + + standard_link_url_field + + + + standard_seo_post_meta_description + + + + original_post_id + + + + _wp_old_slug + + +
    + + Markup: HTML Tags and Formatting + http://wpthemetestdata.wordpress.com/2013/01/11/markup-html-tags-and-formatting/ + Sat, 12 Jan 2013 03:22:19 +0000 + a11yteam + http://wptest.io/demo/?p=919 + + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +
    People think focus means saying yes to the thing you've got to focus on. But that's not what it means at all. It means saying no to the hundred other good ideas that there are. You have to pick carefully. I'm actually as proud of the things we haven't done as the things I have done. Innovation is saying no to 1,000 things.
    +Steve Jobs - Apple Worldwide Developers' Conference, 1997 +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalaryComments
    John Doe$1Because that's all Steve Jobs needed for a salary.
    Jane Doe$100KFor all the blogging she does.
    Fred Bloggs$100MPictures are worth a thousand words, right? So Jane x 1,000.
    Jane Bloggs$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one +
        +
      1. List item one +
          +
        1. List item one
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link to Apple.com. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strikeout text, but this tag is no longer supported in HTML5 (use the <strike> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag styles large blocks of code. +
    .post-title {
    +	margin: 0 0 5px;
    +	font-weight: bold;
    +	font-size: 38px;
    +	line-height: 1.2;
    +	and here's a line of some really, really, really, really long text, just to see how the PRE tag handles it and to find out how it overflows;
    +}
    +Quote Tag + +Developers, developers, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) + +This tag shows strike-through text + +Strong Tag + +This tag shows bold text. + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Isaac Newton's E = MC2, which should lift the 2 up. + +Teletype Tag (deprecated in HTML5) + +This rarely used tag emulates teletype text, which is usually styled like the <code> tag. + +Variable Tag + +This allows you to denote variables.]]>
    + + 1178 + 2013-01-11 20:22:19 + 2013-01-12 03:22:19 + closed + closed + markup-html-tags-and-formatting + publish + 0 + 0 + post + + 0 + + + + + + + + _wp_old_slug + + + + _publicize_pending + + + + standard_seo_post_level_layout + + + + standard_link_url_field + + + + standard_seo_post_meta_description + + + + original_post_id + + + + _wp_old_slug + + +
    + + Media: Twitter Embeds + http://wpthemetestdata.wordpress.com/2011/03/15/media-twitter-embeds/ + Tue, 15 Mar 2011 22:47:16 +0000 + a11yteam + http://wptest.io/demo/?p=1027 + + Twitter Embeds feature.]]> + + 1179 + 2011-03-15 15:47:16 + 2011-03-15 22:47:16 + closed + closed + media-twitter-embeds + publish + 0 + 0 + post + + 0 + + + + + + + _publicize_pending + + + + standard_seo_post_level_layout + + + + standard_link_url_field + + + + standard_seo_post_meta_description + + + + _wp_old_slug + + + + original_post_id + + + + _wp_old_slug + + + + + Template: Sticky + http://wpthemetestdata.wordpress.com/2012/01/07/template-sticky/ + Sat, 07 Jan 2012 14:07:21 +0000 + a11yteam + http://wptest.io/demo/?p=1241 + + +
  • The sticky post should be distinctly recognizable in some way in comparison to normal posts. You can style the .sticky class if you are using the post_class() function to generate your post classes, which is a best practice.
  • +
  • They should show at the very top of the blog index page, even though they could be several posts back chronologically.
  • +
  • They should still show up again in their chronologically correct postion in time, but without the sticky indicator.
  • +
  • If you have a plugin or widget that lists popular posts or comments, make sure that this sticky post is not always at the top of those lists unless it really is popular.
  • +]]>
    + + 1241 + 2012-01-07 07:07:21 + 2012-01-07 14:07:21 + closed + closed + template-sticky + publish + 0 + 0 + post + + 1 + + + + + _publicize_pending + + + + standard_seo_post_level_layout + + + + standard_link_url_field + + + + standard_seo_post_meta_description + + + + original_post_id + + + + _wp_old_slug + + + + _wp_old_slug + + +
    + + Template: Excerpt (Generated) + http://wpthemetestdata.wordpress.com/2012/03/14/template-excerpt-generated/ + Wed, 14 Mar 2012 16:49:22 +0000 + a11yteam + http://wpthemetestdata.wordpress.com/?p=1446 + + + + 1446 + 2012-03-14 09:49:22 + 2012-03-14 16:49:22 + closed + closed + template-excerpt-generated + publish + 0 + 0 + post + + 0 + + + + + + + _publicize_pending + + + + + Block category: Common + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-common/ + Fri, 02 Nov 2018 16:20:28 +0000 + >themereviewteam + https://wpthemetestdata.wordpress.com/?p=1730 + + +

    The Common category includes the following blocks: Paragraph, image, headings, list, gallery, quote, audio, cover, video.

    + + + +

    The paragraph block is the default block type.  It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love.

    + + + +

    This paragraph is left aligned.

    + + + +

    This italic paragraph is right aligned.

    + + + +

    Neither of these paragraphs care about politics, but this one is bold, medium sized and has a drop cap.

    + + + +

    This paragraph is centered.

    + + + +

    This paragraph prefers Jazz over Justin Timberlake. It also uses the small font size.

    + + + +

    This paragraph has something important to say:  It has a large font size, which defaults to 36px.

    + + + +

    The huge text size defaults to 46px, but the size can be customized.

    + + + +

    This paragraph is colorful, with a red background and white text. Colored blocks should have a high enough contrast, so that the text is readable.

    + + + +

    Below this block, you will see a single image.

    + + + +
    Image Alignment 150x150
    + + + +

    H1 Heading

    + + + +

    H2 Heading

    + + + +

    H3 Heading

    + + + +

    H4 Heading

    + + + +
    H5 Heading
    + + + +
    H6 Heading
    + + + +

    Ordered list

    + + + +
    1. The software should be licensed under the GNU Public License.
    2. The software should be freely available to anyone to use for any purpose, and without permission.
    3. The software should be open to modifications.
      1. Any modifications should be freely distributable at no cost and without permission from its creators.
    4. The software should provide a framework for translation to make it globally accessible to speakers of all languages.
    5. The software should provide a framework for extensions so modifications and enhancements can be made without modifying core code
    + + + +

    Unordered list

    + + + +
    • One
    • Two
    • Three
      • Four
    • Five
    + + + + + + + +

    Quote

    Cite
    + + + +
    + + + +

    Cover block with background image

    + + + +

    The file block has a setting that lets us show or hide a download button with editable text:

    + + + + + + + + + + + +

    Video blocks have settings for showing and hiding the playback controls. Use autoplay and playback controls responsibly.

    + + + +
    This is a video block caption.
    + + + +

    The video block below is muted and has a poster image that displays before the video starts:

    + + + +
    + +]]>
    + + 1730 + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + +
    + + Block category: Formatting + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-formatting/ + Fri, 02 Nov 2018 16:41:42 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1732 + + +

    The formatting category includes the following blocks:

    + + + +
    The code block
    +<?php echo 'Hello World'; ?>
    +
    + + +

    The classic block

    + + +The custom HTML block + + + +
    The preformatted block.

    The Road Not Taken

    Robert Frost
    Two roads diverged in a yellow wood,
    And sorry I could not travel both (\_/)
    And be one traveler, long I stood (='.'=)
    And looked down one as far as I could (")_(")
    To where it bent in the undergrowth;

    Then took the other, as just as fair,
    And having perhaps the better claim, |\_/|
    Because it was grassy and wanted wear; / @ @ \
    Though as for that the passing there ( > º < )
    Had worn them really about the same, `>>x<<´
    / O \
    And both that morning equally lay
    In leaves no step had trodden black.
    Oh, I kept the first for another day!
    Yet knowing how way leads on to way,
    I doubted if I should ever come back.
    I shall be telling this with a sigh
    Somewhere ages and ages hence:
    Two roads diverged in a wood, and I—
    I took the one less traveled by,
    And that has made all the difference.



    and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    + + + +

    The pull quote

    Theme Reviewer
    + + + +
    The table blockThis is the default style.
    The cell next to this is empty.
    Cell #5
    Cell #6
    + + + +
    This is the striped style.This row should have a background color.
    The cell next to this is empty.

    This table has fixed width table cells.

    Make sure that the text wraps correctly.

    + + + +
    The Verse block

    A block for haiku?
    Why not?
    Blocks for all the things!
    +]]>
    + + 1732 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block category: Layout Elements + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-layout-elements/ + Fri, 02 Nov 2018 16:44:37 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1734 + + +

    The Layout Elements category includes the following blocks: Button, Columns, Media & Text, separator, spacer, read more, and page break.

    + + + + + + + +
    +
    +

    The columns:

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    +
    + + + +
    Boardwalk
    +

    Media &Text

    + + + +

    For displaying media and text next to each other. By default, the media is to the left.

    +
    + + + +
    Golden Gate Bridge
    +

    This time our block is full width, and the image is to the right.

    + + + +

    The background color is a pale blue. 

    + + + +

    Test to make sure that the editor and the front match. To test the Stack on mobile setting, reduce the browser window width.

    + + + +

    The control these settings, the block uses the css classes "has-media-on-the-right" and "is-stacked-on-mobile".

    +
    + + + +

    The separator has three styles: short line, wide line, and dots.

    + + + +
    + + + +
    + + + +
    + + + +

    The spacer block has a default height of 100 pixels:

    + + + + + + + +

    The read more block should be right below this text:

    + + + + + + + +

    And finally, the page break:

    + + + + + + + +

    This paragraph block is on page two, after the page break.

    +]]>
    + + 1734 + + + + + + + 0 + 0 + + + 0 + +
    + + Block category: Embeds + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-embeds/ + Fri, 02 Nov 2018 16:51:55 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1738 + + + +

    This post tests various embed blocks:

    + + + +
    +https://twitter.com/WordPress/status/1057136472321613824 +
    Twitter,  wide width
    + + + +
    +https://youtu.be/ex8fMxXJDJw +
    YouTube
    + + + +
    +https://www.facebook.com/6427302910/posts/10156380423617911/ +
    + + + +
    +https://www.instagram.com/p/BpmueLLgEn_/?utm_source=ig_share_sheet&igshid=1hcxphic7p9e2 +
    + + + +
    +https://wordpress.tv/2018/10/14/kjell-reigstad-allan-cole-how-we-made-our-first-gutenberg-powered-theme/ +
    WordPress TV, full width
    + + + +

    +]]>
    + + 1738 + + + + + + + 0 + 0 + + + 0 + + + + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + + + + + + + + + + ]]> + + + + + + + +

    Many of the WordPress contribution teams have been working hard on the new WordPress editor, and the tools, services,...

    Publicerat av WordPress Måndag 3 september 2018
    ]]>
    +
    + + + + + + + ]]> + + + + + + + + ]]> + + + + + + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + + + + + + ]]> + + + + + + + +

    Many of the WordPress contribution teams have been working hard on the new WordPress editor, and the tools, services,...

    Publicerat av WordPress Måndag 3 september 2018
    ]]>
    +
    + + + + + + + ]]> + + + + + + + + ]]> + + + + + +
    + + Block category: Widgets + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-widgets/ + Fri, 02 Nov 2018 16:45:35 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1736 + + + +This is a shortcode widget. + + + +

    The Archive Widget:

    + + + + + + +

    The same Archive widget but as a dropdown:

    + + + + + +

    The Category widget block has an additional option for showing category hierarchies:

    + + + + + +

    The Latest Comments widget can display or hide the avatars, the date, and the comment excerpt:

    + + + + + + +

    Here is an example of the Comments widget with all the options disabled. The number of comments has been reduced to two.

    + + + + + +

    And here is the Latest Posts widget in the list view, with dates:

    + + + + + +

    Grid view, now sorted from A -Z.

    + + + + + +

    You can also change the number of columns used to display the latest posts. The block below only displays posts from the Block category:

    + + + + ]]>
    + + 1736 + + + + + + + 0 + 0 + + + 0 + +
    + + Block: Columns + https://wpthemetestdata.wordpress.com/2018/11/02/block-columns/ + Sat, 03 Nov 2018 12:20:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1743 + + +
    +
    +

    This page tests how the theme displays the columns block. The first block tests a two column block with paragraphs.

    +
    + + + +
    +

    This is the second column. It should align next to the first column. Reduce the browser window width to test the responsiveness.

    +
    +
    + + + +
    +
    +

    This is the second column block. It has 3 columns.

    +
    + + + +
    +

    Paragraph 2 is in the middle.

    +
    + + + +
    +

    Paragraph 3 is in the last column.

    +
    +
    + + + +
    +
    +

    + +The third column block has 4 columns. Make sure that all the text is visible and that it is not cut off. + +

    +
    + + + +
    +

    Now the columns are getting narrower.

    +
    + + + +
    +

    The margins between the columns should be wide enough,

    +
    + + + +
    +

    so that the content of the columns does not run into or overlap each other.

    +
    +
    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    + + + +
    +

    Column five.

    +
    +
    + + + +

    To change the number of columns, select the column block to open the settings panel. You can show up to 6 columns. If the theme has support for wide align, you can also set the alignments to wide and full width.

    + + + +

    Below is a column block with six columns, and no alignment:

    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    + + + +
    +

    Column five.

    +
    + + + +
    +

    Column six.

    +
    +
    + + + +

    Next is a 3 column block, with a wide alignment:

    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    +
    + + + +

    And here is a two column block with full width, and a longer text. Make sure that the text wraps correctly.

    + + + +
    +
    +

    This is column one. Sometimes, you may want to use columns to display a larger text, so, lets add some more words.   Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna. Praesent sit amet ligula id orci venenatis auctor. Phasellus porttitor, metus non tincidunt dapibus, orci pede pretium neque, sit amet adipiscing ipsum lectus et libero. Aenean bibendum. Curabitur mattis quam id urna. Vivamus dui. Donec nonummy lacinia lorem. Cras risus arcu, sodales ac, ultrices ac, mollis quis, justo. Sed a libero. Quisque risus erat, posuere at, tristique non, lacinia quis, eros.

    +
    + + + +
    +

    Column two. Cras volutpat, lacus quis semper pharetra, nisi enim dignissim est, et sollicitudin quam ipsum vel mi. Sed commodo urna ac urna. Nullam eu tortor. Curabitur sodales scelerisque magna. Donec ultricies tristique pede. Nullam libero. Nam sollicitudin felis vel metus. Nullam posuere molestie metus. Nullam molestie, nunc id suscipit rhoncus, felis mi vulputate lacus, a ultrices tortor dolor eget augue. Aenean ultricies felis ut turpis. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Suspendisse placerat tellus ac nulla. Proin adipiscing sem ac risus. Maecenas nisi. Cras semper.

    +
    +
    + + + +

    We can also add blocks inside columns:

    + + + +
    +
    +
    1. This is a numbered list,
    2. inside a 3 column block
    3. with a wide alignment.
    +
    + + + +
    +

    The middle column has a paragraph with an image block below.

    + + + +
    canola
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna.
    +
    + + + +
    +

    -This third column has a quote

    Theme Reviewer
    +
    +
    + + + +

    But wait there is more!  We also have a block called Media & Text, which is a two column block that helps you display media and text content next to each other, without having to first setup a column block:

    + + + +
    dsc20050813_115856_52
    +

    Media & Text

    + + + +

    A paragraph block sits ready to be used, below your headline.

    + + + +

    +
    +]]>
    + + 1743 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Cover + https://wpthemetestdata.wordpress.com/2018/11/02/block-cover/ + Sat, 03 Nov 2018 12:20:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1745 + + +

    This is a left aligned cover block with a background image.

    + + + +

    The cover block lets you add text on top of images or videos.

    + + + +

    This blocktype has several alignment options, and you can also align or center the text inside the block.

    + + + +

    The background image can be fixed and you can change its opacity and add an overlay color.

    + + + +

    Make sure that the text wraps correctly over the image, and that text markup and alignments are working.

    + + + +

    The next image should have a pink overlay color, the text should be bold and aligned to the left:

    + + + +

    A center aligned cover image block, with a left aligned text.

    + + + +

    This is a full width cover block with a fixed background image with a 20% opacity.

    + + + +

    Make sure that all the text is readable.

    + + + +

    Our last cover image block has a wide width.

    + + + +

    This is a wide cover block with a video background.

    + + + +

    Compare the video and image blocks.
    This block is centered.

    + + + +

    The block below has no alignment, and the text is a link. Overlay colors must also work with video backgrounds.

    + + + + +]]>
    + + 1745 + + + + + + + 0 + 0 + + + 0 + +
    + + Block: Button + https://wpthemetestdata.wordpress.com/2018/11/02/block-button/ + Sat, 03 Nov 2018 12:20:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1747 + + +

    Button blocks are not semantically buttons, but links inside a styled div. 

    + + + +

    If you do not add a link, a link tag without an anchor will be used.

    + + + + + + + +

    Check to make sure that the text wraps correctly when the button has more than one line of text, and when it is extra long.

    + + + + + + + +

    Buttons have three styles: 

    + + + + + + + + + + + + + + + +

    If the theme has a custom color palette, test that background color and text color settings work correctly. 

    + + + + + + + +

    Now lets test how buttons display together with large texts.

    + + + +

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio.

    + + + + + + + +

    Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna. Praesent sit amet ligula id orci venenatis auctor. Phasellus porttitor, metus non tincidunt dapibus, orci pede pretium neque, sit amet adipiscing ipsum lectus et libero. Aenean bibendum. Curabitur mattis quam id urna.

    + + + + + + + +

    Vivamus dui. Donec nonummy lacinia lorem. Cras risus arcu, sodales ac, ultrices ac, mollis quis, justo. Sed a libero. Quisque risus erat, posuere at, tristique non, lacinia quis, eros.

    +]]>
    + + 1747 + + + + + + + 0 + 0 + + + 0 + +
    + + Block: Quote + https://wpthemetestdata.wordpress.com/2018/11/02/block-quote/ + Sat, 03 Nov 2018 03:05:49 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1749 + + +

    The quote block has two styles, regular:

    + + + +

    Gutenberg is more than an editor.

    The Gutenberg Team
    + + + +

    and large:

    + + + +


    Yes, it is a press, certainly, but a press from which shall flow in inexhaustible streams, the most abundant and most marvelous liquor that has ever flowed to relieve the thirst of men! Through it, God will spread His Word. A spring of truth shall flow from it: like a new star it shall scatter the darkness of ignorance, and cause a light heretofore unknown to shine amongst men.


    Johannes Gutenberg
    + + + +

    The quote blocks themselves has no alignments but the text can be aligned, bold, italic, and linked:

    + + + +

    Right

    Theme Review
    + + + +

    In addition to the quote block, we also have the pull quote, with a regular and a solid color style.

    + + + +

    You can change the color of the border and the text with the regular style:

    + + + +


    In addition to the quote block, we also have the pull quote

    Theme reviewer
    + + + +

    Or change the background color and text color with the solid color style:

    + + + +

    a solid color style

    Theme Reviewer
    +]]>
    + + 1749 + + + + + + + 0 + 0 + + + 0 + +
    + + Block: Gallery + https://wpthemetestdata.wordpress.com/2018/11/02/block-gallery/ + Sat, 03 Nov 2018 04:34:24 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1752 + + +

    Gallery blocks have two settings: the number of columns, and whether or not images should be cropped. The default number of columns is three, and the maximum number of columns is eight.

    + + + +

    Below is a three column gallery at full width, with cropped images.

    + + + + + + + + + + + +

    Some more text for taking up space.

    + + + +

    A two column gallery, aligned to the left.

    + + + +

    In the editor, the image captions can be edited directly by clicking on the text.

    + + + +

    If the number of images cannot be divided into the number of columns you have selected, the default is to have the last image(s) automatically stretch to the width of your gallery.

    + + + +

    + + + + + + + +

    A four column gallery with a wide width:

    + + + + + + + +

    A five column gallery with normal images:

    + + + + + + + +

    This is the same gallery, but with cropped images.

    + + + + + + + +

    Six columns: does it work at all window sizes?

    + + + + + + + +

    Seven columns: how does this look on a narrow window?

    + + + + + + + +

    Eight columns:

    + + + + +]]>
    + + 1752 + + + + + + + 0 + 0 + + + 0 + +
    + + Block: Image + https://wpthemetestdata.wordpress.com/2018/11/03/block-image/ + Sat, 03 Nov 2018 12:20:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1755 + + +

    Welcome to image alignment! If you recognize this post, it is because these are blocks that have been converted from the classic Markup: Image Alignment post. The best way to demonstrate the ebb and flow of the various image positioning options is to nestle them snuggly among an ocean of words. Grab a paddle and let's get started. Be sure to try it in RTL mode. Left should stay left and right should stay right for both reading directions.

    + + + +

    On the topic of alignment, it should be noted that users can choose from the options of None, Left, Right, and Center. If the theme has added support for align wide, images can also be wide and full width. Be sure to test this page in RTL mode.

    + + + +

    In addition, they also get the options of the image dimensions 25%, 50%, 75%, 100% or a set width and height.

    + + + +
    Image Alignment 580x300
    + + + +

    The image above happens to be centered.

    + + + +
    Image Alignment 150x150
    + + + +

    The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned.

    + + + +

    As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished!

    + + + +

    And now for a massively large image. It also has no alignment.

    + + + +
    Image Alignment 1200x400
    + + + +

    The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.

    + + + +
    Image Alignment 300x200
    + + + +

    And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there… Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently.

    + + + +

    In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah… Just like that. It never felt so good to be right.

    + + + +

    And just when you thought we were done, we're going to do them all over again with captions!

    + + + +
    Image Alignment 580x300
    Look at 580x300 getting some caption love.
    + + + +

    The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky.

    + + + +
    Image Alignment 150x150
    Itty-bitty caption.
    + + + +

    The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned.

    + + + +

    As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished!

    + + + +

    And now for a massively large image. It also has no alignment.

    + + + +
    Image Alignment 1200x400
    Massive image comment for your eyeballs.
    + + + +

    The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.

    + + + +
    Image Alignment 300x200
    Feels good to be right all the time.
    + + + +

    And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there… Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently.

    + + + +

    In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah… Just like that. It never felt so good to be right.

    + + + +

    Imagine that we would find a use for the extra wide image! This image has the wide width alignment:

    + + + +
    Image Alignment 1200x4002
    + + + +

    Can we go bigger? This image has the full width alignment:

    + + + +
    Image Alignment 1200x4002
    + + + +

    And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! One last thing: The last item in this post's content is a thumbnail floated right. Make sure any elements after the content are clearing properly.

    + + + +
    +]]>
    + + 1755 + + + + + + + 0 + 0 + + + 0 + + +
    +
    +
    \ No newline at end of file diff --git a/packages/playground/data-liberation/tests/wxr/crazy-cdata-escaped.xml b/packages/playground/data-liberation/tests/wxr/crazy-cdata-escaped.xml new file mode 100644 index 0000000000..4f4d80fa51 --- /dev/null +++ b/packages/playground/data-liberation/tests/wxr/crazy-cdata-escaped.xml @@ -0,0 +1,46 @@ + + + + 1.1 + http://wp.dev + + Hello world! + http://example.org/?p=1 + Thu, 05 Jan 2012 14:30:46 +0000 + admin + http://example.org/?p=1 + :)]]> + + 1 + 2012-01-05 14:30:46 + 2012-01-05 14:30:46 + open + open + hello-world + publish + 0 + 0 + post + + 0 + + Plain string + + + + Closing CDATA + ]]> + + + Alot of CDATA + closing ]]> + + + + diff --git a/packages/playground/data-liberation/tests/wxr/crazy-cdata.xml b/packages/playground/data-liberation/tests/wxr/crazy-cdata.xml new file mode 100644 index 0000000000..fc7d879c78 --- /dev/null +++ b/packages/playground/data-liberation/tests/wxr/crazy-cdata.xml @@ -0,0 +1,46 @@ + + + + 1.1 + http://wp.dev + + Hello world! + http://example.org/?p=1 + Thu, 05 Jan 2012 14:30:46 +0000 + admin + http://example.org/?p=1 + :)]]> + + 1 + 2012-01-05 14:30:46 + 2012-01-05 14:30:46 + open + open + hello-world + publish + 0 + 0 + post + + 0 + + Plain string + + + + Closing CDATA + ]]> + + + Alot of CDATA + closing ]]> + + + + diff --git a/packages/playground/data-liberation/tests/wxr/invalid-version-tag.xml b/packages/playground/data-liberation/tests/wxr/invalid-version-tag.xml new file mode 100644 index 0000000000..fddaca43bc --- /dev/null +++ b/packages/playground/data-liberation/tests/wxr/invalid-version-tag.xml @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + WXR Test Data + http://localhost/ + Blog with sample content for testing + Sat, 09 Oct 2010 15:12:29 +0000 + en + abc + http://localhost/ + http://localhost/ + johnjohndoe@example.org + 1alpha + 2bar + 3beta + 4delta + 5epsilon + 6eta + 7foo + 8foo-barbar + 9gamma + 10iota + 11kappa + 12lambda + 13level-1 + 14level-2level-1 + 15level-3level-2 + 16parent + 17theta + 18uncategorized + 19zeta + 20also-level-3level-2 + 21childparent + 22clippable + 23deuterogamy + 24entablement + 25intermembral + 26masticatory + 27obligato + 28occultation + 29onion + 30pontonier + 31rooftree + 32saccule + 33salpa + 34tag-1 + 35tag-2 + 36tag-3 + 37tag-4 + 38tag-5 + 39tentage + 40post_taxbieup + 41post_taxblah + 42post_taxdigeut + 43post_taxgiyeok + 44post_taxhalb + 45post_taxmieum + 46post_taxnieun + 47post_taxparent-2 + 48post_taxrieul + 49post_taxsiot + 50post_taxtax-1 + 51post_taxtax-2 + 52post_taxblah-halbhalb + 53post_taxchild-parent-2parent-2 + + diff --git a/packages/playground/data-liberation/tests/wxr/malformed.xml b/packages/playground/data-liberation/tests/wxr/malformed.xml new file mode 100644 index 0000000000..06a7076fdb --- /dev/null +++ b/packages/playground/data-liberation/tests/wxr/malformed.xml @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + WXR Test Data + http://localhost/ + Blog with sample content for testing + Sat, 09 Oct 2010 15:12:29 +0000 + en + abc + http://localhost/ + http://localhost/ + johnjohndoe@example.org + 1alpha + 2bar + 3beta + 4delta + 5epsilon + 6eta + 7foo + 8foo-barbar + 9gamma + 10iota + 11kappa + 12lambda + 13level-1 + 14level-2level-1 + 15level-3level-2 + 16parent + 17theta + 18uncategorized + 19zeta + 20also-level-3level-2 + 21childparent + 22clippable + 23deuterogamy + 24entablement + 25intermembral + 26masticatory + 27obligato + 28occultation + 29onion + 30pontonier + 31rooftree + 32saccule + 33salpa + 34tag-1 + 35tag-2 + 36tag-3 + 37tag-4 + 38tag-5 + 39tentage + 40post_taxbieup + 41post_taxblah + 42post_taxdigeut + 43post_taxgiyeok + 44post_taxhalb + 45post_taxmieum + 46post_taxnieun + 47post_taxparent-2 + 48post_taxrieul + 49post_taxsiot + 50post_taxtax-1 + 51post_taxtax-2 + 52post_taxblah-halbhalb + 53post_taxchild-parent-2parent-2 + + diff --git a/packages/playground/data-liberation/tests/wxr/missing-version-tag.xml b/packages/playground/data-liberation/tests/wxr/missing-version-tag.xml new file mode 100644 index 0000000000..5bd233e319 --- /dev/null +++ b/packages/playground/data-liberation/tests/wxr/missing-version-tag.xml @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + WXR Test Data + http://localhost/ + Blog with sample content for testing + Sat, 09 Oct 2010 15:12:29 +0000 + en + http://localhost/ + http://localhost/ + johnjohndoe@example.org + 1alpha + 2bar + 3beta + 4delta + 5epsilon + 6eta + 7foo + 8foo-barbar + 9gamma + 10iota + 11kappa + 12lambda + 13level-1 + 14level-2level-1 + 15level-3level-2 + 16parent + 17theta + 18uncategorized + 19zeta + 20also-level-3level-2 + 21childparent + 22clippable + 23deuterogamy + 24entablement + 25intermembral + 26masticatory + 27obligato + 28occultation + 29onion + 30pontonier + 31rooftree + 32saccule + 33salpa + 34tag-1 + 35tag-2 + 36tag-3 + 37tag-4 + 38tag-5 + 39tentage + 40post_taxbieup + 41post_taxblah + 42post_taxdigeut + 43post_taxgiyeok + 44post_taxhalb + 45post_taxmieum + 46post_taxnieun + 47post_taxparent-2 + 48post_taxrieul + 49post_taxsiot + 50post_taxtax-1 + 51post_taxtax-2 + 52post_taxblah-halbhalb + 53post_taxchild-parent-2parent-2 + + diff --git a/packages/playground/data-liberation/tests/wxr/slashes.xml b/packages/playground/data-liberation/tests/wxr/slashes.xml new file mode 100644 index 0000000000..3e073d8121 --- /dev/null +++ b/packages/playground/data-liberation/tests/wxr/slashes.xml @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + trunk + http://localhost/ + trunk + Tue, 18 Jan 2011 08:06:21 +0000 + en + 1.1 + http://localhost/ + http://localhost/ + + 1adminlocal@host.null + + 8alpha + 33tag1 + + http://wordpress.org/?v=3.1-RC2-17315 + + + Hello world! + http://localhost/?p=1 + Tue, 18 Jan 2011 07:40:14 +0000 + author + http://localhost/?p=1 + + + + 1 + 2011-01-18 07:40:14 + 2011-01-18 07:40:14 + open + open + hello-world + publish + 0 + 0 + post + + 0 + + + Post by + + + + _edit_last + + + + + diff --git a/packages/playground/data-liberation/tests/wxr/small-export.xml b/packages/playground/data-liberation/tests/wxr/small-export.xml new file mode 100644 index 0000000000..20b3de9364 --- /dev/null +++ b/packages/playground/data-liberation/tests/wxr/small-export.xml @@ -0,0 +1,447 @@ + + + + + + + + + + + + + + + + + + + + + + + trunk + http://localhost/ + Just another WordPress site + Tue, 18 Jan 2011 08:06:21 +0000 + en + 1.1 + http://localhost/ + http://localhost/ + + 1adminlocal@host.null + 2editoreditor@example.org + 3authorauthor@example.org + + 8alpha + 4bar + 9beta + 29chi + 11delta + 12epsilon + 14eta + 3foo + 5foo-barbar + 10gamma + 16iota + 17kappa + 18lambda + 19mu + 20nu + 31omega + 22omicron + 28phi + 23pi + 30psi + 24rho + 25sigma + 26tau + 15theta + 1uncategorized + 32unused-category + 27upsilon + 21xi + 13zeta + 7eternity + 33tag1 + 34tag2 + 35tag3 + + http://wordpress.org/?v=3.1-RC2-17315 + + + Hello world! + http://localhost/?p=1 + Tue, 18 Jan 2011 07:40:14 +0000 + author + http://localhost/?p=1 + + + + 1 + 2011-01-18 07:40:14 + 2011-01-18 07:40:14 + open + open + hello-world + publish + 0 + 0 + post + + 0 + + + Post by + + + + _edit_last + + + + 1 + + + http://wordpress.org/ + + 2011-01-18 07:40:14 + 2011-01-18 07:40:14 + To delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.]]> + 1 + + 0 + 0 + + + + Sample Page + http://localhost/?page_id=2 + Tue, 18 Jan 2011 07:40:14 +0000 + admin + http://localhost/?page_id=2 + + Hi there! I'm a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin' caught in the rain.) + +...or something like this: + +
    The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickies 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.
    + +As a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!]]>
    + + 2 + 2011-01-18 07:40:14 + 2011-01-18 07:40:14 + open + open + sample-page + publish + 0 + 0 + page + + 0 + + _wp_page_template + + +
    + + Child Page + http://localhost/?page_id=4 + Tue, 18 Jan 2011 07:45:50 +0000 + admin + http://localhost/?page_id=4 + + + + 4 + 2011-01-18 07:45:50 + 2011-01-18 07:45:50 + open + open + child-page + publish + 6 + 0 + page + + 0 + + _edit_last + + + + _wp_page_template + + + + + Parent Page + http://localhost/?page_id=6 + Tue, 18 Jan 2011 07:46:09 +0000 + admin + http://localhost/?page_id=6 + + + + 6 + 2011-01-18 07:46:09 + 2011-01-18 07:46:09 + open + open + parent-page + publish + 0 + 0 + page + + 0 + + _edit_last + + + + _wp_page_template + + + + + Draft Page + http://localhost/?page_id=9 + Wed, 30 Nov -0001 00:00:00 +0000 + admin + http://localhost/?page_id=9 + + + + 9 + 2011-01-18 07:46:29 + 0000-00-00 00:00:00 + open + open + + draft + 0 + 0 + page + + 0 + + _edit_last + + + + _wp_page_template + + + + + 1-col page + http://localhost/?page_id=11 + Tue, 18 Jan 2011 07:46:57 +0000 + admin + http://localhost/?page_id=11 + + + + 11 + 2011-01-18 07:46:57 + 2011-01-18 07:46:57 + open + open + 1-col-page + publish + 0 + 0 + page + + 0 + + _edit_last + + + + _wp_page_template + + + + + Private Post + http://localhost/?p=13 + Tue, 18 Jan 2011 07:47:19 +0000 + admin + http://localhost/?p=13 + + + + 13 + 2011-01-18 07:47:19 + 2011-01-18 07:47:19 + open + open + private-post + private + 0 + 0 + post + + 0 + + + + + + _edit_last + + + + + Foo-child + http://localhost/?p=15 + Tue, 18 Jan 2011 07:48:07 +0000 + editor + http://localhost/?p=15 + + + + 15 + 2011-01-18 07:48:07 + 2011-01-18 07:48:07 + open + open + foo-child + publish + 0 + 0 + post + + 0 + + + _edit_last + + + + Post by + + + + + Top-level Foo + http://localhost/?p=17 + Tue, 18 Jan 2011 07:48:32 +0000 + admin + http://localhost/?p=17 + + + + 17 + 2011-01-18 07:48:32 + 2011-01-18 07:48:32 + open + open + top-level-foo + publish + 0 + 0 + post + + 0 + + + _edit_last + + + + + Non-standard post format + http://localhost/?p=19 + Tue, 18 Jan 2011 07:48:52 +0000 + admin + http://localhost/?p=19 + + + + 19 + 2011-01-18 07:48:52 + 2011-01-18 07:48:52 + open + open + non-standard-post-format + publish + 0 + 0 + post + + 0 + + + + _edit_last + + + + + Many Categories + http://localhost/?p=22 + Tue, 18 Jan 2011 07:55:01 +0000 + admin + http://localhost/?p=22 + + + + 22 + 2011-01-18 07:55:01 + 2011-01-18 07:55:01 + open + open + many-categories + publish + 0 + 0 + post + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + _edit_last + + + +
    +
    diff --git a/packages/playground/data-liberation/tests/wxr/test-serialized-postmeta-no-cdata.xml b/packages/playground/data-liberation/tests/wxr/test-serialized-postmeta-no-cdata.xml new file mode 100644 index 0000000000..dd75787f42 --- /dev/null +++ b/packages/playground/data-liberation/tests/wxr/test-serialized-postmeta-no-cdata.xml @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + Test With Serialized Postmeta + http://test.wordpress.org/ + Just another blog + Mon, 30 Nov 2009 21:35:27 +0000 + http://wordpress.org/?v=2.8.4 + en + 1.0 + http://test.wordpress.org/ + http://test.wordpress.org/ + +My Entry with Postmeta +http://test.wordpress.org/postemta +Tue, 30 Nov 1999 00:00:00 +0000 + + + + + + +http://test.wordpress.org/postmeta + + + +122 +2009-10-20 16:13:20 +0000-00-00 00:00:00 +open +open + +draft +0 +0 +post + + +post-options +a:2:{s:18:"special_post_title";s:15:"A special title";s:11:"is_calendar";s:0:"";} + + + + + diff --git a/packages/playground/data-liberation/tests/wxr/test-serialized-postmeta-with-cdata.xml b/packages/playground/data-liberation/tests/wxr/test-serialized-postmeta-with-cdata.xml new file mode 100644 index 0000000000..2fd3923501 --- /dev/null +++ b/packages/playground/data-liberation/tests/wxr/test-serialized-postmeta-with-cdata.xml @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + Test With Serialized Postmeta + http://test.wordpress.org/ + Just another blog + Mon, 30 Nov 2009 21:35:27 +0000 + http://wordpress.org/?v=2.8.4 + en + 1.0 + http://test.wordpress.org/ + http://test.wordpress.org/ + +My Entry with Postmeta +http://test.wordpress.org/postemta +Tue, 30 Nov 1999 00:00:00 +0000 + + + + + + +http://test.wordpress.org/postmeta + + + +10 +2009-10-20 16:13:20 +0000-00-00 00:00:00 +open +open + +draft +0 +0 +post + + +post-options + + + +contains-html +some html]]> + + +evil +evil]]> + + + + + diff --git a/packages/playground/data-liberation/tests/wxr/test-utw-post-meta-import.xml b/packages/playground/data-liberation/tests/wxr/test-utw-post-meta-import.xml new file mode 100644 index 0000000000..c491f6d4c8 --- /dev/null +++ b/packages/playground/data-liberation/tests/wxr/test-utw-post-meta-import.xml @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + Test With Serialized Postmeta + http://test.wordpress.org/ + Just another blog + Mon, 30 Nov 2009 21:35:27 +0000 + http://wordpress.org/?v=2.8.4 + en + 1.0 + http://test.wordpress.org/ + http://test.wordpress.org/ + +My Entry with UTW Postmeta +http://test.wordpress.org/postmeta-utw +Tue, 30 Nov 1999 00:00:00 +0000 + + + + + + +http://test.wordpress.org/postmeta-utw + + + +150 +2009-10-20 16:13:20 +0000-00-00 00:00:00 +open +open + +draft +0 +0 +post + + +test +a:13:{i:0;O:8:"stdClass":1:{s:3:"tag";s:5:"album";}i:1;O:8:"stdClass":1:{s:3:"tag";s:5:"apple";}i:2;O:8:"stdClass":1:{s:3:"tag";s:3:"art";}i:3;O:8:"stdClass":1:{s:3:"tag";s:7:"artwork";}i:4;O:8:"stdClass":1:{s:3:"tag";s:11:"dead-tracks";}i:5;O:8:"stdClass":1:{s:3:"tag";s:4:"ipod";}i:6;O:8:"stdClass":1:{s:3:"tag";s:6:"itunes";}i:7;O:8:"stdClass":1:{s:3:"tag";s:10:"javascript";}i:8;O:8:"stdClass":1:{s:3:"tag";s:6:"lyrics";}i:9;O:8:"stdClass":1:{s:3:"tag";s:6:"script";}i:10;O:8:"stdClass":1:{s:3:"tag";s:6:"tracks";}i:11;O:8:"stdClass":1:{s:3:"tag";s:22:"windows-scripting-host";}i:12;O:8:"stdClass":1:{s:3:"tag";s:7:"wscript";}} + + + + + diff --git a/packages/playground/data-liberation/tests/wxr/theme-unit-test-data.xml b/packages/playground/data-liberation/tests/wxr/theme-unit-test-data.xml new file mode 100644 index 0000000000..08f04c344b --- /dev/null +++ b/packages/playground/data-liberation/tests/wxr/theme-unit-test-data.xml @@ -0,0 +1,12578 @@ + + + + + +Theme Unit Test Data +https://wpthemetestdata.wordpress.com +Just another WordPress website with a purposefully really long description +Tue, 27 Jan 2015 14:56:57 +0000 +en +1.2 +https://wordpress.com/ +https://wpthemetestdata.wordpress.com + + themedemos + themeshaperwp+demos@gmail.com + + + + + + + + + + + + + 12 + + + + + + 2835016 + aciform + + + + + 1020423 + antiquarianism + + + + + 33280 + arrangement + + + + + 2720660 + asmodeus + + + + + 193 + + + + + + + 1356 + blogroll + + + + + 714120 + broder + + + + + 30256 + buying + + + + + 111995 + cat-a + + + + + 111996 + cat-b + + + + + 111997 + cat-c + + + + + 62501 + championship + + + + + 2835020 + chastening + + + + + 192 + + + + + + + 96553 + clerkship + + + + + 2834984 + disinclination + + + + + 1454829 + disinfection + + + + + 167368 + dispatch + + + + + 2834987 + echappee + + + + + 161095136 + edge-case-2 + + + + + + 2834990 + enphagy + + + + + 2834992 + equipollent + + + + + 2835022 + fatuity + + + + + 3128700 + foo-a + + + + + 3128707 + foo-parent + + + + + 2835023 + gaberlunzie + + + + + 2835026 + illtempered + + + + + 315209 + insubordination + + + + + 376018 + lender + + + + + 4675 + markup + + + + + + 329026 + media-2 + + + + + + 2835029 + monosyllable + + + + + 2835030 + packthread + + + + + 2835031 + palter + + + + + 2834994 + papilionaceous + + + + + 54150 + parent + + + + + 6004933 + parent-category + + + + + + 1922221 + personable + + + + + 44090582 + post-formats + + + + + + 2834996 + propylaeum + + + + + 177992 + pustule + + + + + 2835000 + quartern + + + + + 34975 + scholarship + + + + + 2835035 + selfconvicted + + + + + 2835006 + showshoe + + + + + 2835007 + sloyd + + + + + 30849 + sub + aciform + + + + 2835009 + sublunary + + + + + 2016057 + tamtam + + + + + 33328006 + template-2 + + + + + + 1 + uncategorized + + + + + 54090 + unpublished + + + + + + 2835037 + weakhearted + + + + + 312342 + ween + + + + + 1327706 + wellhead + + + + + 2835043 + wellintentioned + + + + + 2835045 + whetstone + + + + + 67899 + years + + + + + 1043326 + child-1 + parent + + + + 1043329 + child-2 + child-1 + + + + 158081316 + child-category-01 + parent-category + + + + + 158081319 + child-category-02 + parent-category + + + + + 158081321 + child-category-03 + parent-category + + + + + 158081323 + child-category-04 + parent-category + + + + + 158081325 + child-category-05 + parent-category + + + + + 3128710 + foo-a-foo-parent + foo-parent + + + + 57037077 + grandchild-category + child-category-03 + + + + + 695220 + 8bit + + + + + 38590737 + alignment-2 + + + + 651 + articles + + + + + 6935 + aside + + + + 413 + audio + + + + 36446125 + captions-2 + + + + 1656 + categories + + + + 4870 + chat + + + + 2834913 + chattels + + + + 2834914 + cienaga + + + + 2834899 + claycold + + + + 12525 + codex + + + + 1861347 + comments-2 + + + + 35181409 + content-2 + + + + 124338 + crushing + + + + 169 + css + + + + 385439 + depo + + + + 2834915 + dinarchy + + + + 2834900 + doolie + + + + 13207917 + dowork + + + + + 16894899 + edge-case + + + + 161043722 + embeds-2 + + + + 2834901 + energumen + + + + 781363 + ephialtes + + + + 2834902 + eudiometer + + + + 31262653 + excerpt-2 + + + + 112207 + fail + + + + + 8923091 + featured-image + + + + 2834916 + figuriste + + + + 2962 + filler + + + + 44189092 + formatting-2 + + + + 109004 + ftw + + + + 272 + fun + + + + + 3263 + gallery + + + + 1549412 + goes-here + + + + 2834917 + habergeon + + + + 137419 + hapless + + + + 2834918 + hartshorn + + + + 2834919 + hostility-impregnability + + + + 647 + html + + + + 686 + image + + + + 2834920 + impropriation + + + + 66451 + is + + + + 76655687 + jetpack-2 + + + + 2834903 + knave + + + + 26060 + layout + + + + 2717 + link + + + + 35081376 + lists-2 + + + + 118729 + lorem + + + + 3785 + love + + + + + 38696790 + markup-2 + + + + 292 + media + + + + 392241 + misinformed + + + + 2834904 + moil + + + + 11212 + more + + + + 2834921 + mornful + + + + 57948 + mothership + + + + + 1560278 + mustread + + + + + 36752930 + nailedit + + + + + 239264 + outlaw + + + + 697683 + pagination + + + + 2834905 + pamphjlet + + + + 39214087 + password-2 + + + + 835 + pictures + + + + 161099149 + pingbacks-2 + + + + 1042764 + pneumatics + + + + 2834906 + portly-portreeve + + + + 1187 + post + + + + 44090582 + post-formats + + + + 2834922 + precipitancy + + + + 300925 + privation + + + + 16889 + programme + + + + 56714 + psychological + + + + 2834907 + puncher + + + + 3099 + quote + + + + 2834908 + ramose + + + + 40586 + read-more + + + + 71229 + readability + + + + 531008 + renegade + + + + 2834909 + retrocede + + + + 412776 + shortcode + + + + 2834923 + stagnation-unhorsed + + + + 472597 + standard-2 + + + + 577 + status + + + + 45997922 + sticky-2 + + + + 4668 + success + + + + + 655802 + swagger + + + + + 1790856 + tag-a + + + + 1790857 + tag-b + + + + 1790858 + tag-c + + + + 22652 + tag1 + + + + 22653 + tag2 + + + + 359495 + tag3 + + + + 1502 + tags + + + + + 11867 + template + + + + 5117 + text + + + + 14347 + the-man + + + + 2834910 + thunderheaded + + + + 1235460 + tiled + + + + 1653 + title + + + + 64903049 + trackbacks-2 + + + + 11320090 + twitter-2 + + + + 2834911 + unculpable + + + + 207758 + unseen + + + + + 412 + video + + + + 20117770 + videopress + + + + 2834912 + withered-brandnew + + + + 33 + wordpress + + + + + 15787590 + wordpress-tv + + + + 2834924 + xanthopsia + + + + 12 + + + + + + + 161107798 + nav_menu + all-pages + + + + 161101812 + nav_menu + all-pages-flat + + + + 158085404 + nav_menu + empty-menu + + + + 161104374 + nav_menu + short + + + + 158084196 + nav_menu + testing-menu + + + + + + + + + +https://wordpress.com/ + + https://s2.wp.com/i/buttonw-com.png + » Theme Unit Test Data + https://wpthemetestdata.wordpress.com + + + <![CDATA[WP 6.1 Font size scale]]> + https://wpthemetestdata.wordpress.com/wp-6-1-font-size-scale/ + Mon, 16 Jan 2023 07:08:31 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-font-size-scale/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Small H2 Heading

    + + + +

    Medium H2 Heading

    + + + +

    Large H2 Heading

    + + + +

    Extra Large H2 Heading

    + + + +

    Small paragraph

    + + + +

    Medium paragraph

    + + + +

    Large paragraph

    + + + +

    Extra Large paragraph

    +]]> +
    + + 163 + + + + + + + + + 0 + 0 + + + 0 + + + + + + +
    + + <![CDATA[WP 6.1 spacing presets]]> + https://wpthemetestdata.wordpress.com/wp-6-1-spacing-presets/ + Mon, 16 Jan 2023 06:56:53 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-spacing-presets/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    On this page, some group blocks have border or background color set to increase visibility.

    + + + +
    +

    This group has a no background color and no additional spacing set.

    +
    + + + +
    +

    This group has a background color but no additional spacing set.

    +
    + + + +
    +

    This group has a 1px border and padding preset 1

    +
    + + + +
    +

    This group has padding preset 1

    +
    + + + +
    +

    This group has a 1px border and padding preset 2

    +
    + + + +
    +

    This group has a background color and padding preset 3

    +
    + + + +
    +

    This group has a background color and padding preset 4

    +
    + + + +
    +

    This group has a background color and padding preset 5

    +
    + + + +
    +

    This group has a background color and padding preset 6

    +
    + + + +
    +

    This group has a background color and padding preset 7

    +
    + + + +
    +

    This group has padding preset 7

    +
    + + + +
    +

    This group has a background color and margin preset 1

    +
    + + + +
    +

    This group has a background color and margin preset 2

    +
    + + + +
    +

    This group has a background color and margin preset 3

    +
    + + + +
    +

    This group has a background color and margin preset 4

    +
    + + + +
    +

    This group has a background color and margin preset 5

    +
    + + + +
    +

    This group has a background color and margin preset 6

    +
    + + + +
    +

    This group has a background color and margin preset 7

    +
    + + + +
    +

    This group has a 1px border, padding preset 4 and margin preset 4

    +
    + + + +
    +

    This group has padding preset 4 and margin preset 4

    +
    +]]>
    + + 150 + + + + + + + + + 0 + 0 + + + 0 + + + + + + +
    + + <![CDATA[WP 6.1 Theme block category]]> + https://wpthemetestdata.wordpress.com/wp-6-1-theme-block-category/ + Fri, 13 Jan 2023 18:38:05 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-theme-block-category/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Navigation block with page list:

    + + + + + + + +

    Site logo:

    + + + + + +

    Site title:

    + + + + + +

    Tagline block:

    + + + + + +

    Query loop "Title & Date" variation:

    + + + +
    + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Title & Excerpt" variation:

    + + + +
    + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Title, Date & Excerpt" variation:

    + + + +
    + + + + + + + + + + + + + + + + + +

    + +
    + + + +

    Query loop "Image, Date & Title" variation:

    + + + +
    + + + + + + + + + + + + + + + + + +

    + +
    + + + +

    Avatar block:

    + + + + + +

    Post title block:

    + + + + + +

    Post excerpt:

    + + + + + +

    Post featured image:

    + + + + + +

    Post author:

    + + + + + +

    Post date:

    + + + + + +

    Categories:

    + + + + + +

    Tags:

    + + + + + +

    Next post & previous post:

    + + + + + + + +

    Read More:

    + + + + + +

    Comments block:

    + + + +
    + + + +
    +
    + + + +
    + + +
    + +
    + + + + +
    +
    + + + + + + + + + + + + + + +

    Post comments form block:

    +
    + + + + + +

    Login/out:

    + + + + + + + + + + + +

    Author biography block:

    + + + + + + + + + +

    Term description, archive title, search results title can not be shown on single posts.

    +]]>
    + + 51 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + + + + 2 + + + https://wpthemetestdata.wordpress.com/ + + + + + + + 0 + 0 + +
    + + <![CDATA[WP 6.1 Widgets block category]]> + https://wpthemetestdata.wordpress.com/wp-6-1-widgets-block-category/ + Fri, 13 Jan 2023 18:22:21 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-widgets-block-category/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Archives block:

    + + + + + + + +

    Categories list:

    + + + + + +

    Custom HTML:

    + + + + test + + + +

    Latest comments:

    + + + + + +

    Latest posts:

    + + + + + +

    Page list block:

    + + + + + +

    RSS block:

    + + + + + + + + + + + + + + + +

    Shortcode block:

    + + + + + +

    Social links:

    + + + + + + + + + + + + + + + +

    Tag cloud:

    + + + + + +

    +]]>
    + + 34 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Design category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-design-category-blocks/ + Fri, 13 Jan 2023 18:03:23 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-design-category-blocks/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + + + + + +
    +
    +

    One single column inside a columns block.

    +
    +
    + + + +
    +
    +

    Column one. The background color is on the single column.

    +
    + + + +
    +

    Column two

    +
    +
    + + + +
    +
    +

    Column one. The background color is on the parent columns block.

    +
    + + + +
    +

    Column two

    +
    + + + +
    +

    Column three

    +
    +
    + + + +
    +

    Group with paragraph inside. Below are the group block variations:

    +
    + + + +
    +

    Row

    + + + +

    Row

    +
    + + + +
    +

    Stack

    + + + +

    Stack

    +
    + + + +

    More block:

    + + + + + + + +

    Page break:

    + + + + + + + +

    Separators:

    + + + +

    Default style, no alignment:

    + + + +
    + + + +

    Default style, wide alignment:

    + + + +
    + + + +

    Default style, full width:

    + + + +
    + + + +

    Default style, align center:

    + + + +
    + + + +

    Wide style, no alignment:

    + + + +
    + + + +

    Wide style, wide alignment:

    + + + +
    + + + +

    Wide style, full width:

    + + + +
    + + + +

    Wide style, align center:

    + + + +
    + + + +

    Dotted style, no alignment:

    + + + +
    + + + +

    Dotted style, wide alignment:

    + + + +
    + + + +

    Dotted style, full width:

    + + + +
    + + + +

    Dotted style, align center:

    + + + +
    + + + +

    Spacer:

    + + + + +]]>
    + + 24 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Media category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-media-category-blocks/ + Fri, 13 Jan 2023 18:02:28 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-media-category-blocks/ + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Image block:

    + + + +
    dsc20050727_091048_222
    + + + +

    Gallery:

    + + + + + + + +

    Audio:

    + + + +
    + + + +

    Cover:

    + + + +
    Wind Farm
    +

    Write title...

    +
    + + + +
    +

    Fixed background

    +
    + + + +
    +

    Repeated background

    +
    + + + +
    +

    Fixed and Repeated background

    +
    + + + +
    dsc20050727_091048_222
    +

    Duotone

    +
    + + + +
    Rain Ripples
    +

    Top left

    +
    + + + +
    Rain Ripples
    +

    Top center

    +
    + + + +
    Rain Ripples
    +

    Top right

    +
    + + + +
    Rain Ripples
    +

    Center left

    +
    + + + +
    Rain Ripples
    +

    Center right

    +
    + + + +
    Rain Ripples
    +

    Bottom left

    +
    + + + +
    Rain Ripples
    +

    Bottom center

    +
    + + + +
    Rain Ripples
    +

    Bottom right

    +
    + + + + + + + +
    Boardwalk
    +

    This is the Media & Text block with an image on the left.

    +
    + + + +
    Image Alignment 1200x4002
    +

    This is the Media & Text block with a cropped image on the left

    +
    + + + +
    +

    This is the Media & Text block with a video the right.

    +
    + + + +
    +]]>
    + + 21 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + + + + + +
    + + <![CDATA[WP 6.1 Text category blocks]]> + https://wpthemetestdata.wordpress.com/wp-6-1-text-category-blocks/ + Fri, 13 Jan 2023 17:46:19 +0000 + + https://wpthemetestdata.wordpress.com/wp-6-1-text-category-blocks + + +

    This test post was generated using the block theme Emptytheme in WordPress 6.1.1.

    + + + +

    Paragraph

    + + + +

    H1 Heading

    + + + +

    H2 Heading

    + + + +

    H3 Heading

    + + + +

    H4 Heading

    + + + +
    H5 Heading
    + + + +
    H6 Heading
    + + + +
      +
    • List
    • + + + +
    • List
    • +
    + + + +
      +
    1. List
    2. + + + +
    3. List
    4. +
    + + + +
      +
    1. List +
        +
      • List
      • +
      +
    2. +
    + + + +
    +

    Quote block

    +citation
    + + +

    classic block

    + + +
    code block
    + + + +
    Preformatted block
    + + + +

    Pull quote

    Citation
    + + + +
    table celltable cell two
    table cell threetable cell four
    Table caption
    + + + +
    header label oneheader label two
    table celltable cell two
    table cell threetable cell four
    footer label onefooter label two
    Table caption
    + + + +
    Verse block
    +]]>
    + + 8 + + + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + +
    + + Keyboard navigation + https://wpthemetestdata.wordpress.com/2018/10/20/keyboard-navigation/ + Sun, 21 Oct 2018 03:03:48 +0000 + + https://wpthemetestdata.wordpress.com/?p=1724 + + +

    There are many different ways to use the web besides a mouse and a pair of eyes. Users navigate for example with a keyboard only or with their voice.

    + + + +

    All the functionality, including menus, links and forms should work using a keyboard only. This is essential for all assistive technology to work properly. The only way to test this, at the moment, is manually. The best time to test this is during development.

    + + + +

    How to keyboard test:

    + + + +

    Tab through your pages, links and forms to do the following tests:

    + + + +
    • Confirm that all links can be reached and activated via keyboard, including any in dropdown submenus.
    • Confirm that all links get a visible focus indicator (e.g., a border highlight).
    • Confirm that all visually hidden links (e.g. skip links) become visible when in focus.
    • Confirm that all form input fields and buttons can be accessed and used via keyboard.
    • Confirm that all interactions, buttons, and other controls can be triggered via keyboard — any action you can complete with a mouse must also be performable via keyboard.
    • Confirm that focus doesn’t move in unexpected ways around the page.
    • Confirm that using shift+tab to move backwards works as well.
    + + + +

    Resources

    + + + + +]]>
    + + 1724 + + + + + + + 0 + 0 + + + + 0 +
    + + About The Tests + https://wpthemetestdata.wordpress.com/about/ + Mon, 26 Jul 2010 02:40:01 +0000 + themedemos + https://wpthemetestdata.wordpress.com/about/ + + WordPress Theme Development Resources + +
      +
    1. See the WordPress Theme Developer Handbook for examples of best practices.
    2. +
    3. See the WordPress Code Reference for more information about WordPress' functions, classes, methods, and hooks.
    4. +
    5. See Theme Unit Test for a robust test suite for your Theme and get the latest version of the test data you see here.
    6. +
    7. See Releasing Your Theme for a guide to submitting your Theme to the Theme Directory.
    8. +
    ]]>
    + + 2 + 2010-07-25 19:40:01 + 2010-07-26 02:40:01 + closed + closed + about + publish + 0 + 1 + page + + 0 +
    + + Lorem Ipsum + https://wpthemetestdata.wordpress.com/lorem-ipsum/ + Tue, 04 Sep 2007 16:52:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/lorem-ipsum/ + + + + 146 + 2007-09-04 09:52:50 + 2007-09-04 16:52:50 + closed + closed + lorem-ipsum + publish + 0 + 7 + page + + 0 + + + Page with comments + https://wpthemetestdata.wordpress.com/about/page-with-comments/ + Tue, 04 Sep 2007 17:47:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/page-with-comments/ + + + + 155 + 2007-09-04 10:47:47 + 2007-09-04 17:47:47 + open + closed + page-with-comments + publish + 2 + 3 + page + + 0 + + 167 + + anon@example.com + + + 2007-09-04 10:49:28 + 2007-09-04 00:49:28 + + 1 + + 0 + 0 + + + 168 + + tellyworth+test2@example.com + + + 2007-09-04 10:49:03 + 2007-09-04 00:49:03 + + 1 + + 0 + 0 + + + 169 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2007-09-04 10:48:51 + 2007-09-04 17:48:51 + + 1 + + 0 + 0 + + + 1017 + + themereviewteam@gmail.com + + + 2014-12-10 01:56:24 + 2014-12-10 08:56:24 + + 0 + + 168 + 0 + + + + Page with comments disabled + https://wpthemetestdata.wordpress.com/about/page-with-comments-disabled/ + Tue, 04 Sep 2007 17:48:10 +0000 + themedemos + https://wpthemetestdata.wordpress.com/page-with-comments-disabled/ + + + + 156 + 2007-09-04 10:48:10 + 2007-09-04 17:48:10 + closed + closed + page-with-comments-disabled + publish + 2 + 4 + page + + 0 + + + Level 3 + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3/ + Tue, 11 Dec 2007 06:23:16 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-3/ + + + + 172 + 2007-12-11 16:23:16 + 2007-12-11 06:23:16 + closed + closed + level-3 + publish + 173 + 0 + page + + 0 + + + Level 2 + https://wpthemetestdata.wordpress.com/level-1/level-2/ + Tue, 11 Dec 2007 06:23:33 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-2/ + + + + 173 + 2007-12-11 16:23:33 + 2007-12-11 06:23:33 + closed + closed + level-2 + publish + 174 + 0 + page + + 0 + + + Level 1 + https://wpthemetestdata.wordpress.com/level-1/ + Tue, 11 Dec 2007 23:25:40 +0000 + themedemos + https://wpthemetestdata.wordpress.com/level-1/ + + + + 174 + 2007-12-11 16:25:40 + 2007-12-11 23:25:40 + closed + closed + level-1 + publish + 0 + 5 + page + + 0 + + + Clearing Floats + https://wpthemetestdata.wordpress.com/about/clearing-floats/ + Sun, 01 Aug 2010 16:42:26 +0000 + themedemos + https://wpthemetestdata.wordpress.com/ + + This is the second page]]> + + 501 + 2010-08-01 09:42:26 + 2010-08-01 16:42:26 + closed + closed + clearing-floats + publish + 2 + 2 + page + + 0 + + + canola2 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/canola2/ + Mon, 16 Jun 2008 13:17:54 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/canola2.jpg + + + + 611 + 2008-06-16 06:17:54 + 2008-06-16 13:17:54 + open + closed + canola2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/canola2.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + dsc20050727_091048_222 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050727_091048_222/ + Mon, 16 Jun 2008 13:20:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050727_091048_222.jpg + + + + 616 + 2008-06-16 06:20:37 + 2008-06-16 13:20:37 + open + closed + dsc20050727_091048_222 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050727_091048_222.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + dsc20050813_115856_52 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050813_115856_52/ + Mon, 16 Jun 2008 13:20:57 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050813_115856_52.jpg + + + + 617 + 2008-06-16 06:20:57 + 2008-06-16 13:20:57 + open + closed + dsc20050813_115856_52 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050813_115856_52.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Front Page + https://wpthemetestdata.wordpress.com/front-page/ + Sat, 21 May 2011 01:49:43 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=701 + + + + 701 + 2011-05-20 18:49:43 + 2011-05-21 01:49:43 + open + closed + front-page + publish + 0 + 0 + page + + 0 + + + a Blog page + https://wpthemetestdata.wordpress.com/blog/ + Sat, 21 May 2011 01:51:43 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=703 + + + + 703 + 2011-05-20 18:51:43 + 2011-05-21 01:51:43 + open + closed + blog + publish + 0 + 0 + page + + 0 + + 1016 + + example@example.com + + + 2014-11-29 21:03:05 + 2014-11-30 04:03:05 + + 0 + + 0 + 0 + + + + Bell on Wharf + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/100_5478/ + Mon, 16 Jun 2008 21:34:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/100_5478.jpg + + + + 754 + 2008-06-16 14:34:50 + 2008-06-16 21:34:50 + open + closed + 100_5478 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/100_5478.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Golden Gate Bridge + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/100_5540/ + Mon, 16 Jun 2008 21:35:55 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/100_5540.jpg + + + + 755 + 2008-06-16 14:35:55 + 2008-06-16 21:35:55 + open + closed + 100_5540 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/100_5540.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sunburst Over River + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/cep00032/ + Mon, 16 Jun 2008 21:41:24 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/cep00032.jpg + + + + 756 + 2008-06-16 14:41:24 + 2008-06-16 21:41:24 + open + closed + cep00032 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/cep00032.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Boardwalk + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dcp_2082/ + Mon, 16 Jun 2008 21:41:27 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dcp_2082.jpg + + + + 757 + 2008-06-16 14:41:27 + 2008-06-16 21:41:27 + open + closed + dcp_2082 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dcp_2082.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Yachtsody in Blue + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc03149/ + Mon, 16 Jun 2008 21:41:33 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc03149.jpg + + + + 758 + 2008-06-16 14:41:33 + 2008-06-16 21:41:33 + open + closed + dsc03149 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc03149.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Rain Ripples + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc04563/ + Mon, 16 Jun 2008 21:41:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc04563.jpg + + + + 759 + 2008-06-16 14:41:37 + 2008-06-16 21:41:37 + open + closed + dsc04563 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc04563.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sydney Harbor Bridge + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc09114/ + Mon, 16 Jun 2008 21:41:41 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc09114.jpg + + + + 760 + 2008-06-16 14:41:41 + 2008-06-16 21:41:41 + open + closed + dsc09114 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc09114.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Wind Farm + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050102_192118_51/ + Mon, 16 Jun 2008 21:41:42 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050102_192118_51.jpg + + + + 761 + 2008-06-16 14:41:42 + 2008-06-16 21:41:42 + open + closed + dsc20050102_192118_51 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050102_192118_51.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Antique Farm Machinery + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20051220_160808_102/ + Mon, 16 Jun 2008 21:41:45 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_160808_102.jpg + + + + 762 + 2008-06-16 14:41:45 + 2008-06-16 21:41:45 + open + closed + dsc20051220_160808_102 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_160808_102.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Rusty Rail + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20051220_173257_119/ + Mon, 16 Jun 20081 21:47:17 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_173257_119.jpg + + + + 764 + 2008-06-16 14:47:17 + 2008-06-16 21:47:17 + open + closed + dsc20051220_173257_119 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_173257_119.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Sea and Rocks + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dscn3316/ + Mon, 16 Jun 2008 21:47:20 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/dscn3316.jpg + + + + 765 + 2008-06-16 14:47:20 + 2008-06-16 21:47:20 + open + closed + dscn3316 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/dscn3316.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Big Sur + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/michelle_049/ + Mon, 16 Jun 2008 21:47:23 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/michelle_049.jpg + + + + 766 + 2008-06-16 14:47:23 + 2008-06-16 21:47:23 + open + closed + michelle_049 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/michelle_049.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Windmill + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dcf-1-0/ + Mon, 16 Jun 2008 21:47:26 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/windmill.jpg + + + + 767 + 2008-06-16 14:47:26 + 2008-06-16 21:47:26 + open + closed + dcf-1-0 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/windmill.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Huatulco Coastline + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/alas-i-have-found-my-shangri-la/ + Mon, 16 Jun 2008 21:49:48 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0513-1.jpg + + + + 768 + 2008-06-16 14:49:48 + 2008-06-16 21:49:48 + open + closed + alas-i-have-found-my-shangri-la + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0513-1.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Brazil Beach + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_0747/ + Mon, 16 Jun 2008 21:50:37 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0747.jpg + + + + 769 + 2008-06-16 14:50:37 + 2008-06-16 21:50:37 + open + closed + img_0747 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0747.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Huatulco Coastline + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_0767/ + Mon, 16 Jun 2008 21:51:19 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_0767.jpg + + + + 770 + 2008-06-16 14:51:19 + 2008-06-16 21:51:19 + open + closed + img_0767 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_0767.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Boat Barco Texture + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_8399/ + Mon, 16 Jun 2008 21:51:57 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/img_8399.jpg + + + + 771 + 2008-06-16 14:51:57 + 2008-06-16 21:51:57 + open + closed + img_8399 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/img_8399.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Resinous + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20040724_152504_532-2/ + Mon, 04 Jun 2012 18:36:56 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg + + + + 807 + 2012-06-04 11:36:56 + 2012-06-04 18:36:56 + open + closed + dsc20040724_152504_532-2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg + + _attachment_original_parent_id + + + + + St. Louis Blues + https://wpthemetestdata.wordpress.com/2010/07/02/post-format-audio/originaldixielandjazzbandwithalbernard-stlouisblues/ + Mon, 16 Jun 2008 16:49:29 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3 + + + + 821 + 2008-06-16 09:49:29 + 2008-06-16 16:49:29 + open + closed + originaldixielandjazzbandwithalbernard-stlouisblues + inherit + 587 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3 + + + OLYMPUS DIGITAL CAMERA + https://wpthemetestdata.wordpress.com/about/clearing-floats/olympus-digital-camera/ + Thu, 05 Aug 2010 18:07:34 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2010/08/manhattansummer.jpg + + + + 827 + 2010-08-05 11:07:34 + 2010-08-05 18:07:34 + open + closed + olympus-digital-camera + inherit + 501 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2010/08/manhattansummer.jpg + + + Image Alignment 580x300 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-580x300/ + Fri, 15 Mar 2013 00:44:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg + + + + 967 + 2013-03-14 19:44:50 + 2013-03-15 00:44:50 + open + open + image-alignment-580x300 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Image Alignment 150x150 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-150x150/ + Fri, 15 Mar 2013 00:44:49 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg + + + + 968 + 2013-03-14 19:44:49 + 2013-03-15 00:44:49 + open + open + image-alignment-150x150 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Horizontal Featured Image + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-horizontal/featured-image-horizontal-2/ + Fri, 15 Mar 2013 20:40:38 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-horizontal.jpg + + + + 1022 + 2013-03-15 15:40:38 + 2013-03-15 20:40:38 + open + open + featured-image-horizontal-2 + inherit + 1011 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-horizontal.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + I Am Worth Loving Wallpaper + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/soworthloving-wallpaper/ + Thu, 14 Mar 2013 14:58:24 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/soworthloving-wallpaper.jpg + + + + 1023 + 2013-03-14 09:58:24 + 2013-03-14 14:58:24 + open + open + soworthloving-wallpaper + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/soworthloving-wallpaper.jpg + + _wp_attachment_image_alt + + + + + Image Alignment 300x200 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-300x200/ + Fri, 15 Mar 2013 00:44:49 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg + + + + 1025 + 2013-03-14 19:44:49 + 2013-03-15 00:44:49 + open + open + image-alignment-300x200 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Vertical Featured Image + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-vertical/featured-image-vertical-2/ + Fri, 15 Mar 2013 20:41:09 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-vertical.jpg + + + + 1027 + 2013-03-15 15:41:09 + 2013-03-15 20:41:09 + open + open + featured-image-vertical-2 + inherit + 1016 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/featured-image-vertical.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Image Alignment 1200x4002 + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-1200x4002/ + Fri, 15 Mar 2013 00:44:50 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg + + + + 1029 + 2013-03-14 19:44:50 + 2013-03-15 00:44:50 + open + open + image-alignment-1200x4002 + inherit + 1177 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Unicorn Wallpaper + https://wpthemetestdata.wordpress.com/2010/08/08/post-format-image/unicorn-wallpaper/ + Fri, 14 Dec 2012 03:10:39 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2012/12/unicorn-wallpaper.jpg + + + + 1045 + 2012-12-13 22:10:39 + 2012-12-14 03:10:39 + open + open + unicorn-wallpaper + inherit + 1158 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2012/12/unicorn-wallpaper.jpg + + _wp_attachment_image_alt + + + + _attachment_original_parent_id + + + + + Pages + https://wpthemetestdata.wordpress.com/2013/04/09/pages/ + Tue, 09 Apr 2013 13:37:45 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/pages + + + + 1100 + 2013-04-09 06:37:45 + 2013-04-09 13:37:45 + open + closed + pages + publish + 0 + 2 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Categories + https://wpthemetestdata.wordpress.com/2013/04/09/categories/ + Tue, 09 Apr 2013 13:37:45 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/categories + + + + 1101 + 2013-04-09 06:37:45 + 2013-04-09 13:37:45 + open + closed + categories + publish + 0 + 10 + nav_menu_item + + 0 + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1112/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1112</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test markup tags and styles.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1112</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1112</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>21</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[4675]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1115/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1115</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test post formats.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1115</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1115</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>24</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[44090582]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1118/</link> + <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1118</guid> + <description/> + <content:encoded><![CDATA[Posts in this category test unpublished posts.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1118</wp:post_id> + <wp:post_date>2013-04-09 06:37:46</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1118</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>28</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1101]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[54090]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[category]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>Depth + https://wpthemetestdata.wordpress.com/2013/04/09/depth/ + Tue, 09 Apr 2013 13:37:46 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/depth + + + + 1119 + 2013-04-09 06:37:46 + 2013-04-09 13:37:46 + open + closed + depth + publish + 0 + 29 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 01 + https://wpthemetestdata.wordpress.com/2013/04/09/level-01/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-01 + + + + 1120 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-01 + publish + 0 + 30 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 02 + https://wpthemetestdata.wordpress.com/2013/04/09/level-02/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-02 + + + + 1121 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-02 + publish + 0 + 31 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 03 + https://wpthemetestdata.wordpress.com/2013/04/09/level-03/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-03 + + + + 1122 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-03 + publish + 0 + 32 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 04 + https://wpthemetestdata.wordpress.com/2013/04/09/level-04/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-04 + + + + 1123 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-04 + publish + 0 + 33 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 05 + https://wpthemetestdata.wordpress.com/2013/04/09/level-05/ + Tue, 09 Apr 2013 13:37:47 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-05 + + + + 1124 + 2013-04-09 06:37:47 + 2013-04-09 13:37:47 + open + closed + level-05 + publish + 0 + 34 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 06 + https://wpthemetestdata.wordpress.com/2013/04/09/level-06/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-06 + + + + 1125 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-06 + publish + 0 + 35 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 07 + https://wpthemetestdata.wordpress.com/2013/04/09/level-07/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-07 + + + + 1126 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-07 + publish + 0 + 36 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 08 + https://wpthemetestdata.wordpress.com/2013/04/09/level-08/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-08 + + + + 1127 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-08 + publish + 0 + 37 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 09 + https://wpthemetestdata.wordpress.com/2013/04/09/level-09/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-09 + + + + 1128 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-09 + publish + 0 + 38 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Level 10 + https://wpthemetestdata.wordpress.com/2013/04/09/level-10/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/level-10 + + + + 1129 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + level-10 + publish + 0 + 39 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Advanced + https://wpthemetestdata.wordpress.com/2013/04/09/advanced/ + Tue, 09 Apr 2013 13:37:49 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/advanced + + + + 1130 + 2013-04-09 06:37:49 + 2013-04-09 13:37:49 + open + closed + advanced + publish + 0 + 40 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu Description + https://wpthemetestdata.wordpress.com/2013/04/09/menu-description/ + Tue, 09 Apr 2013 13:37:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-description + + + + 1142 + 2013-04-09 06:37:50 + 2013-04-09 13:37:50 + open + closed + menu-description + publish + 0 + 44 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu Title Attribute + https://wpthemetestdata.wordpress.com/2013/04/09/menu-title-attribute/ + Tue, 09 Apr 2013 13:37:50 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-title-attribute + + + + 1143 + 2013-04-09 06:37:50 + 2013-04-09 13:37:50 + open + closed + menu-title-attribute + publish + 0 + 41 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + Menu CSS Class + https://wpthemetestdata.wordpress.com/2013/04/09/menu-css-class/ + Tue, 09 Apr 2013 13:37:51 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/menu-css-class + + + + 1144 + 2013-04-09 06:37:51 + 2013-04-09 13:37:51 + open + closed + menu-css-class + publish + 0 + 42 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + New Window / Tab + https://wpthemetestdata.wordpress.com/2013/04/09/new-window-tab/ + Tue, 09 Apr 2013 13:37:51 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2013/04/09/new-window-tab + + + + 1145 + 2013-04-09 06:37:51 + 2013-04-09 13:37:51 + open + closed + new-window-tab + publish + 0 + 43 + nav_menu_item + + 0 + + + _publicize_pending + + + + _menu_item_type + + + + _menu_item_menu_item_parent + + + + _menu_item_object_id + + + + _menu_item_object + + + + _menu_item_target + + + + _menu_item_classes + + + + _menu_item_xfn + + + + _menu_item_url + + + + + + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1263/</link> + <pubDate>Tue, 09 Apr 2013 13:38:00 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1263</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1263</wp:post_id> + <wp:post_date>2013-04-09 06:38:00</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:38:00</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1263</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1100]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/04/09/1264/</link> + <pubDate>Tue, 09 Apr 2013 13:38:01 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2013/04/09/1264</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1264</wp:post_id> + <wp:post_date>2013-04-09 06:38:01</wp:post_date> + <wp:post_date_gmt>2013-04-09 13:38:01</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1264</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1100]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>twitter.com + https://wpthemetestdata.wordpress.com/2018/10/20/twitter-com/ + Sun, 21 Oct 2018 02:57:33 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/twitter-com/ + + + + 1719 + + + + + + + 0 + 1 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + facebook.com + https://wpthemetestdata.wordpress.com/2018/10/20/facebook-com/ + Sun, 21 Oct 2018 02:57:35 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/facebook-com/ + + + + 1720 + + + + + + + 0 + 2 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + github.com + https://wpthemetestdata.wordpress.com/2018/10/20/github-com/ + Sun, 21 Oct 2018 02:57:37 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/github-com + + + + 1721 + + + + + + + 0 + 3 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + instagram.com + https://wpthemetestdata.wordpress.com/2018/10/20/instagram-com + Sun, 21 Oct 2018 02:57:41 +000 + themereviewteam> + https://wpthemetestdata.wordpress.com/2018/10/20/instagram-com + + + + 1723 + + + + + + + 0 + 5 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + linkedin.com + https://wpthemetestdata.wordpress.com/2018/10/20/linkedin-com/ + Sun, 21 Oct 2018 02:57:39 +0000 + + https://wpthemetestdata.wordpress.com/2018/10/20/linkedin-com/ + + + + 1722 + + + + + + + 0 + 4 + + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + triforce-wallpaper + https://wpthemetestdata.wordpress.com/2010/08/07/post-format-image-caption/triforce-wallpaper/ + Tue, 17 Aug 2010 20:17:31 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2010/08/triforce-wallpaper.jpg + + + + 1628 + 2010-08-17 13:17:31 + 2010-08-17 20:17:31 + open + closed + triforce-wallpaper + inherit + 1163 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2010/08/triforce-wallpaper.jpg + + + + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1636/</link> + <pubDate>Tue, 07 May 2013 19:54:30 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1636</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1636</wp:post_id> + <wp:post_date>2013-05-07 12:54:30</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:30</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1636</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1637/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1637</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1637</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1637</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1638/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1638</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1638</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1638</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1639/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1639</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1639</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1639</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1640/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1640</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1640</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1640</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1637]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1641/</link> + <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1641</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1641</wp:post_id> + <wp:post_date>2013-05-07 12:54:31</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1641</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1643/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1643</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1643</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1643</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1644/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1644</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1644</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1644</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[701]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1645/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1645</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1645</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1645</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1646/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1646</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1646</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1646</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1647/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1647</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1647</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1647</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1648/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1648</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1648</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1648</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1649/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1649</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1649</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1649</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1650/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1650</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1650</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1650</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1651/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1651</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1651</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1651</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>10</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[174]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1652/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1652</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1652</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1652</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>11</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[173]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1653/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1653</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1653</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1653</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>12</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[172]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1654/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1654</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1654</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1654</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>13</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[746]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1655/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1655</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1655</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1655</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>14</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[748]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1656/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1656</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1656</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1656</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>15</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[742]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1657/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1657</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1657</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1657</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>16</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[744]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1658/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1658</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1658</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1658</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>17</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1659/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1659</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1659</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1659</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>18</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[733]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1660/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1660</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1660</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1660</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>19</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages-flat"><![CDATA[All Pages Flat]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[735]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1643/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1643</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1643</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1643</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>2</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[703]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1644/</link> + <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1644</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1644</wp:post_id> + <wp:post_date>2013-05-07 12:55:38</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1644</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>3</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[701]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1645/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1645</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1645</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1645</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>4</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[2]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1646/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1646</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1646</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1646</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>5</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1133]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1647/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1647</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1647</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1647</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>6</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[1134]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1648/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1648</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1648</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1648</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>7</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[501]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1649/</link> + <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1649</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1649</wp:post_id> + <wp:post_date>2013-05-07 12:55:39</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1649</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>8</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[155]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1650/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1650</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1650</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1650</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>2</wp:post_parent> + <wp:menu_order>9</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1645]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[156]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1651/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1651</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1651</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1651</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>10</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[174]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1652/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1652</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1652</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1652</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>11</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[173]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1653/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1653</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1653</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1653</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>12</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[172]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1654/</link> + <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1654</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1654</wp:post_id> + <wp:post_date>2013-05-07 12:55:40</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1654</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>13</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[746]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1655/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1655</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1655</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1655</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>173</wp:post_parent> + <wp:menu_order>14</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[748]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1652]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1656/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1656</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1656</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1656</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>15</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[742]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1657/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1657</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1657</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1657</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>174</wp:post_parent> + <wp:menu_order>16</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[744]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[1651]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1658/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1658</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1658</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1658</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>17</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[146]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1659/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1659</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1659</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1659</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>18</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[733]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title/> + <link>https://wpthemetestdata.wordpress.com/2013/05/07/1660/</link> + <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/?p=1660</guid> + <description/> + <content:encoded><![CDATA[ ]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1660</wp:post_id> + <wp:post_date>2013-05-07 12:55:41</wp:post_date> + <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt> + <wp:comment_status>open</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>1660</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>19</wp:menu_order> + <wp:post_type>nav_menu_item</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category> + <wp:postmeta> + <wp:meta_key>_publicize_pending</wp:meta_key> + <wp:meta_value><![CDATA[1]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_url</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_xfn</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_classes</wp:meta_key> + <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_target</wp:meta_key> + <wp:meta_value><![CDATA[]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_type</wp:meta_key> + <wp:meta_value><![CDATA[post_type]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key> + <wp:meta_value><![CDATA[0]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object_id</wp:meta_key> + <wp:meta_value><![CDATA[735]]></wp:meta_value> + </wp:postmeta> + <wp:postmeta> + <wp:meta_key>_menu_item_object</wp:meta_key> + <wp:meta_value><![CDATA[page]]></wp:meta_value> + </wp:postmeta> +</item> +<item> + <title>dsc20040724_152504_532 + https://wpthemetestdata.wordpress.com/?attachment_id=1686 + Wed, 18 Sep 2013 21:37:05 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20040724_152504_532.jpg + + + + 1686 + 2013-09-18 14:37:05 + 2013-09-18 21:37:05 + open + closed + dsc20040724_152504_532 + inherit + 0 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20040724_152504_532.jpg + + + dsc20050604_133440_34211 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050604_133440_34211/ + Wed, 18 Sep 2013 21:37:07 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20050604_133440_34211.jpg + + + + 1687 + 2013-09-18 14:37:07 + 2013-09-18 21:37:07 + open + closed + dsc20050604_133440_34211 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/09/dsc20050604_133440_34211.jpg + + + 2014-slider-mobile-behavior + https://wpthemetestdata.wordpress.com/?attachment_id=1690 + Wed, 04 Dec 2013 18:08:29 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2013/12/2014-slider-mobile-behavior.mov + + + + 1690 + 2013-12-04 11:08:29 + 2013-12-04 18:08:29 + open + closed + 2014-slider-mobile-behavior + inherit + 0 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2013/12/2014-slider-mobile-behavior.mov + + + dsc20050315_145007_132 + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050315_145007_132-2/ + Sun, 05 Jan 2014 18:45:21 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2014/01/dsc20050315_145007_132.jpg + + + + 1691 + 2014-01-05 11:45:21 + 2014-01-05 18:45:21 + open + closed + dsc20050315_145007_132-2 + inherit + 555 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2014/01/dsc20050315_145007_132.jpg + + + spectacles + https://wpthemetestdata.wordpress.com/about/clearing-floats/spectacles-2/ + Sun, 05 Jan 2014 18:45:36 +0000 + themedemos + https://wpthemetestdata.files.wordpress.com/2014/01/spectacles.gif + + + + 1692 + 2014-01-05 11:45:36 + 2014-01-05 18:45:36 + open + closed + spectacles-2 + inherit + 501 + 0 + attachment + + 0 + https://wpthemetestdata.files.wordpress.com/2014/01/spectacles.gif + + + Post Format: Standard + https://wpthemetestdata.wordpress.com/2010/10/05/post-format-standard/ + Tue, 05 Oct 2010 07:27:25 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=358 + + + +Mrs. Darling first heard of Peter when she was tidying up her children's minds. It is the nightly custom of every good mother after her children are asleep to rummage in their minds and put things straight for next morning, repacking into their proper places the many articles that have wandered during the day. + +If you could keep awake (but of course you can't) you would see your own mother doing this, and you would find it very interesting to watch her. It is quite like tidying up drawers. You would see her on her knees, I expect, lingering humorously over some of your contents, wondering where on earth you had picked this thing up, making discoveries sweet and not so sweet, pressing this to her cheek as if it were as nice as a kitten, and hurriedly stowing that out of sight. When you wake in the morning, the naughtiness and evil passions with which you went to bed have been folded up small and placed at the bottom of your mind and on the top, beautifully aired, are spread out your prettier thoughts, ready for you to put on. + +I don't know whether you have ever seen a map of a person's mind. Doctors sometimes draw maps of other parts of you, and your own map can become intensely interesting, but catch them trying to draw a map of a child's mind, which is not only confused, but keeps going round all the time. There are zigzag lines on it, just like your temperature on a card, and these are probably roads in the island, for the Neverland is always more or less an island, with astonishing splashes of colour here and there, and coral reefs and rakish-looking craft in the offing, and savages and lonely lairs, and gnomes who are mostly tailors, and caves through which a river runs, and princes with six elder brothers, and a hut fast going to decay, and one very small old lady with a hooked nose. It would be an easy map if that were all, but there is also first day at school, religion, fathers, the round pond, needle-work, murders, hangings, verbs that take the dative, chocolate pudding day, getting into braces, say ninety-nine, three-pence for pulling out your tooth yourself, and so on, and either these are part of the island or they are another map showing through, and it is all rather confusing, especially as nothing will stand still. + +Of course the Neverlands vary a good deal. John's, for instance, had a lagoon with flamingoes flying over it at which John was shooting, while Michael, who was very small, had a flamingo with lagoons flying over it. John lived in a boat turned upside down on the sands, Michael in a wigwam, Wendy in a house of leaves deftly sewn together. John had no friends, Michael had friends at night, Wendy had a pet wolf forsaken by its parents, but on the whole the Neverlands have a family resemblance, and if they stood still in a row you could say of them that they have each other's nose, and so forth. On these magic shores children at play are for ever beaching their coracles [simple boat]. We too have been there; we can still hear the sound of the surf, though we shall land no more. + +Of all delectable islands the Neverland is the snuggest and most compact, not large and sprawly, you know, with tedious distances between one adventure and another, but nicely crammed. When you play at it by day with the chairs and table-cloth, it is not in the least alarming, but in the two minutes before you go to sleep it becomes very real. That is why there are night-lights. + +Occasionally in her travels through her children's minds Mrs. Darling found things she could not understand, and of these quite the most perplexing was the word Peter. She knew of no Peter, and yet he was here and there in John and Michael's minds, while Wendy's began to be scrawled all over with him. The name stood out in bolder letters than any of the other words, and as Mrs. Darling gazed she felt that it had an oddly cocky appearance.]]> + + 358 + 2010-10-05 00:27:25 + 2010-10-05 07:27:25 + closed + closed + post-format-standard + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Gallery + https://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/ + Fri, 10 Sep 2010 14:24:14 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=555 + + + +You can use this page to test the Theme's handling of the gallery shortcode, including the columns parameter, from 1 to 9 columns. Themes are only required to support the default setting (3 columns), so this page is entirely optional. +

    One Column

    +[gallery columns="1"] +

    Two Columns

    +[gallery columns="2"] +

    Three Columns

    +[gallery columns="3"] +

    Four Columns

    +[gallery columns="4"] +

    Five Columns

    +[gallery columns="5"] +

    Six Columns

    +[gallery columns="6"] +

    Seven Columns

    +[gallery columns="7"] +

    Eight Columns

    +[gallery columns="8"] +

    Nine Columns

    +[gallery columns="9"]]]>
    + + 555 + 2010-09-10 07:24:14 + 2010-09-10 14:24:14 + closed + closed + post-format-gallery + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Post Format: Aside + https://wpthemetestdata.wordpress.com/2010/05/09/post-format-aside/ + Sun, 09 May 2010 14:51:54 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=559 + + + + 559 + 2010-05-09 07:51:54 + 2010-05-09 14:51:54 + closed + closed + post-format-aside + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Chat + https://wpthemetestdata.wordpress.com/2010/01/08/post-format-chat/ + Fri, 08 Jan 2010 14:59:31 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=562 + + + + 562 + 2010-01-08 07:59:31 + 2010-01-08 14:59:31 + closed + closed + post-format-chat + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Link + https://wpthemetestdata.wordpress.com/2010/03/07/post-format-link/ + Sun, 07 Mar 2010 15:06:53 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=565 + + The WordPress Theme Review Team Website]]> + + 565 + 2010-03-07 08:06:53 + 2010-03-07 15:06:53 + closed + closed + post-format-link + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Image (Linked) + https://wpthemetestdata.wordpress.com/2010/08/06/post-format-image-linked/ + Fri, 06 Aug 2010 15:09:39 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=568 + + chunk of resinous blackboy husk[/caption] +]]> + + 568 + 2010-08-06 08:09:39 + 2010-08-06 15:09:39 + closed + closed + post-format-image-linked + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Quote + https://wpthemetestdata.wordpress.com/2010/02/05/post-format-quote/ + Fri, 05 Feb 2010 15:13:15 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=575 + + Only one thing is impossible for God: To find any sense in any copyright law on the planet. +Mark Twain]]> + + 575 + 2010-02-05 08:13:15 + 2010-02-05 15:13:15 + closed + closed + post-format-quote + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Status + https://wpthemetestdata.wordpress.com/2010/04/04/post-format-status/ + Sun, 04 Apr 2010 15:21:24 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=579 + + + + 579 + 2010-04-04 08:21:24 + 2010-04-04 15:21:24 + closed + closed + post-format-status + publish + 0 + 0 + post + + 0 + + + + + + + + Post Format: Video (WordPress.tv) + https://wpthemetestdata.wordpress.com/2010/06/03/post-format-video-wordpresstv/ + Thu, 03 Jun 2010 15:25:58 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=582 + + instructions in the Codex.]]> + + 582 + 2010-06-03 08:25:58 + 2010-06-03 15:25:58 + closed + closed + post-format-video-wordpresstv + publish + 0 + 0 + post + + 0 + + + + + + + + + _oembed_4321638fc1a6fee26443f7fe8a70a871 + ]]> + + + _oembed_29351fff85c1be1d1e9a965a0332a861 + ]]> + + + _oembed_9fcc86d7d9398ff736577f922307f64d + ]]> + + + _oembed_366237792d32461d0052efb2edec37f5 + ]]> + + + _oembed_37fdfe862c13c46a93be2921279bf675 + ]]> + + + + Post Format: Audio + https://wpthemetestdata.wordpress.com/2010/07/02/post-format-audio/ + Fri, 02 Jul 2010 15:36:44 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=587 + + St. Louis Blues + +Audio shortcode: + +[audio https://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3]]]> + + 587 + 2010-07-02 08:36:44 + 2010-07-02 15:36:44 + closed + closed + post-format-audio + publish + 0 + 0 + post + + 0 + + + + + + + + enclosure + + + + + Page A + https://wpthemetestdata.wordpress.com/page-a/ + Fri, 24 Jun 2011 01:38:52 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=733 + + + + 733 + 2011-06-23 18:38:52 + 2011-06-24 01:38:52 + open + closed + page-a + publish + 0 + 10 + page + + 0 + + + Page B + https://wpthemetestdata.wordpress.com/page-b/ + Fri, 24 Jun 2011 01:39:14 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=735 + + + + 735 + 2011-06-23 18:39:14 + 2011-06-24 01:39:14 + open + closed + page-b + publish + 0 + 11 + page + + 0 + + + Level 2a + https://wpthemetestdata.wordpress.com/level-1/level-2a/ + Fri, 24 Jun 2011 02:03:33 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=742 + + + + 742 + 2011-06-23 19:03:33 + 2011-06-24 02:03:33 + open + closed + level-2a + publish + 174 + 0 + page + + 0 + + + Level 2b + https://wpthemetestdata.wordpress.com/level-1/level-2b/ + Fri, 24 Jun 2011 02:04:03 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=744 + + + + 744 + 2011-06-23 19:04:03 + 2011-06-24 02:04:03 + open + closed + level-2b + publish + 174 + 0 + page + + 0 + + + Level 3a + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3a/ + Fri, 24 Jun 2011 02:04:24 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=746 + + + + 746 + 2011-06-23 19:04:24 + 2011-06-24 02:04:24 + open + closed + level-3a + publish + 173 + 0 + page + + 0 + + + Level 3b + https://wpthemetestdata.wordpress.com/level-1/level-2/level-3b/ + Fri, 24 Jun 2011 02:04:46 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?page_id=748 + + + + 748 + 2011-06-23 19:04:46 + 2011-06-24 02:04:46 + open + closed + level-3b + publish + 173 + 0 + page + + 0 + + + Template: Excerpt (Defined) + https://wpthemetestdata.wordpress.com/2012/03/15/template-excerpt-defined/ + Thu, 15 Mar 2012 21:38:08 +0000 + themedemos + http://wptest.io/demo/?p=993 + + should be displayed in place of the user-defined excerpt in single-page views.]]> + should be displayed in place of the post content in archive-index pages. It can be longer than the automatically generated excerpts, and can have HTML tags.]]> + 993 + 2012-03-15 14:38:08 + 2012-03-15 21:38:08 + closed + closed + template-excerpt-defined + publish + 0 + 0 + post + + 0 + + + + + + + + + Template: More Tag + https://wpthemetestdata.wordpress.com/2012/03/15/template-more-tag/ + Thu, 15 Mar 2012 21:41:11 +0000 + themedemos + http://wptest.io/demo/?p=996 + + more tag. + +Right after this sentence should be a "continue reading" button of some sort on list pages of themes that show full content. It won't show on single pages or on themes showing excerpts. + + + +And this content is after the more tag. (which should be the anchor link for when the button is clicked)]]> + + 996 + 2012-03-15 14:41:11 + 2012-03-15 21:41:11 + closed + closed + template-more-tag + publish + 0 + 0 + post + + 0 + + + + + + + + + Edge Case: Nested And Mixed Lists + https://wpthemetestdata.wordpress.com/2009/05/15/edge-case-nested-and-mixed-lists/ + Fri, 15 May 2009 21:48:32 +0000 + themedemos + http://wptest.io/demo/?p=1000 + + +
  • Lists within lists do not break the ordered list numbering order
  • +
  • Your list styles go deep enough.
  • + +

    Ordered - Unordered - Ordered

    +
      +
    1. ordered item
    2. +
    3. ordered item +
        +
      • unordered
      • +
      • unordered +
          +
        1. ordered item
        2. +
        3. ordered item
        4. +
        +
      • +
      +
    4. +
    5. ordered item
    6. +
    7. ordered item
    8. +
    +

    Ordered - Unordered - Unordered

    +
      +
    1. ordered item
    2. +
    3. ordered item +
        +
      • unordered
      • +
      • unordered +
          +
        • unordered item
        • +
        • unordered item
        • +
        +
      • +
      +
    4. +
    5. ordered item
    6. +
    7. ordered item
    8. +
    +

    Unordered - Ordered - Unordered

    +
      +
    • unordered item
    • +
    • unordered item +
        +
      1. ordered
      2. +
      3. ordered +
          +
        • unordered item
        • +
        • unordered item
        • +
        +
      4. +
      +
    • +
    • unordered item
    • +
    • unordered item
    • +
    +

    Unordered - Unordered - Ordered

    +
      +
    • unordered item
    • +
    • unordered item +
        +
      • unordered
      • +
      • unordered +
          +
        1. ordered item
        2. +
        3. ordered item
        4. +
        +
      • +
      +
    • +
    • unordered item
    • +
    • unordered item
    • +
    ]]>
    + + 1000 + 2009-05-15 14:48:32 + 2009-05-15 21:48:32 + closed + closed + edge-case-nested-and-mixed-lists + publish + 0 + 0 + post + + 0 + + + + + + + +
    + + Template: Featured Image (Horizontal) + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-horizontal/ + Thu, 15 Mar 2012 22:15:12 +0000 + themedemos + http://wptest.io/demo/?p=1011 + + featured image, if the theme supports it. + +Non-square images can provide some unique styling issues. + +This post tests a horizontal featured image.]]> + + 1011 + 2012-03-15 15:15:12 + 2012-03-15 22:15:12 + closed + closed + template-featured-image-horizontal + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + + + + Template: Featured Image (Vertical) + https://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-vertical/ + Thu, 15 Mar 2012 22:36:32 +0000 + themedemos + http://wptest.io/demo/?p=1016 + + featured image, if the theme supports it. + +Non-square images can provide some unique styling issues. + +This post tests a vertical featured image.]]> + + 1016 + 2012-03-15 15:36:32 + 2012-03-15 22:36:32 + closed + closed + template-featured-image-vertical + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + + + + Post Format: Gallery (Tiled) + https://wpthemetestdata.wordpress.com/2010/09/09/post-format-gallery-tiled/ + Fri, 10 Sep 2010 00:23:27 +0000 + themedemos + http://wptest.io/demo/?p=1031 + + Jetpack to test. + +[gallery type="rectangular" columns="4" ids="755,757,758,760,766,763" orderby="rand"] + +This is some text after the Tiled Gallery just to make sure that everything spaces nicely.]]> + + 1031 + 2010-09-09 17:23:27 + 2010-09-10 00:23:27 + closed + closed + post-format-gallery-tiled + publish + 0 + 0 + post + + 0 + + + + + + + + + + + Page Image Alignment + https://wpthemetestdata.wordpress.com/about/page-image-alignment/ + Fri, 15 Mar 2013 23:19:23 +0000 + themedemos + http://wptest.io/demo/?page_id=1080 + + None, Left, Right, and Center. In addition, they also get the options of Thumbnail, Medium, Large & Fullsize. Be sure to try this page in RTL mode and it should look the same as LTR. +

    Image Alignment 580x300

    +The image above happens to be centered. + +Image Alignment 150x150 The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see there should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +Image Alignment 1200x400 + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 1200x400 + +And we try the large image again, with the center alignment since that sometimes is a problem. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 300x200 + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And just when you thought we were done, we're going to do them all over again with captions! + +[caption id="attachment_906" align="aligncenter" width="580"]Image Alignment 580x300 Look at 580x300 getting some caption love.[/caption] + +The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky. + +[caption id="attachment_904" align="alignleft" width="150"]Image Alignment 150x150 Bigger caption than the image usually is.[/caption] + +The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +[caption id="attachment_907" align="alignnone" width="1200"]Image Alignment 1200x400 Comment for massive image for your eyeballs.[/caption] + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. +[caption id="attachment_907" align="aligncenter" width="1200"]Image Alignment 1200x400 This massive image is centered.[/caption] + +And again with the big image centered. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +[caption id="attachment_905" align="alignright" width="300"]Image Alignment 300x200 Feels good to be right all the time.[/caption] + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! Last thing is a small image aligned right. Whatever follows should be unaffected. Image Alignment 150x150]]>
    + + 1133 + 2013-03-15 18:19:23 + 2013-03-15 23:19:23 + open + open + page-image-alignment + publish + 2 + 0 + page + + 0 +
    + + Page Markup And Formatting + https://wpthemetestdata.wordpress.com/about/page-markup-and-formatting/ + Fri, 15 Mar 2013 23:20:05 +0000 + themedemos + http://wptest.io/demo/?page_id=1083 + + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    Jane$1Because that's all Steve Jobs needed for a salary.
    John$100KFor all the blogging he does.
    Jane$100MPictures are worth a thousand words, right? So Tom x 1,000.
    Jane$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    + Robert Frost
    +
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +This tag shows strike-through text. + +Small Tag + +This tag shows smaller text. + +Strong Tag + +This tag shows bold text. + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +This rarely used tag emulates teletype text, which is usually styled like the <code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +This tag shows underlined text. + +Variable Tag + +This allows you to denote variables.]]>
    + + 1134 + 2013-03-15 18:20:05 + 2013-03-15 23:20:05 + open + open + page-markup-and-formatting + publish + 2 + 0 + page + + 0 +
    + + Template: Comments + https://wpthemetestdata.wordpress.com/2012/01/03/template-comments/ + Tue, 03 Jan 2012 17:11:37 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/comment-test/ + + +
  • Threaded comments up to 10 levels deep
  • +
  • Paginated comments (set Settings > Discussion > Break comments into pages to 5 top level comments per page)
  • +
  • Comment markup / formatting
  • +
  • Comment images
  • +
  • Comment videos
  • +
  • Author comments
  • +
  • Gravatars and default fallbacks
  • +]]>
    + + 1148 + 2012-01-03 10:11:37 + 2012-01-03 17:11:37 + open + closed + template-comments + publish + 0 + 0 + post + + 0 + + + + + + + 881 + + example@example.org + http://example.org/ + + 2012-09-03 10:18:04 + 2012-09-03 17:18:04 + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    John Saddington$1Because that's all Steve Job' needed for a salary.
    Tom McFarlin$100KFor all the blogging he does.
    Jared Erickson$100MPictures are worth a thousand words, right? So Tom x 1,000.
    Chris Ames$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    + +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    +Robert Frost
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    + +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up.]]>
    + 1 + + 0 + 0 +
    + + 899 + + fake@example.com + + + 2013-03-11 23:45:54 + 2013-03-12 04:45:54 + Gravatar associated with it. + They did not speify a website, so there should be no link to it in the comment. +]]> + 1 + + 0 + 0 + + + 900 + + example@example.org + http://example.org/ + + 2013-03-12 13:17:35 + 2013-03-12 20:17:35 + + 1 + + 0 + 0 + + + 901 + + example@example.org + http://example.org + + 2013-03-14 07:53:26 + 2013-03-14 14:53:26 + + 1 + + 0 + 0 + + + 903 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 07:56:46 + 2013-03-14 14:56:46 + + 1 + + 0 + 24783058 + + + 904 + + example@example.org + http://example.org/ + + 2013-03-14 07:57:01 + 2013-03-14 14:57:01 + + 1 + + 0 + 0 + + + 905 + + example@example.org + http://example.org/ + + 2013-03-14 08:01:21 + 2013-03-14 15:01:21 + + 1 + + 904 + 0 + + + 906 + + example@example.org + http://example.org/ + + 2013-03-14 08:02:06 + 2013-03-14 15:02:06 + + 1 + + 905 + 0 + + + 907 + + example@example.org + http://example.org/ + + 2013-03-14 08:03:22 + 2013-03-14 15:03:22 + + 1 + + 906 + 0 + + + 910 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 08:10:29 + 2013-03-14 15:10:29 + + 1 + + 907 + 24783058 + + + 911 + + example@example.org + http://example.org/ + + 2013-03-14 08:12:16 + 2013-03-14 15:12:16 + + 1 + + 910 + 0 + + + 912 + + example@example.org + http://example.org/ + + 2013-03-14 08:12:58 + 2013-03-14 15:12:58 + + 1 + + 911 + 0 + + + 913 + + example@example.org + http://example.org/ + + 2013-03-14 08:13:42 + 2013-03-14 15:13:42 + + 1 + + 912 + 0 + + + 914 + + example@example.org + http://example.org/ + + 2013-03-14 08:14:13 + 2013-03-14 15:14:13 + + 1 + + 913 + 0 + + + 915 + + themeshaperwp+demos@gmail.com + https://wpthemetestdata.wordpress.com/ + + 2013-03-14 08:14:47 + 2013-03-14 15:14:47 + + 1 + + 914 + 24783058 + + + 917 + + example@example.org + http://example.org/ + + 2013-03-14 09:56:43 + 2013-03-14 16:56:43 + + If the image imports... + ]]> + 1 + + 0 + 0 + + + 918 + + example@example.org + http://example.org/ + + 2013-03-14 11:23:24 + 2013-03-14 18:23:24 + + 1 + + 0 + 0 + + + 919 + + example@example.org + http://example.org/ + + 2013-03-14 11:27:54 + 2013-03-14 18:27:54 + + 1 + + 0 + 0 + + + 920 + + example@example.org + http://example.org/ + + 2013-03-14 11:30:33 + 2013-03-14 18:30:33 + + 1 + + 0 + 24783058 + + + 1015 + + auser@example.com + + + 2014-09-29 02:52:15 + 2014-09-29 09:52:15 + + 0 + + 0 + 0 + +
    + + Template: Pingbacks And Trackbacks + https://wpthemetestdata.wordpress.com/2012/01/01/template-pingbacks-an-trackbacks/ + Sun, 01 Jan 2012 17:17:18 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/many-trackbacks/ + + +
  • Above the comments
  • +
  • Below the comments
  • +
  • Included within the normal flow of comments
  • +]]>
    + + 1149 + 2012-01-01 10:17:18 + 2012-01-01 17:17:18 + closed + closed + template-pingbacks-an-trackbacks + publish + 0 + 0 + post + + 0 + + + + + + + + + 921 + + + http://tellyworth.wordpress.com/2007/11/21/ping-1/ + + 2007-11-21 11:31:12 + 2007-11-21 01:31:12 + + 1 + trackback + 0 + 0 + + + 922 + + + http://tellyworth.wordpress.com/2007/11/21/ping-2-with-a-much-longer-title-than-the-previous-ping-which-was-called-ping-1/ + + 2007-11-21 11:35:47 + 2007-11-21 01:35:47 + + 1 + trackback + 0 + 0 + + + 923 + + + http://tellyworth.wordpress.com/2007/11/21/ping-4/ + + 2007-11-21 11:39:25 + 2007-11-21 01:39:25 + + 1 + pingback + 0 + 0 + + + 924 + + + http://tellyworth.wordpress.com/2007/11/21/ping-3/ + + 2007-11-21 11:38:22 + 2007-11-21 01:38:22 + + 1 + pingback + 0 + 0 + + + 925 + + example@example.org + http://example.org/ + + 2010-06-11 15:27:04 + 2010-06-11 22:27:04 + + 1 + + 0 + 0 + +
    + + Template: Comments Disabled + https://wpthemetestdata.wordpress.com/2012/01/02/template-comments-disabled/ + Mon, 02 Jan 2012 17:21:15 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/no-comments/ + + should display pingbacks and trackbacks.]]> + + 1150 + 2012-01-02 10:21:15 + 2012-01-02 17:21:15 + closed + closed + template-comments-disabled + publish + 0 + 0 + post + + 0 + + + + + + + + Edge Case: Many Tags + https://wpthemetestdata.wordpress.com/2009/06/01/edge-case-many-tags/ + Mon, 01 Jun 2009 08:00:34 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/11/24/many-tags/ + + + + 1151 + 2009-06-01 01:00:34 + 2009-06-01 08:00:34 + closed + closed + edge-case-many-tags + publish + 0 + 0 + post + + 0' + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Edge Case: Many Categories + https://wpthemetestdata.wordpress.com/2009/07/02/edge-case-many-categories/ + Thu, 02 Jul 2009 09:00:03 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/11/24/many-categories/ + + + + 1152 + 2009-07-02 02:00:03 + 2009-07-02 09:00:03 + closed + closed + edge-case-many-categories + publish + 0 + 0 + post + + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Scheduled + https://wpthemetestdata.wordpress.com/2020/01/01/scheduled/ + Wed, 01 Jan 2030 19:00:18 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=418 + + + + 1153 + 2030-01-01 12:00:18 + 2030-01-01 19:00:18 + closed + closed + scheduled + future + 0 + 0 + post + + 0 + + + + + + Post Format: Image + https://wpthemetestdata.wordpress.com/2010/08/08/post-format-image/ + Sun, 08 Aug 2010 12:00:39 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=568 + +
      + +]]>
    + + 1158 + 2010-08-08 05:00:39 + 2010-08-08 12:00:39 + closed + closed + post-format-image + publish + 0 + 0 + post + + 0 + + + + + +
    + + Post Format: Video (YouTube) + https://wpthemetestdata.wordpress.com/2010/06/02/post-format-video-youtube/ + Wed, 02 Jun 2010 09:00:58 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=582 + + WordPress Embeds.]]> + + 1161 + 2010-06-02 02:00:58 + 2010-06-02 09:00:58 + closed + closed + post-format-video-youtube + publish + 0 + 0 + post + + 0 + + + + + + + Post Format: Image (Caption) + https://wpthemetestdata.wordpress.com/2010/08/07/post-format-image-caption/ + Sat, 07 Aug 2010 13:00:19 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=674 + + Bell on Wharf Bell on wharf in San Francisco[/caption]]]> + + 1163 + 2010-08-07 06:00:19 + 2010-08-07 13:00:19 + closed + closed + post-format-image-caption + publish + 0 + 0 + post + + 0 + + + + + + + + _thumbnail_id + + + + + Draft + https://wpthemetestdata.wordpress.com/?p=1164 + Tue, 09 Apr 2013 18:20:39 +0000 + themedemos + http://wptest.io/demo/?p=922 + + + + 1164 + 2013-04-09 11:20:39 + 2013-04-09 18:20:39 + closed + closed + + draft + 0 + 0 + post + + 0 + + + + + + Template: Password Protected (the password is "enter") + https://wpthemetestdata.wordpress.com/2012/01/04/template-password-protected/ + Wed, 04 Jan 2012 16:38:05 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/test-with-secret-password/ + + + + 1168 + 2012-01-04 09:38:05 + 2012-01-04 16:38:05 + closed + closed + template-password-protected + publish + 0 + 0 + post + enter + 0 + + + + + + + 926 + + example@example.org + http://example.org/ + + 2013-03-14 11:56:08 + 2013-03-14 18:56:08 + + 1 + + 0 + 0 + + + + + <link>https://wpthemetestdata.wordpress.com/2009/09/05/edge-case-no-title/</link> + <pubDate>Sat, 05 Sep 2009 16:00:23 +0000</pubDate> + <dc:creator>themedemos</dc:creator> + <guid isPermaLink="false">https://wpthemetestdata.wordpress.com/2007/09/04/14/</guid> + <description/> + <content:encoded><![CDATA[This post has no title, but it still must link to the single post view somehow. + +This is typically done by placing the permalink on the post date.]]></content:encoded> + <excerpt:encoded><![CDATA[]]></excerpt:encoded> + <wp:post_id>1169</wp:post_id> + <wp:post_date>2009-09-05 09:00:23</wp:post_date> + <wp:post_date_gmt>2009-09-05 16:00:23</wp:post_date_gmt> + <wp:comment_status>closed</wp:comment_status> + <wp:ping_status>closed</wp:ping_status> + <wp:post_name>edge-case-no-title</wp:post_name> + <wp:status>publish</wp:status> + <wp:post_parent>0</wp:post_parent> + <wp:menu_order>0</wp:menu_order> + <wp:post_type>post</wp:post_type> + <wp:post_password/> + <wp:is_sticky>0</wp:is_sticky> + <category domain="category" nicename="classic"><![CDATA[Classic]]></category> + <category domain="post_tag" nicename="edge-case"><![CDATA[edge case]]></category> + <category domain="category" nicename="edge-case-2"><![CDATA[Edge Case]]></category> + <category domain="post_tag" nicename="layout"><![CDATA[layout]]></category> + <category domain="post_tag" nicename="title"><![CDATA[title]]></category> +</item> +<item> + <title>Edge Case: No Content + https://wpthemetestdata.wordpress.com/2009/08/06/edge-case-no-content/ + Thu, 06 Aug 2009 16:39:56 +0000 + themedemos + https://wpthemetestdata.wordpress.com/2007/09/04/this-post-has-no-body/ + + + + 1170 + 2009-08-06 09:39:56 + 2009-08-06 16:39:56 + closed + closed + edge-case-no-content + publish + 0 + 0 + post + + 0 + + + + + + + 927 + + example@example.org + http://example.org/ + + 2013-03-14 12:35:07 + 2013-03-14 19:35:07 + + 1 + + 0 + 0 + + + + Template: Paginated + https://wpthemetestdata.wordpress.com/2012/01/08/template-paginated/ + Sun, 08 Jan 2012 17:00:20 +0000 + themedemos + https://noeltest.wordpress.com/?p=188 + + + +Post Page 2 + + + +Post Page 3]]> + + 1171 + 2012-01-08 10:00:20 + 2012-01-08 17:00:20 + closed + closed + template-paginated + publish + 0 + 0 + post + + 0 + + + + + + + + + <![CDATA[Markup: Title <em>With</em> <b>Mark<sup>up</sup></b>]]> + https://wpthemetestdata.wordpress.com/2013/01/05/markup-title-with-markup/ + Sat, 05 Jan 2013 17:00:49 +0000 + themedemos + http://wptest.io/demo/?p=861 + + +
  • The post title renders the word "with" in italics and the word "markup" in bold (and "up" is superscript).
  • +
  • The post title markup should be removed from the browser window / tab.
  • +]]>
    + + 1173 + 2013-01-05 10:00:49 + 2013-01-05 17:00:49 + closed + closed + markup-title-with-markup + publish + 0 + 0 + post + + 0 + + + + + +
    + + Markup: Title With Special Characters ~`!@#$%^&*()-_=+{}[]/\;:'"?,.> + https://wpthemetestdata.wordpress.com/2013/01/05/title-with-special-characters/ + Sat, 05 Jan 2013 18:00:20 +0000 + themedemos + http://wptest.io/demo/?p=867 + + Latin Character Tests +This is a test to see if the fonts used in this theme support basic Latin characters. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    !"#$%&'()*
    +,-./01234
    56789:;>=<
    ?@ABCDEFGH
    IJKLMNOPQR
    STUVWXYZ[\
    ]^_`abcdef
    ghijklmnop
    qrstuvwxyz
    {|}~
    ]]>
    + + 1174 + 2013-01-05 11:00:20 + 2013-01-05 18:00:20 + closed + closed + title-with-special-characters + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Taumatawhakatangihangakoauauotamateaturipukakapikimaungahoronukupokaiwhenuakitanatahu + https://wpthemetestdata.wordpress.com/2009/10/05/title-should-not-overflow-the-content-area/ + Mon, 05 Oct 2009 19:00:59 +0000 + themedemos + http://wptest.io/demo/?p=877 + + Title should not overflow the content area + +A few things to check for: +
      +
    • Non-breaking text in the title, content, and comments should have no adverse effects on layout or functionality.
    • +
    • Check the browser window / tab title.
    • +
    • If you are a plugin or widget developer, check that this text does not break anything.
    • +
    + +The following CSS properties will help you support non-breaking text. + +
    -ms-word-wrap: break-word;
    +word-wrap: break-word;
    + ]]>
    + + 1175 + 2009-10-05 12:00:59 + 2009-10-05 19:00:59 + closed + closed + title-should-not-overflow-the-content-area + publish + 0 + 0 + post + + 0 + + + + + + + + +
    + + Markup: Text Alignment + https://wpthemetestdata.wordpress.com/2013/01/09/markup-text-alignment/ + Wed, 09 Jan 2013 16:00:39 +0000 + themedemos + http://wptest.io/demo/?p=895 + + Default +This is a paragraph. It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love. Completely neutral and not picking a side or sitting on the fence. It just is. It just freaking is. It likes where it is. It does not feel compelled to pick a side. Leave him be. It will just be better that way. Trust me. +

    Left Align

    +

    This is a paragraph. It is left aligned. Because of this, it is a bit more liberal in it's views. It's favorite color is green. Left align tends to be more eco-friendly, but it provides no concrete evidence that it really is. Even though it likes share the wealth evenly, it leaves the equal distribution up to justified alignment.

    + +

    Center Align

    +

    This is a paragraph. It is center aligned. Center is, but nature, a fence sitter. A flip flopper. It has a difficult time making up its mind. It wants to pick a side. Really, it does. It has the best intentions, but it tends to complicate matters more than help. The best you can do is try to win it over and hope for the best. I hear center align does take bribes.

    + +

    Right Align

    +

    This is a paragraph. It is right aligned. It is a bit more conservative in it's views. It's prefers to not be told what to do or how to do it. Right align totally owns a slew of guns and loves to head to the range for some practice. Which is cool and all. I mean, it's a pretty good shot from at least four or five football fields away. Dead on. So boss.

    + +

    Justify Align

    +

    This is a paragraph. It is justify aligned. It gets really mad when people associate it with Justin Timberlake. Typically, justified is pretty straight laced. It likes everything to be in it's place and not all cattywampus like the rest of the aligns. I am not saying that makes it better than the rest of the aligns, but it does tend to put off more of an elitist attitude.

    ]]>
    + + 1176 + 2013-01-09 09:00:39 + 2013-01-09 16:00:39 + closed + closed + markup-text-alignment + publish + 0 + 0 + post + + 0 + + + + + + +
    + + Markup: Image Alignment + https://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/ + Fri, 11 Jan 2013 03:15:40 +0000 + themedemos + http://wptest.io/demo/?p=903 + + None, Left, Right, and Center. In addition, they also get the options of Thumbnail, Medium, Large & Fullsize. Be sure to try this page in RTL mode and it should look the same as LTR. +

    Image Alignment 580x300

    +The image above happens to be centered. + +Image Alignment 150x150 The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +Image Alignment 1200x400 + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 1200x400 + +And we try the large image again, with the center alignment since that sometimes is a problem. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +Image Alignment 300x200 + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And just when you thought we were done, we're going to do them all over again with captions! + +[caption id="attachment_906" align="aligncenter" width="580"]Image Alignment 580x300 Look at 580x300 getting some caption love.[/caption] + +The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky. + +[caption id="attachment_904" align="alignleft" width="150"]Image Alignment 150x150 Bigger caption than the image usually is.[/caption] + +The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned. + +As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished! + +And now for a massively large image. It also has no alignment. + +[caption id="attachment_907" align="alignnone" width="1200"]Image Alignment 1200x400 Comment for massive image for your eyeballs.[/caption] + +The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. +[caption id="attachment_907" align="aligncenter" width="1200"]Image Alignment 1200x400 This massive image is centered.[/caption] + +And again with the big image centered. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content. + +[caption id="attachment_905" align="alignright" width="300"]Image Alignment 300x200 Feels good to be right all the time.[/caption] + +And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently. + +In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right. + +And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! One last thing: The last item in this post's content is a thumbnail floated right. Make sure any elements after the content are clearing properly. + +]]>
    + + 1177 + 2013-01-10 20:15:40 + 2013-01-11 03:15:40 + closed + closed + markup-image-alignment + publish + 0 + 0 + post + + 0 + + + + + + + + + + _thumbnail_id + + +
    + + Markup: HTML Tags and Formatting + https://wpthemetestdata.wordpress.com/2013/01/11/markup-html-tags-and-formatting/ + Sat, 12 Jan 2013 03:22:19 +0000 + themedemos + http://wptest.io/demo/?p=919 + + Headings +

    Header one

    +

    Header two

    +

    Header three

    +

    Header four

    +
    Header five
    +
    Header six
    +

    Blockquotes

    +Single line blockquote: +
    Stay hungry. Stay foolish.
    +Multi line blockquote with a cite reference: +

    The HTML <blockquote> Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

    +multiple contributors - MDN HTML element reference - blockquote +

    Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    EmployeeSalary
    John Doe$1Because that's all Steve Jobs needed for a salary.
    Jane Doe$100KFor all the blogging she does.
    Fred Bloggs$100MPictures are worth a thousand words, right? So Jane x 1,000.
    Jane Bloggs$100BWith hair like that?! Enough said...
    +

    Definition Lists

    +
    Definition List Title
    Definition list division.
    Startup
    A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
    #dowork
    Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
    Do It Live
    I'll let Bill O'Reilly will explain this one.
    +

    Unordered Lists (Nested)

    +
      +
    • List item one +
        +
      • List item one +
          +
        • List item one
        • +
        • List item two
        • +
        • List item three
        • +
        • List item four
        • +
        +
      • +
      • List item two
      • +
      • List item three
      • +
      • List item four
      • +
      +
    • +
    • List item two
    • +
    • List item three
    • +
    • List item four
    • +
    +

    Ordered List (Nested)

    +
      +
    1. List item one -start at 8 +
        +
      1. List item one +
          +
        1. List item one -reversed attribute
        2. +
        3. List item two
        4. +
        5. List item three
        6. +
        7. List item four
        8. +
        +
      2. +
      3. List item two
      4. +
      5. List item three
      6. +
      7. List item four
      8. +
      +
    2. +
    3. List item two
    4. +
    5. List item three
    6. +
    7. List item four
    8. +
    +

    HTML Tags

    +These supported tags come from the WordPress.com code FAQ. + +Address Tag + +
    1 Infinite Loop +Cupertino, CA 95014 +United States
    Anchor Tag (aka. Link) + +This is an example of a link. + +Abbreviation Tag + +The abbreviation srsly stands for "seriously". + +Acronym Tag (deprecated in HTML5) + +The acronym ftw stands for "for the win". + +Big Tag (deprecated in HTML5) + +These tests are a big deal, but this tag is no longer supported in HTML5. + +Cite Tag + +"Code is poetry." --Automattic + +Code Tag + +This tag styles blocks of code. +.post-title { + margin: 0 0 5px; + font-weight: bold; + font-size: 38px; + line-height: 1.2; + and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows; +} +You will learn later on in these tests that word-wrap: break-word; will be your best friend. + +Delete Tag + +This tag will let you strike out text, but this tag is recommended supported in HTML5 (use the <s> instead). + +Emphasize Tag + +The emphasize tag should italicize text. + +Horizontal Rule Tag + +
    + +This sentence is following a <hr /> tag. + +Insert Tag + +This tag should denote inserted text. + +Keyboard Tag + +This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag. + +Preformatted Tag + +This tag is for preserving whitespace as typed, such as in poetry or ASCII art. +

    The Road Not Taken

    +
    +Robert Frost
    +
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    +
    +Quote Tag for short, inline quotes + +Developers, developers, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +This tag shows strike-through text. + +Small Tag + +This tag shows smaller text. + +Strong Tag + +This tag shows bold text. + +Subscript Tag + +Getting our science styling on with H2O, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +This rarely used tag emulates teletype text, which is usually styled like the <code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +This tag shows underlined text. + +Variable Tag + +This allows you to denote variables.]]>
    + + 1178 + 2013-01-11 20:22:19 + 2013-01-12 03:22:19 + closed + closed + markup-html-tags-and-formatting + publish + 0 + 0 + post + + 0 + + + + + + + +
    + + Media: Twitter Embeds + https://wpthemetestdata.wordpress.com/2011/03/15/media-twitter-embeds/ + Tue, 15 Mar 2011 22:47:16 +0000 + themedemos + http://wptest.io/demo/?p=1027 + + Twitter Embeds feature.]]> + + 1179 + 2011-03-15 15:47:16 + 2011-03-15 22:47:16 + closed + closed + media-twitter-embeds + publish + 0 + 0 + post + + 0 + + + + + + + + _oembed_time_d01e104b758ab65a49dfdede5913069c + + + + _oembed_ac49b172e1844531a885a53eff2efd91 + ]]> + + + _oembed_time_ac49b172e1844531a885a53eff2efd91 + + + + _oembed_d01e104b758ab65a49dfdede5913069c + ]]> + + + + Template: Sticky + https://wpthemetestdata.wordpress.com/2012/01/07/template-sticky/ + Sat, 07 Jan 2012 14:07:21 +0000 + themedemos + http://wptest.io/demo/?p=1241 + + +
  • The sticky post should be distinctly recognizable in some way in comparison to normal posts. You can style the .sticky class if you are using the post_class() function to generate your post classes, which is a best practice.
  • +
  • They should show at the very top of the blog index page, even though they could be several posts back chronologically.
  • +
  • They should still show up again in their chronologically correct postion in time, but without the sticky indicator.
  • +
  • If you have a plugin or widget that lists popular posts or comments, make sure that this sticky post is not always at the top of those lists unless it really is popular.
  • +]]>
    + + 1241 + 2012-01-07 07:07:21 + 2012-01-07 14:07:21 + closed + closed + template-sticky + publish + 0 + 0 + post + + 1 + + + + +
    + + Template: Excerpt (Generated) + https://wpthemetestdata.wordpress.com/2012/03/14/template-excerpt-generated/ + Wed, 14 Mar 2012 16:49:22 +0000 + themedemos + https://wpthemetestdata.wordpress.com/?p=1446 + + excerpt_length and excerpt_more, display properly.]]> + + 1446 + 2012-03-14 09:49:22 + 2012-03-14 16:49:22 + closed + closed + template-excerpt-generated + publish + 0 + 0 + post + + 0 + + + + + + + + + Block category: Common + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-common/ + Fri, 02 Nov 2018 16:20:28 +0000 + >themereviewteam + https://wpthemetestdata.wordpress.com/?p=1730 + + +

    The Common category includes the following blocks: Paragraph, image, headings, list, gallery, quote, audio, cover, video.

    + + + +

    The paragraph block is the default block type.  It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love.

    + + + +

    This paragraph is left aligned.

    + + + +

    This italic paragraph is right aligned.

    + + + +

    Neither of these paragraphs care about politics, but this one is bold, medium sized and has a drop cap.

    + + + +

    This paragraph is centered.

    + + + +

    This paragraph prefers Jazz over Justin Timberlake. It also uses the small font size.

    + + + +

    This paragraph has something important to say:  It has a large font size, which defaults to 36px.

    + + + +

    The huge text size defaults to 46px, but the size can be customized.

    + + + +

    This paragraph is colorful, with a red background and white text (maybe). Colored blocks should have a high enough contrast, so that the text is readable.

    + + + +

    Below this block, you will see a single image with a circle mask applied.

    + + + +
    Image Alignment 150x150
    + + + +

    H1 Heading

    + + + +

    H2 Heading

    + + + +

    H3 Heading

    + + + +

    H4 Heading

    + + + +
    H5 Heading
    + + + +
    H6 Heading
    + + + +

    Ordered list

    + + + +
    1. The software should be licensed under the GNU Public License.
    2. The software should be freely available to anyone to use for any purpose, and without permission.
    3. The software should be open to modifications.
      1. Any modifications should be freely distributable at no cost and without permission from its creators.
    4. The software should provide a framework for translation to make it globally accessible to speakers of all languages.
    5. The software should provide a framework for extensions so modifications and enhancements can be made without modifying core code
    + + + +

    Unordered list

    + + + +
    • One
    • Two
    • Three
      • Four
    • Five
    + + + + + + + +

    Quote

    Cite
    + + + +
    + + + +
    +

    Cover block with background image

    +
    + + + +

    The file block has a setting that lets us show or hide a download button with editable text:

    + + + + + + + + + + + +

    Video blocks have settings for showing and hiding the playback controls. Use autoplay and playback controls responsibly.

    + + + +
    This is a video block caption.
    + + + +

    The video block below is muted and has a poster image that displays before the video starts:

    + + + +
    + +]]>
    + + 1730 + + + + + + + 0 + 0 + + + 0 + + + + + + + + + + + + + + +
    + + Block category: Formatting + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-formatting/ + Fri, 02 Nov 2018 16:41:42 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1732 + + +

    The formatting category includes the following blocks:

    + + + +
    The code block starts with
    +<!-- wp:code -->
    +<?php echo 'Hello World'; ?>
    +
    + + +

    The classic block can have almost anything in it.

    +
    +
    a heading
    + + +
    The custom HTML block lets you put HTML that isn't configured like blocks in it. (this div has a width of 45%)
    + + + +
    The preformatted block.

    The Road Not Taken

    Robert Frost
    Two roads diverged in a yellow wood,
    And sorry I could not travel both (\_/)
    And be one traveler, long I stood (='.'=)
    And looked down one as far as I could (")_(")
    To where it bent in the undergrowth;

    Then took the other, as just as fair,
    And having perhaps the better claim, |\_/|
    Because it was grassy and wanted wear; / @ @ \
    Though as for that the passing there ( > º < )
    Had worn them really about the same, `>>x<<´
    / O \
    And both that morning equally lay
    In leaves no step had trodden black.
    Oh, I kept the first for another day!
    Yet knowing how way leads on to way,
    I doubted if I should ever come back.
    I shall be telling this with a sigh
    Somewhere ages and ages hence:
    Two roads diverged in a wood, and I—
    I took the one less traveled by,
    And that has made all the difference.



    and here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;
    + + + +

    The pull quote can be aligned or wide or neither.

    Theme Reviewer
    + + + +
    The table blockThis is the default style.
    The cell next to this is empty.
    Cell #5
    Cell #6
    + + + +
    This is the striped style.This row should have a background color.
    The cell next to this is empty.

    This table has fixed width table cells.

    Make sure that the text wraps correctly.

    + + + +
    The Verse block

    A block for haiku?
    Why not?
    Blocks for all the things!
    +]]>
    + + 1732 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Block category: Layout Elements + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-layout-elements/ + Fri, 02 Nov 2018 16:44:37 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1734 + + +
    +

    The Layout Elements category includes the following blocks: Group, Button, Columns, Media & Text, separator, spacer, read more, and page break.

    + + + +

    This group block has a light green background color.

    + + + + + + + +

    The read more block should be right below this text, but only on list pages of themes that show the full content. It won't show on the single page or on themes showing excerpts.

    +
    + + + + + + + +
    +
    +

    The columns:

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    +
    + + + +
    Boardwalk
    +

    Media &Text

    + + + +

    For displaying media and text next to each other. By default, the media is to the left.

    +
    + + + +
    Golden Gate Bridge
    +

    This time our block is full width, and the image is to the right.

    + + + +

    The background color is a pale blue. 

    +
    + + + +

    Test to make sure that the editor and the front match. To test the Stack on mobile setting, reduce the browser window width.

    + + + +

    The control these settings, the block uses the css classes "has-media-on-the-right" and "is-stacked-on-mobile".

    + + + +

    The separator has three styles: default, wide line, and dots.

    + + + +
    + + + +
    + + + +
    + + + +

    The spacer block has a default height of 100 pixels:

    + + + + + + + +

    And finally, the page break:

    + + + + + + + +

    This paragraph block is on page two, after the page break.

    + + + + +]]>
    + + 1734 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block category: Embeds + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-embeds/ + Fri, 02 Nov 2018 16:51:55 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1738 + + + +

    This post tests various embed blocks:

    + + + +
    +https://twitter.com/WordPress/status/1057136472321613824 +
    Twitter,  wide width
    + + + +
    +https://youtu.be/ex8fMxXJDJw +
    YouTube
    + + + +
    +https://www.facebook.com/6427302910/posts/10156380423617911/ +
    + + + +
    +https://www.instagram.com/p/BpmueLLgEn_/?utm_source=ig_share_sheet&igshid=1hcxphic7p9e2 +
    + + + +
    +https://wordpress.tv/2018/10/14/kjell-reigstad-allan-cole-how-we-made-our-first-gutenberg-powered-theme/ +
    WordPress TV, full width
    + + + +

    +]]>
    + + 1738 + + + + + + + 0 + 0 + + + 0 + + + + + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + + + + + + + + + + ]]> + + + + + + + +

    Many of the WordPress contribution teams have been working hard on the new WordPress editor, and the tools, services,...

    Publicerat av WordPress Måndag 3 september 2018
    ]]>
    +
    + + + + + + + ]]> + + + + + + + + ]]> + + + + + + + +

    WordPress 5.0 Beta 2 https://t.co/Bn5QRqAwLN

    — WordPress (@WordPress) October 30, 2018]]>
    +
    + + + + + + + ]]> + + + + + + + +

    Many of the WordPress contribution teams have been working hard on the new WordPress editor, and the tools, services,...

    Publicerat av WordPress Måndag 3 september 2018
    ]]>
    +
    + + + + + + + ]]> + + + + + + + + ]]> + + + + + +
    + + Block category: Widgets + https://wpthemetestdata.wordpress.com/2018/11/02/block-category-widgets/ + Fri, 02 Nov 2018 16:45:35 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1736 + + +

    The shortcode widget:

    + + + +[gallery columns=2 ids="770,771"] + + + +

    The Archive Widget:

    + + + + + +

    The same Archive widget but as a dropdown:

    + + + + + + + +

    The Category widget block has an additional option for showing category hierarchies:

    + + + + + +

    The Latest Comments widget can display or hide the avatars, the date, and the comment excerpt:

    + + + + + +

    Here is an example of the Comments widget with all the options disabled. The number of comments has been reduced to two.

    + + + + + +

    And here is the Latest Posts widget in the list view, with dates:

    + + + + + +

    Grid view, now sorted from A -Z.

    + + + + + +

    You can also change the number of columns used to display the latest posts. The block below only displays posts from the Block category:

    + + + + + +

    Search widget:

    + + + + + +

    Tag Cloud widget:

    + + + + + +

    RSS Feed widget:

    + + + + ]]>
    + + 1736 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Columns + https://wpthemetestdata.wordpress.com/2018/11/02/block-columns/ + Fri, 02 Nov 2018 12:10:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1743 + + +
    +
    +

    This page tests how the theme displays the columns block. The first block tests a two column block with paragraphs.

    +
    + + + +
    +

    This is the second column. It should align next to the first column. Reduce the browser window width to test the responsiveness.

    +
    +
    + + + +
    +
    +

    This is the second column block. It has 3 columns.

    +
    + + + +
    +

    Paragraph 2 is in the middle.

    +
    + + + +
    +

    Paragraph 3 is in the last column.

    +
    +
    + + + +
    +
    +

    The third column block has 4 columns. Make sure that all the text is visible and that it is not cut off.

    +
    + + + +
    +

    Now the columns are getting narrower.

    +
    + + + +
    +

    The margins between the columns should be wide enough,

    +
    + + + +
    +

    so that the content of the columns does not run into or overlap each other.

    +
    +
    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    + + + +
    +

    Column five.

    +
    +
    + + + +

    To change the number of columns, select the column block to open the settings panel. You can show up to 6 columns. If the theme has support for wide align, you can also set the alignments to wide and full width.

    + + + +

    Below is a column block with six columns, and no alignment:

    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    + + + +
    +

    Column four.

    +
    + + + +
    +

    Column five.

    +
    + + + +
    +

    Column six.

    +
    +
    + + + +

    Next is a 3 column block, with a wide alignment:

    + + + +
    +
    +

    Column one.

    +
    + + + +
    +

    Column two.

    +
    + + + +
    +

    Column three.

    +
    +
    + + + +

    And here is a two column block with full width, and a longer text. Make sure that the text wraps correctly.

    + + + +
    +
    +

    This is column one. Sometimes, you may want to use columns to display a larger text, so, lets add some more words. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna. Praesent sit amet ligula id orci venenatis auctor. Phasellus porttitor, metus non tincidunt dapibus, orci pede pretium neque, sit amet adipiscing ipsum lectus et libero. Aenean bibendum. Curabitur mattis quam id urna. Vivamus dui. Donec nonummy lacinia lorem. Cras risus arcu, sodales ac, ultrices ac, mollis quis, justo. Sed a libero. Quisque risus erat, posuere at, tristique non, lacinia quis, eros.

    +
    + + + +
    +

    Column two. Cras volutpat, lacus quis semper pharetra, nisi enim dignissim est, et sollicitudin quam ipsum vel mi. Sed commodo urna ac urna. Nullam eu tortor. Curabitur sodales scelerisque magna. Donec ultricies tristique pede. Nullam libero. Nam sollicitudin felis vel metus. Nullam posuere molestie metus. Nullam molestie, nunc id suscipit rhoncus, felis mi vulputate lacus, a ultrices tortor dolor eget augue. Aenean ultricies felis ut turpis. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Suspendisse placerat tellus ac nulla. Proin adipiscing sem ac risus. Maecenas nisi. Cras semper.

    +
    +
    + + + +

    We can also add blocks inside columns:

    + + + +
    +
    +
    1. This is a numbered list,
    2. inside a 3 column block
    3. with a wide alignment.
    +
    + + + +
    +

    The middle column has a paragraph with an image block below.

    + + + +
    canola
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna.
    +
    + + + +
    +

    -This third column has a quote

    Theme Reviewer
    +
    +
    + + + +

    But wait there is more!  We also have a block called Media & Text, which is a two column block that helps you display media and text content next to each other, without having to first setup a column block:

    + + + +
    dsc20050813_115856_52
    +

    Media & Text

    + + + +

    A paragraph block sits ready to be used, below your headline.

    + + + +

    +
    +]]>
    + + 1743 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Block: Cover + https://wpthemetestdata.wordpress.com/2018/11/02/block-cover/ + Sat, 03 Nov 2018 12:25:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1745 + + +

    This is a left aligned cover block with a background image.

    + + + +

    The cover block lets you add text on top of images or videos.

    + + + +

    This blocktype has several alignment options, and you can also align or center the text inside the block.

    + + + +

    The background image can be fixed and you can change its opacity and add an overlay color.

    + + + +

    Make sure that the text wraps correctly over the image, and that text markup and alignments are working.

    + + + +

    The next image should have a pink overlay color, the text should be bold and aligned to the left:

    + + + +

    A center aligned cover image block, with a left aligned text.

    + + + +

    This is a full width cover block with a fixed background image with a 20% opacity.

    + + + +

    Make sure that all the text is readable.

    + + + +

    Our last cover image block has a wide width.

    + + + +

    This is a wide cover block with a video background.

    + + + +

    Compare the video and image blocks.
    This block is centered.

    + + + +

    The block below has no alignment, and the text is a link. Overlay colors must also work with video backgrounds.

    + + + + +]]>
    + + 1745 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Button + https://wpthemetestdata.wordpress.com/2018/11/02/block-button/ + Sat, 03 Nov 2018 13:20:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1747 + + +

    Button blocks are not semantically buttons, but links inside a styled div. 

    + + + +

    If you do not add a link, a link tag without an anchor will be used.

    + + + + + + + +

    Check to make sure that the text wraps correctly when the button has more than one line of text, and when it is extra long.

    + + + + + + + +

    Buttons have three styles: 

    + + + + + + + + + + + + + + + +

    If the theme has a custom color palette, test that background color and text color settings work correctly. 

    + + + + + + + +

    Now lets test how buttons display together with large texts.

    + + + +

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio.

    + + + + + + + +

    Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna. Praesent sit amet ligula id orci venenatis auctor. Phasellus porttitor, metus non tincidunt dapibus, orci pede pretium neque, sit amet adipiscing ipsum lectus et libero. Aenean bibendum. Curabitur mattis quam id urna.

    + + + + + + + +

    Vivamus dui. Donec nonummy lacinia lorem. Cras risus arcu, sodales ac, ultrices ac, mollis quis, justo. Sed a libero. Quisque risus erat, posuere at, tristique non, lacinia quis, eros.

    +]]>
    + + 1747 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Quote + https://wpthemetestdata.wordpress.com/2018/11/02/block-quote/ + Sat, 03 Nov 2018 03:05:49 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1749 + + +

    The quote block has two styles, regular:

    + + + +

    Gutenberg is more than an editor.

    The Gutenberg Team
    + + + +

    and large:

    + + + +

    Yes, it is a press, certainly, but a press from which shall flow in inexhaustible streams, the most abundant and most marvelous liquor that has ever flowed to relieve the thirst of men!


    Johannes Gutenberg
    + + + +

    The quote blocks themselves have no alignments but the text can be aligned, bold, italic, and linked:

    + + + +

    Right

    Theme Review
    + + + +

    In addition to the quote block, we also have the pull quote, with a regular and a solid color style.

    + + + +

    You can change the color of the border and the text with the regular style:

    + + + +

    In addition to the quote block, we also have the pull quote.

    Theme Reviewer
    + + + +

    Or change the background color and text color with the solid color style:

    + + + +

    a solid color style

    Theme Reviewer
    +]]>
    + + 1749 + + + + + + + 0 + 0 + + + 0 + + +
    + + Block: Gallery + https://wpthemetestdata.wordpress.com/2018/11/02/block-gallery/ + Sat, 03 Nov 2018 04:34:24 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1752 + + +

    Gallery blocks have two settings: the number of columns, and whether or not images should be cropped. The default number of columns is three, and the maximum number of columns is eight.

    + + + +

    Below is a three column gallery at full width, with cropped images.

    + + + + + + + + + + + +

    Some more text for taking up space.

    + + + +

    A two column gallery, aligned to the left, linked to media file.

    + + + +

    In the editor, the image captions can be edited directly by clicking on the text.

    + + + +

    If the number of images cannot be divided into the number of columns you have selected, the default is to have the last image(s) automatically stretch to the width of your gallery.

    + + + + + + + +

    A four column gallery with a wide width:

    + + + + + + + +

    A five column gallery with normal images:

    + + + + + + + +

    This is the same gallery, but with cropped images.

    + + + + + + + +

    Six columns: does it work at all window sizes?

    + + + + + + + +

    Seven columns: how does this look on a narrow window?

    + + + + + + + +

    Eight columns:

    + + + + +]]>
    + + 1752 + + + + + + + 0 + 0 + + + 0 + + + + + + + + + +
    + + Block: Image + https://wpthemetestdata.wordpress.com/2018/11/03/block-image/ + Sat, 03 Nov 2018 15:20:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?p=1755 + + +

    Welcome to image alignment! If you recognize this post, it is because these are blocks that have been converted from the classic Markup: Image Alignment post. The best way to demonstrate the ebb and flow of the various image positioning options is to nestle them snuggly among an ocean of words. Grab a paddle and let's get started. Be sure to try it in RTL mode. Left should stay left and right should stay right for both reading directions.

    + + + +

    On the topic of alignment, it should be noted that users can choose from the options of None, Left, Right, and Center. If the theme has added support for align wide, images can also be wide and full width. Be sure to test this page in RTL mode.

    + + + +

    In addition, they also get the options of the image dimensions 25%, 50%, 75%, 100% or a set width and height.

    + + + +
    Image Alignment 580x300
    + + + +

    The image above happens to be centered.

    + + + +
    Image Alignment 150x150
    + + + +

    The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned.

    + + + +

    As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished!

    + + + +

    And now for a massively large image. It also has no alignment.

    + + + +
    Image Alignment 1200x400
    + + + +

    The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.

    + + + +
    Image Alignment 300x200
    + + + +

    And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there… Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently.

    + + + +

    In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah… Just like that. It never felt so good to be right.

    + + + +

    And just when you thought we were done, we're going to do them all over again with captions!

    + + + +
    Image Alignment 580x300
    Look at 580x300 getting some caption love.
    + + + +

    The image above happens to be centered. The caption also has a link in it, just to see if it does anything funky.

    + + + +
    Image Alignment 150x150
    Itty-bitty caption.
    + + + +

    The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is left aligned.

    + + + +

    As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished!

    + + + +

    And now for a massively large image. It also has no alignment.

    + + + +
    Image Alignment 1200x400
    Massive image comment for your eyeballs.
    + + + +

    The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.

    + + + +
    Image Alignment 300x200
    Feels good to be right all the time.
    + + + +

    And now we're going to shift things to the right align. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there… Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently.

    + + + +

    In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah… Just like that. It never felt so good to be right.

    + + + +

    Imagine that we would find a use for the extra wide image! This image has the wide width alignment:

    + + + +
    Image Alignment 1200x4002
    + + + +

    Can we go bigger? This image has the full width alignment:

    + + + +
    Image Alignment 1200x4002
    + + + +

    And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! One last thing: The last item in this post's content is a thumbnail floated right. Make sure any elements after the content are clearing properly.

    + + + +
    +]]>
    + + 1755 + + + + + + + 0 + 0 + + + 0 + + + +
    + + Ελληνικά-Greek + https://wpthemetestdata.wordpress.com/greek/ + Fri, 14 Feb 2020 10:31:00 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1809 + + Headings Επικεφαλίδες +

    Επικεφαλίδα 1 Header one

    +

    Επικεφαλίδα 2 Header two

    +

    Επικεφαλίδα 3 Header three

    +

    Επικεφαλίδα 2 Header four

    +
    Επικεφαλίδα 5 Header five
    +
    Επικεφαλίδα 6Header six
    +

    Παράθεση άλλου Blockquotes

    +Single line blockquote: Μια γραμμή +
    Πάντα να είναι περίεργος.
    +Πολλές γραμμέ με αναφορά Multi line blockquote with a cite reference: +
    Το HTML <blockquote> ElementHTML Block Quotation Element) καταδεικνύει ότι το κείμενο έχει μια παράθεση. Συνήθως οπτικοποιείται με εσοχή (δείτε Σημειώσεις για το πως να το αλλάξετε. Ίσως να δίνεται και URL πηγής με την χρήση του cite attribute, μπλα, μπλα <cite> .
    +multiple contributors - MDN HTML element reference - blockquote +

    Πίνακες Tables

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Υπάλληλος EmployeeΜισθός Salary
    Τάδε κάποιος$1Γιατί τόσα χρειάζεται για να ζήσει
    Jane Doe$100KFor all the blogging she does.
    Fred Bloggs$100MPictures are worth a thousand words, right? So Jane x 1,000.
    Jane Bloggs$100BWith hair like that?! Enough said...
    +

    Λίστες Definition Lists

    +
    +
    Τίτλος λίστας Definition List Title
    +
    Υποδιαίρεση λίστας Definition list division.
    +
    +

    Λίστα με κουκίδες Unordered Lists (Nested)

    +
      +
    • Πρώτο στοιχείο List item one +
        +
      • Στοιχείο πρώτο List item one +
          +
        • Στοιχείο λίστα ένα List item one
        • +
        • Στοιχείο λίστας δύο List item two
        • +
        +
      • +
      • Στοιχείο δεύτερο -item two
      • +
      +
    • +
    • Στοιχειο δύο List item two
    • +
    +

    Αριθμημένη λίστα(Nested)

    +
      +
    1. Στοιχειο ξεκινά με 8-start at 8 +
        +
      1. Στοιχείο λίστας ενα List item one +
          +
        1. Στοιχείο λίστας ενα -reversed attribute
        2. +
        3. Στοιχείο λίστας δύο
        4. +
        +
      2. +
      3. Δεύτερο στοιχείο
      4. +
      +
    2. +
    3. Στοιχείο δύο
    4. +
    +

    Ετικέττες HTML Tags

    +Διεύθυνση Address Tag + +
    1 Απέραντη διαδρομή Infinite Loop +Απλωπολή , ΤΚ 95014 +Ελλάδα
    Αγκυρωση Anchor Tag (aka. Link) + +Πάραδειγμα συνδέσμου. + +Συντομογραφία Abbreviation Tag + +Η συντομογραφία κτλ σημαίνει "Και τα λοιπά". + +Ακρωνύμιο Acronym Tag + +Το ακρωνύμιο κυρ σημαίνει "Κύριος". + +Big Tag + +Αυτό είναι μεγάλο θέμα + +Cite Tag + +"Φάε το φαϊ σου" --Όλες οι μαμάδες + +Code Tag + +This tag styles blocks of code. +.post-title { +margin: 0 0 5px; +font-weight: bold; +font-size: 38px; +line-height: 1.2; +και μία γραμμή με πολύ πάρα πολύ υπερβολικά πάρα πολύ μεγάλο κείμενο που πρέπει να δούμε πως το χειρίζεται η γραμματοσειρά και αν ξεχειλίζει από τις γραμμές και δημιουργεί πρόβλημα; +} + +Διαγραφή Delete Tag + +Μπορείτε να διαγράφεται κείμενο, αλλά δεν συνιστάται. + +Έμφαση Emphasize Tag + +Θα πρέπει να κάνει ιταλικ italicize το κείμενο. + +Εισαγωγή Insert Tag + +Αυτό το tag υποδηλώνει εισηγμένο inserted κείμενο. + +Keyboard Tag + +Αυτό το ελάχιστο γνωστό κείμενο πληκτρολογίου keyboard Tag, συνήθως μορφοποιείται όμοια με το <κώδικα code> tag. + +Προδιαμορφωμένο Preformatted Tag +

    Ο Δρόμος που δεν διάλεξα - The Road Not Taken

    +
    Robert Frost
    +	 Δυο δρόμοι διασταυρώθηκαν σ' ένα χρυσαφένιο δάσος ,
    +	 Και προς λύπη μου και τους δυο τα πόδια μου να ταξιδέψουν δεν μπορούσαν
    +	 Κι επί μακρόν εστάθηκα , καθώς ένας ήμουν ταξιδευτής μονάχος ,
    +	 κι έστρεψα το βλέμμα μου στον πρώτο όσο να χαθεί στο βάθος
    +	 μέχρι εκεί που χάνονταν στα άγρια χόρτα που βλαστούσαν.
    +
    +	Two roads diverged in a yellow wood,
    +	And sorry I could not travel both          (\_/)
    +	And be one traveler, long I stood         (='.'=)
    +	And looked down one as far as I could     (")_(")
    +	To where it bent in the undergrowth;
    +
    +	Then took the other, as just as fair,
    +	And having perhaps the better claim,          |\_/|
    +	Because it was grassy and wanted wear;       / @ @ \
    +	Though as for that the passing there        ( > º < )
    +	Had worn them really about the same,         `>>x<<´
    +	 /  O  \
    +	And both that morning equally lay
    +	In leaves no step had trodden black.
    +	Oh, I kept the first for another day!
    +	Yet knowing how way leads on to way,
    +	I doubted if I should ever come back.
    +
    +	I shall be telling this with a sigh
    +	Somewhere ages and ages hence:
    +	Two roads diverged in a wood, and I—
    +	I took the one less traveled by,
    +	And that has made all the difference.
    +
    +
    +	και μία μακριά, πάρα πολύ μακριά, υπερβολικά μακροσκελής δίχως νόημα πρόταση για να δούμε πως το χειρίζεται το θέμα εμφάνισης και αν αναδιπλώνεται, κρύβεται ή ξεχειλίζει;
    +
    +Quote Tag for short, inline quotes + +Προγραμματιστές, προγραμματιστές, developers... --Steve Ballmer + +Strike Tag (deprecated in HTML5) and S Tag + +Αυτή η ετικέτα είναι με διαγράμμιση strike-through κείμενο text. + +Μικρά Small Tag + +Αυτή η ετικέτα είναι μικρότερο smaller κείμενο text. + +Strong Tag + +Αυτή η ετικέτα δείχνει έντονο bold κείμενο text. + +Subscript Tag + +Getting our science styling on with H2 δύοO, which should push the "2" down. + +Superscript Tag + +Still sticking with science and Albert Einstein's E = MC2 δύο, which should lift the 2 up. + +Teletype Tag (obsolete in HTML5) + +Αυτή η ετικέτα δείχνει τυλετυπος teletype κείμενο, which is usually styled like the <κώδικα code> tag. + +Underline Tag deprecated in HTML 4, re-introduced in HTML5 with other semantics + +Αυτή η ετικέτα δείχνει υπογράμμιση underlined text. + +Variable Tag + +Αυτή η ετικέτα δείχνει παράμετροι variables.]]>
    + + 1809 + + + + + + + 0 + 0 + + + 0 + + + + + + + + +
    + + Επίπεδο 2 -Second Greek level + https://wpthemetestdata.wordpress.com//greek/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-2/ + Fri, 14 Feb 2020 10:31:47 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1811 + + + + 1811 + + + + + + + 1809 + 0 + + + 0 + + + + + + + + + + + Επίπεδο 3 + https://wpthemetestdata.wordpress.com/greek/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-2/%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-3/ + Fri, 14 Feb 2020 10:32:50 +0000 + themereviewteam + https://wpthemetestdata.wordpress.com/?page_id=1813 + + + + 1813 + + + + + + + 1811 + 0 + + + 0 + + + + + + + + + +
    +
    \ No newline at end of file diff --git a/packages/playground/data-liberation/tests/wxr/valid-wxr-1.0.xml b/packages/playground/data-liberation/tests/wxr/valid-wxr-1.0.xml new file mode 100644 index 0000000000..587e57123b --- /dev/null +++ b/packages/playground/data-liberation/tests/wxr/valid-wxr-1.0.xml @@ -0,0 +1,282 @@ + + + + + + + + + + + + + + + + + + + + + + Export Dataset + http://localhost/ + Just another WordPress site + Wed, 20 Oct 2010 14:10:09 +0000 + http://wordpress.org/?v=3.0.1 + en + 1.0 + http://localhost/ + http://localhost/ + alpha + beta + parent + uncategorized + childparent + chicken + face + news + roar + + http://wordpress.org/?v=3.0.1 + + + Hello world! + http://localhost/?p=1 + Wed, 20 Oct 2010 14:08:20 +0000 + + + + + + + http://localhost/?p=1 + + + + 1 + 2010-10-20 14:08:20 + 2010-10-20 14:08:20 + open + open + hello-world + publish + 0 + 0 + post + + 0 + + 1 + + + http://wordpress.org/ + + 2010-10-20 14:08:20 + 2010-10-20 14:08:20 + To delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.]]> + 1 + + 0 + 0 + + + + About + http://localhost/?page_id=2 + Wed, 20 Oct 2010 14:08:20 +0000 + + + http://localhost/?page_id=2 + + + + 2 + 2010-10-20 14:08:20 + 2010-10-20 14:08:20 + open + open + about + publish + 0 + 0 + page + + 0 + + _wp_page_template + + + + + Alpha post + http://localhost/?p=4 + Wed, 20 Oct 2010 14:09:37 +0000 + + + + + + + + + + + + + + + http://localhost/?p=4 + + + + 4 + 2010-10-20 14:09:37 + 2010-10-20 14:09:37 + open + open + alpha-post + publish + 0 + 0 + post + + 0 + + _edit_last + + + + _edit_lock + + + + _wp_old_slug + + + + + Child post + http://localhost/?p=6 + Wed, 20 Oct 2010 14:10:09 +0000 + + + + + + + + + + + + + + + http://localhost/?p=6 + + + + 6 + 2010-10-20 14:10:09 + 2010-10-20 14:10:09 + open + open + child-post + publish + 0 + 0 + post + + 0 + + _edit_last + + + + _edit_lock + + + + _wp_old_slug + + + + + Child page + http://localhost/?page_id=8 + Wed, 20 Oct 2010 14:10:35 +0000 + + + http://localhost/?page_id=8 + + + + 8 + 2010-10-20 14:10:35 + 2010-10-20 14:10:35 + open + closed + child-post + publish + 10 + 0 + page + + 0 + + _edit_last + + + + _edit_lock + + + + _wp_page_template + + + + + Parent page + http://localhost/?page_id=10 + Wed, 20 Oct 2010 14:10:44 +0000 + + + http://localhost/?page_id=10 + + + + 10 + 2010-10-20 14:10:44 + 2010-10-20 14:10:44 + open + open + parent-page + publish + 0 + 0 + page + + 0 + + _edit_lock + + + + _edit_last + + + + _wp_page_template + + + + + diff --git a/packages/playground/data-liberation/tests/wxr/valid-wxr-1.1.xml b/packages/playground/data-liberation/tests/wxr/valid-wxr-1.1.xml new file mode 100644 index 0000000000..cd039e8efd --- /dev/null +++ b/packages/playground/data-liberation/tests/wxr/valid-wxr-1.1.xml @@ -0,0 +1,112 @@ + + + + + + + + + + + + + + + + + + + + + + + Export Datasets + http://localhost/ + Just another WordPress site + Sat, 16 Oct 2010 20:53:18 +0000 + en + 1.1 + http://localhost/ + http://localhost/ + + 2johnjohndoe@example.org + + 3alpha + 22clippable + 40post_taxbieup + + http://wordpress.org/?v=3.1-alpha + + + Hello world! + http://localhost/?p=1 + Sat, 16 Oct 2010 20:53:18 +0000 + john + http://localhost/?p=1 + + + + 1 + 2010-10-16 20:53:18 + 2010-10-16 20:53:18 + open + open + hello-world + publish + 0 + 0 + post + + 0 + + + + + 1 + + + http://wordpress.org/ + + 2010-10-16 20:53:18 + 2010-10-16 20:53:18 + To delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.]]> + 1 + + 0 + 0 + + + + About + http://localhost/?page_id=2 + Sat, 16 Oct 2010 20:53:18 +0000 + john + http://localhost/?page_id=2 + + + + 2 + 2010-10-16 20:53:18 + 2010-10-16 20:53:18 + open + open + about + publish + 0 + 0 + page + + 0 + + _wp_page_template + + + + + diff --git a/packages/playground/data-liberation/tests/wxr/woocommerce-demo-products.xml b/packages/playground/data-liberation/tests/wxr/woocommerce-demo-products.xml new file mode 100644 index 0000000000..34cd460397 --- /dev/null +++ b/packages/playground/data-liberation/tests/wxr/woocommerce-demo-products.xml @@ -0,0 +1,4854 @@ + + + + + +WooCommerce Demo Store +http: +Just another WooCommerce store +Wed, 16 Jan 2019 13:09:24 +0000 +en-US +1.2 +http: +http: + + 1 + shopmanager + info@wordpress.org + + + + +https://wordpress.org/?v=5.0.3 + + V-Neck T-Shirt + https://stylish-press.wordpress.org/product/v-neck-t-shirt/ + Wed, 16 Jan 2019 13:01:52 +0000 + shopmanager + https://stylish-press.wordpress.org/product/v-neck-t-shirt/ + + + + 6 + 2019-01-16 13:01:52 + 2019-01-16 13:01:52 + open + closed + v-neck-t-shirt + publish + 0 + 0 + product + + 0 + + + + + + + + + + + _sku + + + + _sale_price_dates_from + + + + _sale_price_dates_to + + + + total_sales + + + + _tax_status + + + + _tax_class + + + + _manage_stock + + + + _backorders + + + + _low_stock_amount + + + + _sold_individually + + + + + + + + + + + + + + + + + + + + _upsell_ids + + + + _crosssell_ids + + + + _purchase_note + + + + _default_attributes + + + + _virtual + + + + _downloadable + + + + _product_image_gallery + + + + _download_limit + + + + _download_expiry + + + + _stock + + + + _stock_status + + + + _wc_average_rating + + + + _wc_rating_count + + + + _wc_review_count + + + + _downloadable_files + + + + _product_attributes + + + + _product_version + + + + _thumbnail_id + + + + _price + + + + _price + + + + _regular_price + + + + _sale_price + + + + + Hoodie + https://stylish-press.wordpress.org/product/hoodie/ + Wed, 16 Jan 2019 13:01:52 +0000 + shopmanager + https://stylish-press.wordpress.org/product/hoodie/ + + + + 7 + 2019-01-16 13:01:52 + 2019-01-16 13:01:52 + open + closed + hoodie + publish + 0 + 0 + product + + 0 + + + + + + + _sku + + + + _sale_price_dates_from + + + + _sale_price_dates_to + + + + total_sales + + + + _tax_status + + + + _tax_class + + + + _manage_stock + + + + _backorders + + + + _low_stock_amount + + + + _sold_individually + + + + + + + + + + + + + + + + + + + + _upsell_ids + + + + _crosssell_ids + + + + _purchase_note + + + + _default_attributes + + + + _virtual + + + + _downloadable + + + + _product_image_gallery + + + + _download_limit + + + + _download_expiry + + + + _stock + + + + _stock_status + + + + _wc_average_rating + + + + _wc_rating_count + + + + _wc_review_count + + + + _downloadable_files + + + + _product_attributes + + + + _product_version + + + + _thumbnail_id + + + + _price + + + + _price + + + + _regular_price + + + + _sale_price + + + + + Hoodie with Logo + https://stylish-press.wordpress.org/product/hoodie-with-logo/ + Wed, 16 Jan 2019 13:01:52 +0000 + shopmanager + https://stylish-press.wordpress.org/product/hoodie-with-logo/ + + + + 8 + 2019-01-16 13:01:52 + 2019-01-16 13:01:52 + open + closed + hoodie-with-logo + publish + 0 + 0 + product + + 0 + + + + + _sku + + + + _regular_price + + + + _sale_price + + + + _sale_price_dates_from + + + + _sale_price_dates_to + + + + total_sales + + + + _tax_status + + + + _tax_class + + + + _manage_stock + + + + _backorders + + + + _low_stock_amount + + + + _sold_individually + + + + + + + + + + + + + + + + + + + + _upsell_ids + + + + _crosssell_ids + + + + _purchase_note + + + + _default_attributes + + + + _virtual + + + + _downloadable + + + + _product_image_gallery + + + + _download_limit + + + + _download_expiry + + + + _stock + + + + _stock_status + + + + _wc_average_rating + + + + _wc_rating_count + + + + _wc_review_count + + + + _downloadable_files + + + + _product_attributes + + + + _product_version + + + + _price + + + + _thumbnail_id + + + + + T-Shirt + https://stylish-press.wordpress.org/product/t-shirt/ + Wed, 16 Jan 2019 13:01:52 +0000 + shopmanager + https://stylish-press.wordpress.org/product/t-shirt/ + + + + 9 + 2019-01-16 13:01:52 + 2019-01-16 13:01:52 + open + closed + t-shirt + publish + 0 + 0 + product + + 0 + + + + + _sku + + + + _regular_price + + + + _sale_price + + + + _sale_price_dates_from + + + + _sale_price_dates_to + + + + total_sales + + + + _tax_status + + + + _tax_class + + + + _manage_stock + + + + _backorders + + + + _low_stock_amount + + + + _sold_individually + + + + + + + + + + + + + + + + + + + + _upsell_ids + + + + _crosssell_ids + + + + _purchase_note + + + + _default_attributes + + + + _virtual + + + + _downloadable + + + + _product_image_gallery + + + + _download_limit + + + + _download_expiry + + + + _stock + + + + _stock_status + + + + _wc_average_rating + + + + _wc_rating_count + + + + _wc_review_count + + + + _downloadable_files + + + + _product_attributes + + + + _product_version + + + + _price + + + + _thumbnail_id + + + + + Beanie + https://stylish-press.wordpress.org/product/beanie/ + Wed, 16 Jan 2019 13:01:52 +0000 + shopmanager + https://stylish-press.wordpress.org/product/beanie/ + + + + 10 + 2019-01-16 13:01:52 + 2019-01-16 13:01:52 + open + closed + beanie + publish + 0 + 0 + product + + 0 + + + + + _sku + + + + _regular_price + + + + _sale_price + + + + _sale_price_dates_from + + + + _sale_price_dates_to + + + + total_sales + + + + _tax_status + + + + _tax_class + + + + _manage_stock + + + + _backorders + + + + _low_stock_amount + + + + _sold_individually + + + + + + + + + + + + + + + + + + + + _upsell_ids + + + + _crosssell_ids + + + + _purchase_note + + + + _default_attributes + + + + _virtual + + + + _downloadable + + + + _product_image_gallery + + + + _download_limit + + + + _download_expiry + + + + _stock + + + + _stock_status + + + + _wc_average_rating + + + + _wc_rating_count + + + + _wc_review_count + + + + _downloadable_files + + + + _product_attributes + + + + _product_version + + + + _price + + + + _thumbnail_id + + + + + Belt + https://stylish-press.wordpress.org/product/belt/ + Wed, 16 Jan 2019 13:01:52 +0000 + shopmanager + https://stylish-press.wordpress.org/product/belt/ + + + + 11 + 2019-01-16 13:01:52 + 2019-01-16 13:01:52 + open + closed + belt + publish + 0 + 0 + product + + 0 + + + + _sku + + + + _regular_price + + + + _sale_price + + + + _sale_price_dates_from + + + + _sale_price_dates_to + + + + total_sales + + + + _tax_status + + + + _tax_class + + + + _manage_stock + + + + _backorders + + + + _low_stock_amount + + + + _sold_individually + + + + + + + + + + + + + + + + + + + + _upsell_ids + + + + _crosssell_ids + + + + _purchase_note + + + + _default_attributes + + + + _virtual + + + + _downloadable + + + + _product_image_gallery + + + + _download_limit + + + + _download_expiry + + + + _stock + + + + _stock_status + + + + _wc_average_rating + + + + _wc_rating_count + + + + _wc_review_count + + + + _downloadable_files + + + + _product_attributes + + + + _product_version + + + + _price + + + + _thumbnail_id + + + + + Cap + https://stylish-press.wordpress.org/product/cap/ + Wed, 16 Jan 2019 13:01:53 +0000 + shopmanager + https://stylish-press.wordpress.org/product/cap/ + + + + 12 + 2019-01-16 13:01:53 + 2019-01-16 13:01:53 + open + closed + cap + publish + 0 + 0 + product + + 0 + + + + + + _sku + + + + _regular_price + + + + _sale_price + + + + _sale_price_dates_from + + + + _sale_price_dates_to + + + + total_sales + + + + _tax_status + + + + _tax_class + + + + _manage_stock + + + + _backorders + + + + _low_stock_amount + + + + _sold_individually + + + + + + + + + + + + + + + + + + + + _upsell_ids + + + + _crosssell_ids + + + + _purchase_note + + + + _default_attributes + + + + _virtual + + + + _downloadable + + + + _product_image_gallery + + + + _download_limit + + + + _download_expiry + + + + _stock + + + + _stock_status + + + + _wc_average_rating + + + + _wc_rating_count + + + + _wc_review_count + + + + _downloadable_files + + + + _product_attributes + + + + _product_version + + + + _price + + + + _thumbnail_id + + + + + Sunglasses + https://stylish-press.wordpress.org/product/sunglasses/ + Wed, 16 Jan 2019 13:01:53 +0000 + shopmanager + https://stylish-press.wordpress.org/product/sunglasses/ + + + + 13 + 2019-01-16 13:01:53 + 2019-01-16 13:01:53 + open + closed + sunglasses + publish + 0 + 0 + product + + 0 + + + + + _sku + + + + _regular_price + + + + _sale_price + + + + _sale_price_dates_from + + + + _sale_price_dates_to + + + + total_sales + + + + _tax_status + + + + _tax_class + + + + _manage_stock + + + + _backorders + + + + _low_stock_amount + + + + _sold_individually + + + + + + + + + + + + + + + + + + + + _upsell_ids + + + + _crosssell_ids + + + + _purchase_note + + + + _default_attributes + + + + _virtual + + + + _downloadable + + + + _product_image_gallery + + + + _download_limit + + + + _download_expiry + + + + _stock + + + + _stock_status + + + + _wc_average_rating + + + + _wc_rating_count + + + + _wc_review_count + + + + _downloadable_files + + + + _product_attributes + + + + _product_version + + + + _price + + + + _thumbnail_id + + + + + Hoodie with Pocket + https://stylish-press.wordpress.org/product/hoodie-with-pocket/ + Wed, 16 Jan 2019 13:01:53 +0000 + shopmanager + https://stylish-press.wordpress.org/product/hoodie-with-pocket/ + + + + 14 + 2019-01-16 13:01:53 + 2019-01-16 13:01:53 + open + closed + hoodie-with-pocket + publish + 0 + 0 + product + + 0 + + + + + + + + _sku + + + + _regular_price + + + + _sale_price + + + + _sale_price_dates_from + + + + _sale_price_dates_to + + + + total_sales + + + + _tax_status + + + + _tax_class + + + + _manage_stock + + + + _backorders + + + + _low_stock_amount + + + + _sold_individually + + + + + + + + + + + + + + + + + + + + _upsell_ids + + + + _crosssell_ids + + + + _purchase_note + + + + _default_attributes + + + + _virtual + + + + _downloadable + + + + _product_image_gallery + + + + _download_limit + + + + _download_expiry + + + + _stock + + + + _stock_status + + + + _wc_average_rating + + + + _wc_rating_count + + + + _wc_review_count + + + + _downloadable_files + + + + _product_attributes + + + + _product_version + + + + _price + + + + _thumbnail_id + + + + + Hoodie with Zipper + https://stylish-press.wordpress.org/product/hoodie-with-zipper/ + Wed, 16 Jan 2019 13:01:53 +0000 + shopmanager + https://stylish-press.wordpress.org/product/hoodie-with-zipper/ + + + + 15 + 2019-01-16 13:01:53 + 2019-01-16 13:01:53 + open + closed + hoodie-with-zipper + publish + 0 + 0 + product + + 0 + + + + + _sku + + + + _regular_price + + + + _sale_price + + + + _sale_price_dates_from + + + + _sale_price_dates_to + + + + total_sales + + + + _tax_status + + + + _tax_class + + + + _manage_stock + + + + _backorders + + + + _low_stock_amount + + + + _sold_individually + + + + + + + + + + + + + + + + + + + + _upsell_ids + + + + _crosssell_ids + + + + _purchase_note + + + + _default_attributes + + + + _virtual + + + + _downloadable + + + + _product_image_gallery + + + + _download_limit + + + + _download_expiry + + + + _stock + + + + _stock_status + + + + _wc_average_rating + + + + _wc_rating_count + + + + _wc_review_count + + + + _downloadable_files + + + + _product_attributes + + + + _product_version + + + + _price + + + + _thumbnail_id + + + + + Long Sleeve Tee + https://stylish-press.wordpress.org/product/long-sleeve-tee/ + Wed, 16 Jan 2019 13:01:53 +0000 + shopmanager + https://stylish-press.wordpress.org/product/long-sleeve-tee/ + + + + 16 + 2019-01-16 13:01:53 + 2019-01-16 13:01:53 + open + closed + long-sleeve-tee + publish + 0 + 0 + product + + 0 + + + + + _sku + + + + _regular_price + + + + _sale_price + + + + _sale_price_dates_from + + + + _sale_price_dates_to + + + + total_sales + + + + _tax_status + + + + _tax_class + + + + _manage_stock + + + + _backorders + + + + _low_stock_amount + + + + _sold_individually + + + + + + + + + + + + + + + + + + + + _upsell_ids + + + + _crosssell_ids + + + + _purchase_note + + + + _default_attributes + + + + _virtual + + + + _downloadable + + + + _product_image_gallery + + + + _download_limit + + + + _download_expiry + + + + _stock + + + + _stock_status + + + + _wc_average_rating + + + + _wc_rating_count + + + + _wc_review_count + + + + _downloadable_files + + + + _product_attributes + + + + _product_version + + + + _price + + + + _thumbnail_id + + + + + Polo + https://stylish-press.wordpress.org/product/polo/ + Wed, 16 Jan 2019 13:01:53 +0000 + shopmanager + https://stylish-press.wordpress.org/product/polo/ + + + + 17 + 2019-01-16 13:01:53 + 2019-01-16 13:01:53 + open + closed + polo + publish + 0 + 0 + product + + 0 + + + + + _sku + + + + _regular_price + + + + _sale_price + + + + _sale_price_dates_from + + + + _sale_price_dates_to + + + + total_sales + + + + _tax_status + + + + _tax_class + + + + _manage_stock + + + + _backorders + + + + _low_stock_amount + + + + _sold_individually + + + + + + + + + + + + + + + + + + + + _upsell_ids + + + + _crosssell_ids + + + + _purchase_note + + + + _default_attributes + + + + _virtual + + + + _downloadable + + + + _product_image_gallery + + + + _download_limit + + + + _download_expiry + + + + _stock + + + + _stock_status + + + + _wc_average_rating + + + + _wc_rating_count + + + + _wc_review_count + + + + _downloadable_files + + + + _product_attributes + + + + _product_version + + + + _price + + + + _thumbnail_id + + + + + Album + https://stylish-press.wordpress.org/product/album/ + Wed, 16 Jan 2019 13:01:54 +0000 + shopmanager + https://stylish-press.wordpress.org/product/album/ + + + + 18 + 2019-01-16 13:01:54 + 2019-01-16 13:01:54 + open + closed + album + publish + 0 + 0 + product + + 0 + + + + _sku + + + + _regular_price + + + + _sale_price + + + + _sale_price_dates_from + + + + _sale_price_dates_to + + + + total_sales + + + + _tax_status + + + + _tax_class + + + + _manage_stock + + + + _backorders + + + + _low_stock_amount + + + + _sold_individually + + + + _weight + + + + _length + + + + _width + + + + _height + + + + _upsell_ids + + + + _crosssell_ids + + + + _purchase_note + + + + _default_attributes + + + + _virtual + + + + _downloadable + + + + _product_image_gallery + + + + _download_limit + + + + _download_expiry + + + + _stock + + + + _stock_status + + + + _wc_average_rating + + + + _wc_rating_count + + + + _wc_review_count + + + + _downloadable_files + + + + _product_attributes + + + + _product_version + + + + _price + + + + _thumbnail_id + + + + + Single + https://stylish-press.wordpress.org/product/single/ + Wed, 16 Jan 2019 13:01:54 +0000 + shopmanager + https://stylish-press.wordpress.org/product/single/ + + + + 19 + 2019-01-16 13:01:54 + 2019-01-16 13:01:54 + open + closed + single + publish + 0 + 0 + product + + 0 + + + + _sku + + + + _regular_price + + + + _sale_price + + + + _sale_price_dates_from + + + + _sale_price_dates_to + + + + total_sales + + + + _tax_status + + + + _tax_class + + + + _manage_stock + + + + _backorders + + + + _low_stock_amount + + + + _sold_individually + + + + _weight + + + + _length + + + + _width + + + + _height + + + + _upsell_ids + + + + _crosssell_ids + + + + _purchase_note + + + + _default_attributes + + + + _virtual + + + + _downloadable + + + + _product_image_gallery + + + + _download_limit + + + + _download_expiry + + + + _stock + + + + _stock_status + + + + _wc_average_rating + + + + _wc_rating_count + + + + _wc_review_count + + + + _downloadable_files + + + + _product_attributes + + + + _product_version + + + + _price + + + + _thumbnail_id + + + + + V-Neck T-Shirt - Red + https://stylish-press.wordpress.org/product/v-neck-t-shirt/?attribute_pa_color=red + Wed, 16 Jan 2019 13:01:54 +0000 + shopmanager + https://stylish-press.wordpress.org/product/v-neck-t-shirt-red/ + + + + 20 + 2019-01-16 13:01:54 + 2019-01-16 13:01:54 + closed + closed + v-neck-t-shirt-red + publish + 6 + 0 + product_variation + + 0 + + _sku + + + + _regular_price + + + + _sale_price + + + + _sale_price_dates_from + + + + _sale_price_dates_to + + + + total_sales + + + + _tax_status + + + + _tax_class + + + + _manage_stock + + + + _backorders + + + + _low_stock_amount + + + + _sold_individually + + + + _weight + + + + _length + + + + _width + + + + _height + + + + _upsell_ids + + + + _crosssell_ids + + + + _purchase_note + + + + _default_attributes + + + + _virtual + + + + _downloadable + + + + _product_image_gallery + + + + _download_limit + + + + _download_expiry + + + + _stock + + + + _stock_status + + + + _wc_average_rating + + + + _wc_rating_count + + + + _wc_review_count + + + + _downloadable_files + + + + _product_attributes + + + + _product_version + + + + _price + + + + _variation_description + + + + _thumbnail_id + + + + attribute_pa_color + + + + attribute_pa_size + + + + + V-Neck T-Shirt - Green + https://stylish-press.wordpress.org/product/v-neck-t-shirt/?attribute_pa_color=green + Wed, 16 Jan 2019 13:01:54 +0000 + shopmanager + https://stylish-press.wordpress.org/product/v-neck-t-shirt-green/ + + + + 21 + 2019-01-16 13:01:54 + 2019-01-16 13:01:54 + closed + closed + v-neck-t-shirt-green + publish + 6 + 0 + product_variation + + 0 + + _sku + + + + _regular_price + + + + _sale_price + + + + _sale_price_dates_from + + + + _sale_price_dates_to + + + + total_sales + + + + _tax_status + + + + _tax_class + + + + _manage_stock + + + + _backorders + + + + _low_stock_amount + + + + _sold_individually + + + + _weight + + + + _length + + + + _width + + + + _height + + + + _upsell_ids + + + + _crosssell_ids + + + + _purchase_note + + + + _default_attributes + + + + _virtual + + + + _downloadable + + + + _product_image_gallery + + + + _download_limit + + + + _download_expiry + + + + _stock + + + + _stock_status + + + + _wc_average_rating + + + + _wc_rating_count + + + + _wc_review_count + + + + _downloadable_files + + + + _product_attributes + + + + _product_version + + + + _price + + + + _variation_description + + + + _thumbnail_id + + + + attribute_pa_color + + + + attribute_pa_size + + + + + V-Neck T-Shirt - Blue + https://stylish-press.wordpress.org/product/v-neck-t-shirt/?attribute_pa_color=blue + Wed, 16 Jan 2019 13:01:54 +0000 + shopmanager + https://stylish-press.wordpress.org/product/v-neck-t-shirt-blue/ + + + + 22 + 2019-01-16 13:01:54 + 2019-01-16 13:01:54 + closed + closed + v-neck-t-shirt-blue + publish + 6 + 0 + product_variation + + 0 + + _sku + + + + _regular_price + + + + _sale_price + + + + _sale_price_dates_from + + + + _sale_price_dates_to + + + + total_sales + + + + _tax_status + + + + _tax_class + + + + _manage_stock + + + + _backorders + + + + _low_stock_amount + + + + _sold_individually + + + + _weight + + + + _length + + + + _width + + + + _height + + + + _upsell_ids + + + + _crosssell_ids + + + + _purchase_note + + + + _default_attributes + + + + _virtual + + + + _downloadable + + + + _product_image_gallery + + + + _download_limit + + + + _download_expiry + + + + _stock + + + + _stock_status + + + + _wc_average_rating + + + + _wc_rating_count + + + + _wc_review_count + + + + _downloadable_files + + + + _product_attributes + + + + _product_version + + + + _price + + + + _wpcom_is_markdown + + + + _wp_old_slug + + + + _variation_description + + + + _thumbnail_id + + + + attribute_pa_color + + + + attribute_pa_size + + + + + Hoodie - Red, No + https://stylish-press.wordpress.org/product/hoodie/?attribute_pa_color=red&attribute_logo=no + Wed, 16 Jan 2019 13:01:54 +0000 + shopmanager + https://stylish-press.wordpress.org/product/hoodie-red-no + + + + 23 + 2019-01-16 13:01:54 + 2019-01-16 13:01:54 + closed + closed + hoodie-red-no + publish + 7 + 1 + product_variation + + 0 + + _sku + + + + _regular_price + + + + _sale_price + + + + _sale_price_dates_from + + + + _sale_price_dates_to + + + + total_sales + + + + _tax_status + + + + _tax_class + + + + _manage_stock + + + + _backorders + + + + _low_stock_amount + + + + _sold_individually + + + + _weight + + + + _length + + + + _width + + + + _height + + + + _upsell_ids + + + + _crosssell_ids + + + + _purchase_note + + + + _default_attributes + + + + _virtual + + + + _downloadable + + + + _product_image_gallery + + + + _download_limit + + + + _download_expiry + + + + _stock + + + + _stock_status + + + + _wc_average_rating + + + + _wc_rating_count + + + + _wc_review_count + + + + _downloadable_files + + + + _product_attributes + + + + _product_version + + + + _price + + + + _variation_description + + + + _thumbnail_id + + + + attribute_pa_color + + + + attribute_logo + + + + + Hoodie - Green, No + https://stylish-press.wordpress.org/product/hoodie/?attribute_pa_color=green&attribute_logo=No + Wed, 16 Jan 2019 13:01:54 +0000 + shopmanager + https://stylish-press.wordpress.org/product/hoodie-green-no/ + + + + 24 + 2019-01-16 13:01:54 + 2019-01-16 13:01:54 + closed + closed + hoodie-green-no + publish + 7 + 2 + product_variation + + 0 + + _sku + + + + _regular_price + + + + _sale_price + + + + _sale_price_dates_from + + + + _sale_price_dates_to + + + + total_sales + + + + _tax_status + + + + _tax_class + + + + _manage_stock + + + + _backorders + + + + _low_stock_amount + + + + _sold_individually + + + + _weight + + + + _length + + + + _width + + + + _height + + + + _upsell_ids + + + + _crosssell_ids + + + + _purchase_note + + + + _default_attributes + + + + _virtual + + + + _downloadable + + + + _product_image_gallery + + + + _download_limit + + + + _download_expiry + + + + _stock + + + + _stock_status + + + + _wc_average_rating + + + + _wc_rating_count + + + + _wc_review_count + + + + _downloadable_files + + + + _product_attributes + + + + _product_version + + + + _price + + + + _variation_description + + + + _thumbnail_id + + + + attribute_pa_color + + + + attribute_logo + + + + + Hoodie - Blue, No + https://stylish-press.wordpress.org/product/hoodie/?attribute_pa_color=blue&attribute_logo=No + Wed, 16 Jan 2019 13:01:55 +0000 + shopmanager + https://stylish-press.wordpress.org/product/hoodie-blue-no + + + + 25 + 2019-01-16 13:01:55 + 2019-01-16 13:01:55 + closed + closed + hoodie-blue-no + publish + 7 + 3 + product_variation + + 0 + + _sku + + + + _regular_price + + + + _sale_price + + + + _sale_price_dates_from + + + + _sale_price_dates_to + + + + total_sales + + + + _tax_status + + + + _tax_class + + + + _manage_stock + + + + _backorders + + + + _low_stock_amount + + + + _sold_individually + + + + _weight + + + + _length + + + + _width + + + + _height + + + + _upsell_ids + + + + _crosssell_ids + + + + _purchase_note + + + + _default_attributes + + + + _virtual + + + + _downloadable + + + + _product_image_gallery + + + + _download_limit + + + + _download_expiry + + + + _stock + + + + _stock_status + + + + _wc_average_rating + + + + _wc_rating_count + + + + _wc_review_count + + + + _downloadable_files + + + + _product_attributes + + + + _product_version + + + + _price + + + + _variation_description + + + + _thumbnail_id + + + + attribute_pa_color + + + + attribute_logo + + + + + T-Shirt with Logo + https://stylish-press.wordpress.org/product/t-shirt-with-logo/ + Wed, 16 Jan 2019 13:01:55 +0000 + shopmanager + https://stylish-press.wordpress.org/product/t-shirt-with-logo/ + + + + 26 + 2019-01-16 13:01:55 + 2019-01-16 13:01:55 + open + closed + t-shirt-with-logo + publish + 0 + 0 + product + + 0 + + + + + _sku + + + + _regular_price + + + + _sale_price + + + + _sale_price_dates_from + + + + _sale_price_dates_to + + + + total_sales + + + + _tax_status + + + + _tax_class + + + + _manage_stock + + + + _backorders + + + + _low_stock_amount + + + + _sold_individually + + + + + + + + + + + + + + + + + + + + _upsell_ids + + + + _crosssell_ids + + + + _purchase_note + + + + _default_attributes + + + + _virtual + + + + _downloadable + + + + _product_image_gallery + + + + _download_limit + + + + _download_expiry + + + + _stock + + + + _stock_status + + + + _wc_average_rating + + + + _wc_rating_count + + + + _wc_review_count + + + + _downloadable_files + + + + _product_attributes + + + + _product_version + + + + _price + + + + _thumbnail_id + + + + + Beanie with Logo + https://stylish-press.wordpress.org/product/beanie-with-logo/ + Wed, 16 Jan 2019 13:01:55 +0000 + shopmanager + https://stylish-press.wordpress.org/product/beanie-with-logo/ + + + + 27 + 2019-01-16 13:01:55 + 2019-01-16 13:01:55 + open + closed + beanie-with-logo + publish + 0 + 0 + product + + 0 + + + + + _sku + + + + _regular_price + + + + _sale_price + + + + _sale_price_dates_from + + + + _sale_price_dates_to + + + + total_sales + + + + _tax_status + + + + _tax_class + + + + _manage_stock + + + + _backorders + + + + _low_stock_amount + + + + _sold_individually + + + + + + + + + + + + + + + + + + + + _upsell_ids + + + + _crosssell_ids + + + + _purchase_note + + + + _default_attributes + + + + _virtual + + + + _downloadable + + + + _product_image_gallery + + + + _download_limit + + + + _download_expiry + + + + _stock + + + + _stock_status + + + + _wc_average_rating + + + + _wc_rating_count + + + + _wc_review_count + + + + _downloadable_files + + + + _product_attributes + + + + _product_version + + + + _price + + + + _thumbnail_id + + + + + Logo Collection + https://stylish-press.wordpress.org/product/logo-collection/ + Wed, 16 Jan 2019 13:01:55 +0000 + shopmanager + https://stylish-press.wordpress.org/product/logo-collection/ + + + + 28 + 2019-01-16 13:01:55 + 2019-01-16 13:01:55 + open + closed + logo-collection + publish + 0 + 0 + product + + 0 + + + + _sku + + + + _sale_price_dates_from + + + + _sale_price_dates_to + + + + total_sales + + + + _tax_status + + + + _tax_class + + + + _manage_stock + + + + _backorders + + + + _low_stock_amount + + + + _sold_individually + + + + _weight + + + + _length + + + + _width + + + + _height + + + + _upsell_ids + + + + _crosssell_ids + + + + _purchase_note + + + + _default_attributes + + + + _virtual + + + + _downloadable + + + + _product_image_gallery + + + + _download_limit + + + + _download_expiry + + + + _stock + + + + _stock_status + + + + _wc_average_rating + + + + _wc_rating_count + + + + _wc_review_count + + + + _downloadable_files + + + + _product_attributes + + + + _product_version + + + + _children + + + + _thumbnail_id + + + + _price + + + + _price + + + + + WordPress Pennant + https://stylish-press.wordpress.org/product/wordpress-pennant/ + Wed, 16 Jan 2019 13:01:55 +0000 + shopmanager + https://stylish-press.wordpress.org/product/wordpress-pennant/ + + + + 29 + 2019-01-16 13:01:55 + 2019-01-16 13:01:55 + open + closed + wordpress-pennant + publish + 0 + 0 + product + + 0 + + + + _sku + + + + _regular_price + + + + _sale_price + + + + _sale_price_dates_from + + + + _sale_price_dates_to + + + + total_sales + + + + _tax_status + + + + _tax_class + + + + _manage_stock + + + + _backorders + + + + _low_stock_amount + + + + _sold_individually + + + + _weight + + + + _length + + + + _width + + + + _height + + + + _upsell_ids + + + + _crosssell_ids + + + + _purchase_note + + + + _default_attributes + + + + _virtual + + + + _downloadable + + + + _product_image_gallery + + + + _download_limit + + + + _download_expiry + + + + _stock + + + + _stock_status + + + + _wc_average_rating + + + + _wc_rating_count + + + + _wc_review_count + + + + _downloadable_files + + + + _product_attributes + + + + _product_version + + + + _price + + + + _thumbnail_id + + + + _product_url + + + + _button_text + + + + + Hoodie - Blue, Yes + https://stylish-press.wordpress.org/product/hoodie/?attribute_pa_color=blue&attribute_logo=Yes + Wed, 16 Jan 2019 13:01:55 +0000 + shopmanager + https://stylish-press.wordpress.org/product/hoodie-blue-yes/ + + + + 30 + 2019-01-16 13:01:55 + 2019-01-16 13:01:55 + closed + closed + hoodie-blue-yes + publish + 7 + 0 + product_variation + + 0 + + _sku + + + + _regular_price + + + + _sale_price + + + + _sale_price_dates_from + + + + _sale_price_dates_to + + + + total_sales + + + + _tax_status + + + + _tax_class + + + + _manage_stock + + + + _backorders + + + + _low_stock_amount + + + + _sold_individually + + + + _weight + + + + _length + + + + _width + + + + _height + + + + _upsell_ids + + + + _crosssell_ids + + + + _purchase_note + + + + _default_attributes + + + + _virtual + + + + _downloadable + + + + _product_image_gallery + + + + _download_limit + + + + _download_expiry + + + + _stock + + + + _stock_status + + + + _wc_average_rating + + + + _wc_rating_count + + + + _wc_review_count + + + + _downloadable_files + + + + _product_attributes + + + + _product_version + + + + _price + + + + _variation_description + + + + _thumbnail_id + + + + attribute_pa_color + + + + attribute_logo + + + + + vneck-tee-2.jpg + https://stylish-press.wordpress.org/?attachment_id=31 + Wed, 16 Jan 2019 13:01:56 +0000 + shopmanager + https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/vneck-tee-2.jpg + + + + 31 + 2019-01-16 13:01:56 + 2019-01-16 13:01:56 + open + closed + vneck-tee-2-jpg + inherit + 6 + 0 + attachment + + 0 + https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/vneck-tee-2.jpg + + _wc_attachment_source + + + + + vnech-tee-green-1.jpg + https://stylish-press.wordpress.org/?attachment_id=32 + Wed, 16 Jan 2019 13:01:57 +0000 + shopmanager + https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/vnech-tee-green-1.jpg + + + + 32 + 2019-01-16 13:01:57 + 2019-01-16 13:01:57 + open + closed + vnech-tee-green-1-jpg + inherit + 6 + 0 + attachment + + 0 + https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/vnech-tee-green-1.jpg + + _wc_attachment_source + + + + + vnech-tee-blue-1.jpg + https://stylish-press.wordpress.org/?attachment_id=33 + Wed, 16 Jan 2019 13:01:58 +0000 + shopmanager + https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/vnech-tee-blue-1.jpg + + + + 33 + 2019-01-16 13:01:58 + 2019-01-16 13:01:58 + open + closed + vnech-tee-blue-1-jpg + inherit + 6 + 0 + attachment + + 0 + https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/vnech-tee-blue-1.jpg + + _wc_attachment_source + + + + + hoodie-2.jpg + https://stylish-press.wordpress.org/?attachment_id=34 + Wed, 16 Jan 2019 13:01:58 +0000 + shopmanager + https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/hoodie-2.jpg + + + + 34 + 2019-01-16 13:01:58 + 2019-01-16 13:01:58 + open + closed + hoodie-2-jpg + inherit + 7 + 0 + attachment + + 0 + https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/hoodie-2.jpg + + _wc_attachment_source + + + + + hoodie-blue-1.jpg + https://stylish-press.wordpress.org/?attachment_id=35 + Wed, 16 Jan 2019 13:01:59 +0000 + shopmanager + https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/hoodie-blue-1.jpg + + + + 35 + 2019-01-16 13:01:59 + 2019-01-16 13:01:59 + open + closed + hoodie-blue-1-jpg + inherit + 7 + 0 + attachment + + 0 + https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/hoodie-blue-1.jpg + + _wc_attachment_source + + + + + hoodie-green-1.jpg + https://stylish-press.wordpress.org/?attachment_id=36 + Wed, 16 Jan 2019 13:02:00 +0000 + shopmanager + https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/hoodie-green-1.jpg + + + + 36 + 2019-01-16 13:02:00 + 2019-01-16 13:02:00 + open + closed + hoodie-green-1-jpg + inherit + 7 + 0 + attachment + + 0 + https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/hoodie-green-1.jpg + + _wc_attachment_source + + + + + hoodie-with-logo-2.jpg + https://stylish-press.wordpress.org/?attachment_id=37 + Wed, 16 Jan 2019 13:02:01 +0000 + shopmanager + https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/hoodie-with-logo-2.jpg + + + + 37 + 2019-01-16 13:02:01 + 2019-01-16 13:02:01 + open + closed + hoodie-with-logo-2-jpg + inherit + 7 + 0 + attachment + + 0 + https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/hoodie-with-logo-2.jpg + + _wc_attachment_source + + + + + tshirt-2.jpg + https://stylish-press.wordpress.org/?attachment_id=38 + Wed, 16 Jan 2019 13:02:02 +0000 + shopmanager + https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/tshirt-2.jpg + + + + 38 + 2019-01-16 13:02:02 + 2019-01-16 13:02:02 + open + closed + tshirt-2-jpg + inherit + 9 + 0 + attachment + + 0 + https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/tshirt-2.jpg + + _wc_attachment_source + + + + + beanie-2.jpg + https://stylish-press.wordpress.org/?attachment_id=39 + Wed, 16 Jan 2019 13:02:02 +0000 + shopmanager + https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/beanie-2.jpg + + + + 39 + 2019-01-16 13:02:02 + 2019-01-16 13:02:02 + open + closed + beanie-2-jpg + inherit + 10 + 0 + attachment + + 0 + https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/beanie-2.jpg + + _wc_attachment_source + + + + + belt-2.jpg + https://stylish-press.wordpress.org/?attachment_id=40 + Wed, 16 Jan 2019 13:02:03 +0000 + shopmanager + https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/belt-2.jpg + + + + 40 + 2019-01-16 13:02:03 + 2019-01-16 13:02:03 + open + closed + belt-2-jpg + inherit + 11 + 0 + attachment + + 0 + https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/belt-2.jpg + + _wc_attachment_source + + + + + cap-2.jpg + https://stylish-press.wordpress.org/?attachment_id=41 + Wed, 16 Jan 2019 13:02:04 +0000 + shopmanager + https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/cap-2.jpg + + + + 41 + 2019-01-16 13:02:04 + 2019-01-16 13:02:04 + open + closed + cap-2-jpg + inherit + 12 + 0 + attachment + + 0 + https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/cap-2.jpg + + _wc_attachment_source + + + + + sunglasses-2.jpg + https://stylish-press.wordpress.org/?attachment_id=42 + Wed, 16 Jan 2019 13:02:05 +0000 + shopmanager + https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/sunglasses-2.jpg + + + + 42 + 2019-01-16 13:02:05 + 2019-01-16 13:02:05 + open + closed + sunglasses-2-jpg + inherit + 13 + 0 + attachment + + 0 + https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/sunglasses-2.jpg + + _wc_attachment_source + + + + + hoodie-with-pocket-2.jpg + https://stylish-press.wordpress.org/?attachment_id=43 + Wed, 16 Jan 2019 13:02:06 +0000 + shopmanager + https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/hoodie-with-pocket-2.jpg + + + + 43 + 2019-01-16 13:02:06 + 2019-01-16 13:02:06 + open + closed + hoodie-with-pocket-2-jpg + inherit + 14 + 0 + attachment + + 0 + https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/hoodie-with-pocket-2.jpg + + _wc_attachment_source + + + + + hoodie-with-zipper-2.jpg + https://stylish-press.wordpress.org/?attachment_id=44 + Wed, 16 Jan 2019 13:02:06 +0000 + shopmanager + https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/hoodie-with-zipper-2.jpg + + + + 44 + 2019-01-16 13:02:06 + 2019-01-16 13:02:06 + open + closed + hoodie-with-zipper-2-jpg + inherit + 15 + 0 + attachment + + 0 + https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/hoodie-with-zipper-2.jpg + + _wc_attachment_source + + + + + long-sleeve-tee-2.jpg + https://stylish-press.wordpress.org/?attachment_id=45 + Wed, 16 Jan 2019 13:02:07 +0000 + shopmanager + https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/long-sleeve-tee-2.jpg + + + + 45 + 2019-01-16 13:02:07 + 2019-01-16 13:02:07 + open + closed + long-sleeve-tee-2-jpg + inherit + 16 + 0 + attachment + + 0 + https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/long-sleeve-tee-2.jpg + + _wc_attachment_source + + + + + polo-2.jpg + https://stylish-press.wordpress.org/?attachment_id=46 + Wed, 16 Jan 2019 13:02:08 +0000 + shopmanager + https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/polo-2.jpg + + + + 46 + 2019-01-16 13:02:08 + 2019-01-16 13:02:08 + open + closed + polo-2-jpg + inherit + 17 + 0 + attachment + + 0 + https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/polo-2.jpg + + _wc_attachment_source + + + + + album-1.jpg + https://stylish-press.wordpress.org/?attachment_id=47 + Wed, 16 Jan 2019 13:02:09 +0000 + shopmanager + https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/album-1.jpg + + + + 47 + 2019-01-16 13:02:09 + 2019-01-16 13:02:09 + open + closed + album-1-jpg + inherit + 18 + 0 + attachment + + 0 + https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/album-1.jpg + + _wc_attachment_source + + + + + single-1.jpg + https://stylish-press.wordpress.org/?attachment_id=48 + Wed, 16 Jan 2019 13:02:10 +0000 + shopmanager + https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/single-1.jpg + + + + 48 + 2019-01-16 13:02:10 + 2019-01-16 13:02:10 + open + closed + single-1-jpg + inherit + 19 + 0 + attachment + + 0 + https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/single-1.jpg + + _wc_attachment_source + + + + + t-shirt-with-logo-1.jpg + https://stylish-press.wordpress.org/?attachment_id=49 + Wed, 16 Jan 2019 13:02:11 +0000 + shopmanager + https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/t-shirt-with-logo-1.jpg + + + + 49 + 2019-01-16 13:02:11 + 2019-01-16 13:02:11 + open + closed + t-shirt-with-logo-1-jpg + inherit + 26 + 0 + attachment + + 0 + https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/t-shirt-with-logo-1.jpg + + _wc_attachment_source + + + + + beanie-with-logo-1.jpg + https://stylish-press.wordpress.org/?attachment_id=50 + Wed, 16 Jan 2019 13:02:12 +0000 + shopmanager + https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/beanie-with-logo-1.jpg + + + + 50 + 2019-01-16 13:02:12 + 2019-01-16 13:02:12 + open + closed + beanie-with-logo-1-jpg + inherit + 27 + 0 + attachment + + 0 + https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/beanie-with-logo-1.jpg + + _wc_attachment_source + + + + + logo-1.jpg + https://stylish-press.wordpress.org/?attachment_id=51 + Wed, 16 Jan 2019 13:02:13 +0000 + shopmanager + https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/logo-1.jpg + + + + 51 + 2019-01-16 13:02:13 + 2019-01-16 13:02:13 + open + closed + logo-1-jpg + inherit + 28 + 0 + attachment + + 0 + https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/logo-1.jpg + + _wc_attachment_source + + + + + pennant-1.jpg + https://stylish-press.wordpress.org/?attachment_id=52 + Wed, 16 Jan 2019 13:02:13 +0000 + shopmanager + https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/pennant-1.jpg + + + + 52 + 2019-01-16 13:02:13 + 2019-01-16 13:02:13 + open + closed + pennant-1-jpg + inherit + 29 + 0 + attachment + + 0 + https://raw.githubusercontent.com/wordpress/blueprints/stylish-press/blueprints/stylish-press/woo-product-images/pennant-1.jpg + + _wc_attachment_source + + + + + \ No newline at end of file