diff --git a/bin/run-server-next-gen-importer.sh b/bin/run-server-next-gen-importer.sh new file mode 100644 index 00000000..db7badb6 --- /dev/null +++ b/bin/run-server-next-gen-importer.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +# @TODO: Figure out how to set up the dev environment to be as similar to +# production as possible. +npx @wp-playground/cli@latest \ + server \ + --php=8.2 \ + --mount=`pwd`/plugins/next-gen-importer:/wordpress/wp-content/plugins/next-gen-importer \ + --blueprint=./blueprint-next-gen-importer.json \ + --mount=`pwd`:/wordpress/wp-content/data-liberation \ + --mount=`pwd`/debug.log:/wordpress/wp-content/debug.log + \ No newline at end of file diff --git a/blueprint-next-gen-importer.json b/blueprint-next-gen-importer.json new file mode 100644 index 00000000..c6c29b54 --- /dev/null +++ b/blueprint-next-gen-importer.json @@ -0,0 +1,16 @@ +{ + "login": true, + "constants": { + "WP_DEBUG": true, + "WP_DEBUG_LOG": "/wordpress/wp-content/debug.log", + "WP_DEBUG_DISPLAY": true, + "DISABLE_WP_CRON": false + }, + "plugins": ["wp-crontrol"], + "steps": [ + { + "step": "activatePlugin", + "pluginPath": "next-gen-importer/plugin.php" + } + ] +} \ No newline at end of file diff --git a/components/BlockParser/class-wp-block-parser-block.php b/components/BlockParser/class-wp-block-parser-block.php index b5be53a0..0399d3b9 100644 --- a/components/BlockParser/class-wp-block-parser-block.php +++ b/components/BlockParser/class-wp-block-parser-block.php @@ -1,4 +1,5 @@ original_html ) as $block ) { if ( $block['blockName'] === null ) { - $html_converter = new MarkupProcessorConsumer( WP_HTML_Processor::create_fragment( $block['innerHTML'] ) ); + $html_converter = new MarkupProcessorConsumer( \WordPress\HTML\WP_HTML_Processor::create_fragment( $block['innerHTML'] ) ); $result = $html_converter->consume(); $block_markup .= $result->get_block_markup() . "\n"; $metadata = array_merge( $metadata, $result->get_all_metadata() ); diff --git a/components/DataLiberation/DataFormatConsumer/MarkupProcessorConsumer.php b/components/DataLiberation/DataFormatConsumer/MarkupProcessorConsumer.php index 8073c8da..219e03fa 100644 --- a/components/DataLiberation/DataFormatConsumer/MarkupProcessorConsumer.php +++ b/components/DataLiberation/DataFormatConsumer/MarkupProcessorConsumer.php @@ -6,8 +6,8 @@ use WordPress\DataLiberation\DataLiberationException; use WordPress\DataLiberation\Importer\ImportUtils; use WordPress\XML\XMLProcessor; -use WP_HTML_Processor; -use WP_HTML_Tag_Processor; +use WordPress\HTML\WP_HTML_Processor; +use WordPress\HTML\WP_HTML_Tag_Processor; /** * Creates block markup from a WP_HTML_Processor or WP_XML_Processor instance. diff --git a/components/DataLiberation/DataFormatProducer/AnnotatedBlockMarkupProducer.php b/components/DataLiberation/DataFormatProducer/AnnotatedBlockMarkupProducer.php index b340b28f..90b6bca0 100644 --- a/components/DataLiberation/DataFormatProducer/AnnotatedBlockMarkupProducer.php +++ b/components/DataLiberation/DataFormatProducer/AnnotatedBlockMarkupProducer.php @@ -3,7 +3,7 @@ namespace WordPress\DataLiberation\DataFormatProducer; use WordPress\DataLiberation\DataFormatConsumer\BlocksWithMetadata; -use WP_HTML_Tag_Processor; +use WordPress\HTML\WP_HTML_Tag_Processor; /** * Turns Block Markup + Metadata into a metadata-annotated Block Markup. diff --git a/components/DataLiberation/DataLiberationHTMLProcessor.php b/components/DataLiberation/DataLiberationHTMLProcessor.php index 2b05376a..782b0da3 100644 --- a/components/DataLiberation/DataLiberationHTMLProcessor.php +++ b/components/DataLiberation/DataLiberationHTMLProcessor.php @@ -2,8 +2,8 @@ namespace WordPress\DataLiberation; -use WP_HTML_Processor; -use WP_HTML_Tag_Processor; +use WordPress\HTML\WP_HTML_Processor; +use WordPress\HTML\WP_HTML_Tag_Processor; class DataLiberationHTMLProcessor extends WP_HTML_Processor { diff --git a/components/DataLiberation/EntityReader/EPubEntityReader.php b/components/DataLiberation/EntityReader/EPubEntityReader.php index 9f93d96e..7bfa47a6 100644 --- a/components/DataLiberation/EntityReader/EPubEntityReader.php +++ b/components/DataLiberation/EntityReader/EPubEntityReader.php @@ -8,6 +8,7 @@ use WordPress\XML\XMLProcessor; use function WordPress\Filesystem\wp_join_unix_paths; +use function WordPress\Polyfill\_doing_it_wrong; /** * https://www.w3.org/AudioVideo/ebook/ diff --git a/components/DataLiberation/EntityReader/FilesystemEntityReader.php b/components/DataLiberation/EntityReader/FilesystemEntityReader.php index 7b175e0c..c00f5b57 100644 --- a/components/DataLiberation/EntityReader/FilesystemEntityReader.php +++ b/components/DataLiberation/EntityReader/FilesystemEntityReader.php @@ -12,7 +12,7 @@ use WordPress\Filesystem\Visitor\FilesystemVisitor; use WordPress\Markdown\MarkdownConsumer; use WordPress\XML\XMLProcessor; -use WP_HTML_Processor; +use WordPress\HTML\WP_HTML_Processor; use function WordPress\Filesystem\wp_join_unix_paths; @@ -277,7 +277,7 @@ public function next_entity(): bool { $result = $converter->consume(); break; case 'html': - $converter = new MarkupProcessorConsumer( WP_HTML_Processor::create_fragment( $content ) ); + $converter = new MarkupProcessorConsumer( \WordPress\HTML\WP_HTML_Processor::create_fragment( $content ) ); $result = $converter->consume(); break; default: diff --git a/components/DataLiberation/EntityReader/WXREntityReader.php b/components/DataLiberation/EntityReader/WXREntityReader.php index 0d5d8622..05c925f4 100644 --- a/components/DataLiberation/EntityReader/WXREntityReader.php +++ b/components/DataLiberation/EntityReader/WXREntityReader.php @@ -6,6 +6,7 @@ use WordPress\DataLiberation\ImportEntity; use WordPress\XML\XMLProcessor; use WordPress\XML\XMLUnsupportedException; +use function WordPress\Polyfill\_doing_it_wrong; /** * Data Liberation API: WP_WXR_Entity_Reader class @@ -819,7 +820,11 @@ private function read_next_entity() { $this->entity_data['terms'][] = array( 'taxonomy' => $this->last_opener_attributes['domain'], 'slug' => $this->last_opener_attributes['nicename'], - 'description' => $this->text_buffer, + /** + * trim() – in XML, trailing whitespace in text nodes must be ignored. + * @TODO: Only trim text nodes, not CDATA sections. + */ + 'description' => trim( $this->text_buffer ), ); $this->text_buffer = ''; continue; @@ -838,8 +843,12 @@ private function read_next_entity() { continue; } - $key = $this->KNOWN_ENITIES[ $this->entity_tag ]['fields'][ $tag_with_namespace ]; - $this->entity_data[ $key ] = $this->text_buffer; + $key = $this->KNOWN_ENITIES[ $this->entity_tag ]['fields'][ $tag_with_namespace ]; + /** + * trim() – in XML, trailing whitespace in text nodes must be ignored. + * @TODO: Only trim text nodes, not CDATA sections. + */ + $this->entity_data[ $key ] = trim( $this->text_buffer ); $this->text_buffer = ''; } while ( $this->xml->next_token() ); diff --git a/components/DataLiberation/Importer/AttachmentDownloader.php b/components/DataLiberation/Importer/AttachmentDownloader.php index 055f44bc..a4d18737 100644 --- a/components/DataLiberation/Importer/AttachmentDownloader.php +++ b/components/DataLiberation/Importer/AttachmentDownloader.php @@ -8,6 +8,7 @@ use WordPress\HttpClient\Request; use function WordPress\Filesystem\wp_join_unix_paths; +use function WordPress\Polyfill\_doing_it_wrong; class AttachmentDownloader { private $client; diff --git a/components/DataLiberation/Importer/EntityImporter.php b/components/DataLiberation/Importer/EntityImporter.php index 21d94b2d..503fcf5b 100644 --- a/components/DataLiberation/Importer/EntityImporter.php +++ b/components/DataLiberation/Importer/EntityImporter.php @@ -6,6 +6,15 @@ * * Handle missing fields. Some WXR files have comments, but no author information. * Some others have posts, but no content. What should the importer do in these * cases? + * * How to import comments without authors? + * * Remove all instances of "setting a temporary value to re-map later." Just stream-import + * everything so that it doesn't have to be revisited. + * * If a child post is seen before the parent post, we need to handle that. Either: + * * Skip the child post and communicate we need one more pass to import the parent + * * Create a placeholder post in lieu of the parent post. Then, when the parent post is seen, + * update the placeholder post with the parent post's data. + * * Apply topological sort in the caller (e.g. in MySQL, in SQLite, or by appending to a temporary file) + * * Run another pass to UPDATE specific database entries and connect the posts with each other. Risky! * * Performant deduplication by GUID. When a post with a given GUID is found, let's * make a decision: * - Skip importing the new one @@ -17,53 +26,23 @@ * * Ignore the ones from WXR? * * Don't run any blocking downloads of attachments here. We're only inserting * the data at this point. All the downloads have already been processed by now. + * * Add unit tests for this class. + * * Rename this to WordPressDBEntityWriter */ namespace WordPress\DataLiberation\Importer; use InvalidArgumentException; -use WordPress\DataLiberation\DataLiberationException; use WordPress\DataLiberation\ImportEntity; +use WP_Error; -class EntityImporter { +use function WordPress\Polyfill\_doing_it_wrong; +use function WordPress\Polyfill\__; +use function WordPress\Polyfill\apply_filters; +use function WordPress\Polyfill\do_action; - /** - * Version of WXR we're importing. - * - * Defaults to 1.0 for compatibility. Typically overridden by a - * `` tag at the start of the file. - * - * @var string - */ - protected $version = '1.0'; +class EntityImporter { - /** - * Regular expression for checking if a post references an attachment - * - * Note: This is a quick, weak check just to exclude text-only posts. More - * vigorous checking is done later to verify. - * - * @TODO: Move to WP_HTML_Processor - */ - const REGEX_HAS_ATTACHMENT_REFS = '! - ( - # Match anything with an image or attachment class - class=[\'"].*?\b(wp-image-\d+|attachment-[\w\-]+)\b - | - # Match anything that looks like an upload URL - src=[\'"][^\'"]*( - [0-9]{4}/[0-9]{2}/[^\'"]+\.(jpg|jpeg|png|gif) - | - content/uploads[^\'"]+ - )[\'"] - )!ix'; - - // information to import from WXR file - protected $categories = array(); - protected $tags = array(); - protected $base_url = ''; - - protected $logger; protected $options = array(); // NEW STYLE @@ -71,9 +50,12 @@ class=[\'"].*?\b(wp-image-\d+|attachment-[\w\-]+)\b protected $requires_remapping = array(); protected $exists = array(); protected $user_slug_override = array(); + protected $missing_menu_items = array(); - protected $url_remap = array(); - protected $featured_images = array(); + /** + * Events collection + */ + protected $events = array(); /** * Constructor @@ -97,11 +79,10 @@ public function __construct( $options = array() ) { ); $this->mapping = $empty_types; - $this->mapping['user_slug'] = array(); + $this->mapping['user_slug'] = $this->options['user_slug_mapping'] ?? array(); $this->mapping['term_id'] = array(); $this->requires_remapping = $empty_types; $this->exists = $empty_types; - $this->logger = new Logger(); $this->options = wp_parse_args( $options, @@ -118,7 +99,32 @@ public function __construct( $options = array() ) { require_once ABSPATH . 'wp-admin/includes/media.php'; } + /** + * Get all collected events + * + * @return array + */ + public function get_events() { + return $this->events; + } + + /** + * Add an event to the collection + * + * @param string $entity_type + * @param string $type + * @param string $message + * @param array $entity_data + * @param mixed $error + */ + protected function append_event( $entity_type, $type, $message, $entity_data = null, $error = null ) { + $this->events[] = new EntityImporterEvent( $entity_type, $type, $message, $entity_data, $error ); + } + public function import_entity( ImportEntity $entity ) { + // Clear events before importing each entity. + $this->events = array(); + $type = $entity->get_type(); $data = $entity->get_data(); switch ( $entity->get_type() ) { @@ -144,12 +150,15 @@ public function import_entity( ImportEntity $entity ) { } public function import_site_option( $data ) { - $this->logger->info( + $this->append_event( + 'site_option', + EntityImporterEvent::SUCCESS, sprintf( /* translators: %s: option name */ __( 'Imported site option "%s"', 'wordpress-importer' ), $data['option_name'] - ) + ), + $data ); update_option( $data['option_name'], $data['option_value'] ); @@ -217,14 +226,18 @@ public function import_user( $data ) { $user_id = wp_insert_user( wp_slash( $userdata ) ); if ( is_wp_error( $user_id ) ) { - $this->logger->error( + $this->append_event( + 'user', + EntityImporterEvent::FAILURE, sprintf( /* translators: %s: user login */ - __( 'Failed to import user "%s"', 'wordpress-importer' ), - $userdata['user_login'] - ) + __( 'Failed to import user "%s": %s', 'wordpress-importer' ), + $userdata['user_login'], + $user_id->get_error_message() + ), + $data, + $user_id ); - $this->logger->debug( $user_id->get_error_message() ); /** * User processing failed. @@ -242,20 +255,15 @@ public function import_user( $data ) { } $this->mapping['user_slug'][ $original_slug ] = $user_id; - $this->logger->info( + $this->append_event( + 'user', + EntityImporterEvent::SUCCESS, sprintf( /* translators: %s: user login */ __( 'Imported user "%s"', 'wordpress-importer' ), $userdata['user_login'] - ) - ); - $this->logger->debug( - sprintf( - /* translators: 1: original user ID, 2: new user ID */ - __( 'User %1$d remapped to %2$d', 'wordpress-importer' ), - $original_id, - $user_id - ) + ), + $data ); // TODO: Implement meta handling once WXR includes it @@ -296,6 +304,18 @@ public function import_term( $data ) { $this->mapping['term'][ $mapping_key ] = $existing; $this->mapping['term_id'][ $original_id ] = $existing; + $this->append_event( + 'term', + EntityImporterEvent::SKIPPED, + sprintf( + /* translators: 1: term name, 2: taxonomy name */ + __( 'Term "%1$s" (%2$s) already exists', 'wordpress-importer' ), + $data['name'], + $data['taxonomy'] + ), + $data + ); + return false; } @@ -337,15 +357,19 @@ public function import_term( $data ) { $result = wp_insert_term( $data['name'], $data['taxonomy'], $termdata ); if ( is_wp_error( $result ) ) { - $this->logger->warning( + $this->append_event( + 'term', + EntityImporterEvent::FAILURE, sprintf( /* translators: 1: taxonomy name, 2: term name */ - __( 'Failed to import %1$s %2$s', 'wordpress-importer' ), + __( 'Failed to import %1$s %2$s: %3$s', 'wordpress-importer' ), $data['taxonomy'], - $data['name'] - ) + $data['name'], + $result->get_error_message() + ), + $data, + $result ); - $this->logger->debug( $result->get_error_message() ); do_action( 'wp_import_insert_term_failed', $result, $data ); /** @@ -365,21 +389,16 @@ public function import_term( $data ) { $this->mapping['term'][ $mapping_key ] = $term_id; $this->mapping['term_id'][ $original_id ] = $term_id; - $this->logger->info( + $this->append_event( + 'term', + EntityImporterEvent::SUCCESS, sprintf( /* translators: 1: term name, 2: taxonomy name */ __( 'Imported "%1$s" (%2$s)', 'wordpress-importer' ), $data['name'], $data['taxonomy'] - ) - ); - $this->logger->debug( - sprintf( - /* translators: 1: original term ID, 2: new term ID */ - __( 'Term %1$d remapped to %2$d', 'wordpress-importer' ), - $original_id, - $term_id - ) + ), + $data ); do_action( 'wp_import_insert_term', $term_id, $data ); @@ -461,19 +480,21 @@ public function import_post( $data ) { */ $data = apply_filters( 'wxr_importer_pre_process_post', $data ); if ( empty( $data ) ) { - $this->logger->debug( 'Skipping post, empty data' ); + $this->append_event( 'post', EntityImporterEvent::SKIPPED, 'Skipping post, empty data', $data ); return false; } $meta = array(); + $comments = array(); + $terms = array(); $original_id = isset( $data['post_id'] ) ? (int) $data['post_id'] : 0; $parent_id = isset( $data['post_parent'] ) ? (int) $data['post_parent'] : 0; // Have we already processed this? if ( isset( $this->mapping['post'][ $original_id ] ) ) { - $this->logger->debug( 'Skipping post, already processed' ); + $this->append_event( 'post', EntityImporterEvent::SKIPPED, 'Skipping post, already processed', $data ); return; } @@ -482,13 +503,16 @@ public function import_post( $data ) { $post_type_object = get_post_type_object( $post_type ); // Is this type even valid? if ( ! $post_type_object ) { - $this->logger->warning( + $this->append_event( + 'post', + EntityImporterEvent::FAILURE, sprintf( /* translators: 1: post title, 2: post type */ __( 'Failed to import "%1$s": Invalid post type %2$s', 'wordpress-importer' ), $data['post_title'], $post_type - ) + ), + $data ); return false; @@ -496,13 +520,16 @@ public function import_post( $data ) { $post_exists = $this->post_exists( $data ); if ( $post_exists ) { - $this->logger->info( + $this->append_event( + 'post', + EntityImporterEvent::SKIPPED, sprintf( /* translators: 1: post type name, 2: post title */ __( '%1$s "%2$s" already exists.', 'wordpress-importer' ), $post_type_object->labels->singular_name, $data['post_title'] - ) + ), + $data ); /** @@ -584,15 +611,19 @@ public function import_post( $data ) { } if ( is_wp_error( $post_id ) ) { - $this->logger->error( + $this->append_event( + 'post', + EntityImporterEvent::FAILURE, sprintf( /* translators: 1: post title, 2: post type name */ - __( 'Failed to import "%1$s" (%2$s)', 'wordpress-importer' ), + __( 'Failed to import "%1$s" (%2$s): %3$s', 'wordpress-importer' ), $data['post_title'], - $post_type_object->labels->singular_name - ) + $post_type_object->labels->singular_name, + $post_id->get_error_message() + ), + $data, + $post_id ); - $this->logger->debug( $post_id->get_error_message() ); /** * Post processing failed. @@ -621,21 +652,16 @@ public function import_post( $data ) { } $this->mark_post_exists( $data, $post_id ); - $this->logger->info( + $this->append_event( + 'post', + EntityImporterEvent::SUCCESS, sprintf( /* translators: 1: post title, 2: post type name */ __( 'Imported "%1$s" (%2$s)', 'wordpress-importer' ), $data['post_title'] ?? '', $post_type_object->labels->singular_name - ) - ); - $this->logger->debug( - sprintf( - /* translators: 1: original post ID, 2: new post ID */ - __( 'Post %1$d remapped to %2$d', 'wordpress-importer' ), - $original_id, - $post_id - ) + ), + $data ); /** @@ -708,8 +734,6 @@ protected function process_menu_item_meta( $post_id, $data, $meta ) { $original_object_id = get_post_meta( $post_id, '_menu_item_object_id', true ); $object_id = null; - $this->logger->debug( sprintf( 'Processing menu item %s', $item_type ) ); - $requires_remapping = false; switch ( $item_type ) { case 'taxonomy': @@ -737,8 +761,7 @@ protected function process_menu_item_meta( $post_id, $data, $meta ) { default: // associated object is missing or not imported yet, we'll retry later - $this->missing_menu_items[] = $item; - $this->logger->debug( 'Unknown menu item type' ); + $this->missing_menu_items[] = $data; break; } @@ -751,7 +774,6 @@ protected function process_menu_item_meta( $post_id, $data, $meta ) { return; } - $this->logger->debug( sprintf( 'Menu item %d mapped to %d', $original_object_id, $object_id ) ); update_post_meta( $post_id, '_menu_item_object_id', wp_slash( $object_id ) ); } @@ -765,7 +787,7 @@ protected function process_menu_item_meta( $post_id, $data, $meta ) { */ protected function process_attachment( $post, $meta ) { if ( ! isset( $post['local_file_path'] ) || ! file_exists( $post['local_file_path'] ) ) { - throw new DataLiberationException( 'attachment_processing_error', __( 'File does not exist', 'wordpress-importer' ) ); + return new WP_Error( 'attachment_processing_error', __( 'File does not exist', 'wordpress-importer' ) ); } // try to use _wp_attached file for upload folder placement to ensure the same location as the export site @@ -784,7 +806,7 @@ protected function process_attachment( $post, $meta ) { $info = wp_check_filetype( $post['local_file_path'] ); if ( ! $info ) { - throw new DataLiberationException( 'attachment_processing_error', __( 'Invalid file type', 'wordpress-importer' ) ); + return new WP_Error( 'attachment_processing_error', __( 'Invalid file type', 'wordpress-importer' ) ); } $post['post_mime_type'] = $info['type']; @@ -894,11 +916,6 @@ public function import_post_meta( $meta_item, $post_id ) { update_post_meta( $post_id, $key, $value ); do_action( 'import_post_meta', $post_id, $key, $value ); - - // if the post has a featured image, take note of this in case of remap - if ( '_thumbnail_id' === $key ) { - $this->featured_images[ $post_id ] = (int) $value; - } } return true; @@ -1188,57 +1205,3 @@ public static function sort_comments_by_id( $a, $b ) { return $a['comment_id'] - $b['comment_id']; } } - -/** - * @TODO how to treat this? Should this class even exist? - * how does WordPress handle different levels? It - * seems useful for usage in wp-cli, Blueprints, - * and other non-web environments. - */ -// phpcs:ignore Generic.Files.OneObjectStructurePerFile.MultipleFound -class Logger { - /** - * Log a debug message. - * - * @param string $message Message to log - */ - public function debug( $message ) { - // echo( '[DEBUG] ' . $message ); - } - - /** - * Log an info message. - * - * @param string $message Message to log - */ - public function info( $message ) { - // echo( '[INFO] ' . $message ); - } - - /** - * Log a warning message. - * - * @param string $message Message to log - */ - public function warning( $message ) { - echo( '[WARNING] ' . $message ); - } - - /** - * Log an error message. - * - * @param string $message Message to log - */ - public function error( $message ) { - echo( '[ERROR] ' . $message ); - } - - /** - * Log a notice message. - * - * @param string $message Message to log - */ - public function notice( $message ) { - // echo( '[NOTICE] ' . $message ); - } -} diff --git a/components/DataLiberation/Importer/EntityImporterEvent.php b/components/DataLiberation/Importer/EntityImporterEvent.php new file mode 100644 index 00000000..a22c21cc --- /dev/null +++ b/components/DataLiberation/Importer/EntityImporterEvent.php @@ -0,0 +1,25 @@ +entity_type = $entity_type; + $this->type = $type; + $this->message = $message; + $this->entity_data = $entity_data; + $this->error = $error; + } +} \ No newline at end of file diff --git a/components/DataLiberation/Importer/ImportSession.php b/components/DataLiberation/Importer/ImportSession.php index 8874e145..389df20c 100644 --- a/components/DataLiberation/Importer/ImportSession.php +++ b/components/DataLiberation/Importer/ImportSession.php @@ -2,11 +2,12 @@ namespace WordPress\DataLiberation\Importer; +use WordPress\ByteStream\ReadStream\FileReadStream; use WordPress\DataLiberation\DataLiberationException; use WP_Query; -use function get_all_post_meta_flat; use function is_wp_error; +use function WordPress\Polyfill\_doing_it_wrong; /** * Manages import session data in the WordPress database. @@ -94,6 +95,7 @@ public static function create( $args ) { 'file_name' => $args['file_name'] ?? null, 'source_url' => $args['source_url'] ?? null, 'attachment_id' => $args['attachment_id'] ?? null, + 'log_file' => $args['log_file'] ?? null, ), ), true @@ -186,6 +188,14 @@ public function get_metadata() { ); } + public function get_meta_by_key($key) { + return get_post_meta( $this->post_id, $key, true ); + } + + public function set_meta_by_key($key, $value) { + update_post_meta( $this->post_id, $key, $value ); + } + public function get_data_source() { return get_post_meta( $this->post_id, 'data_source', true ); } @@ -259,7 +269,7 @@ public function count_remaining_entities() { * * @param array $newly_imported_entities The new progress data with keys: posts, comments, terms, attachments, users */ - public function bump_imported_entities_counts( $newly_imported_entities ) { + public function bump_imported_entities_counts( $newly_imported_entities, $events = array() ) { foreach ( $newly_imported_entities as $field => $count ) { if ( ! in_array( $field, static::PROGRESS_ENTITIES, true ) ) { _doing_it_wrong( @@ -295,6 +305,23 @@ public function bump_imported_entities_counts( $newly_imported_entities ) { $wpdb->query($sql); */ } + + foreach ( $events as $event ) { + $this->append_to_log_file( '[' . $event->type . '] ' . $event->message ); + } + } + + public function count_frontloading_stubs() { + global $wpdb; + + return (int) $wpdb->get_var( + $wpdb->prepare( + "SELECT COUNT(*) FROM $wpdb->posts + WHERE post_type = 'frontloading_stub' + AND post_parent = %d", + $this->post_id + ) + ); } public function count_awaiting_frontloading_stubs() { @@ -329,6 +356,30 @@ public function count_unfinished_frontloading_stubs() { ); } + public function count_succeeded_frontloading_stubs() { + global $wpdb; + + return (int) $wpdb->get_var( + $wpdb->prepare( + "SELECT COUNT(*) FROM $wpdb->posts + WHERE post_type = 'frontloading_stub' + AND post_parent = %d + AND post_status = %s", + $this->post_id, + self::FRONTLOAD_STATUS_SUCCEEDED + ) + ); + } + + public function get_frontloading_stats() { + return array( + 'awaiting_download' => $this->count_awaiting_frontloading_stubs(), + 'unfinished' => $this->count_unfinished_frontloading_stubs(), + 'succeeded' => $this->count_succeeded_frontloading_stubs(), + 'total' => $this->count_frontloading_stubs(), + ); + } + public function mark_frontloading_errors_as_ignored() { global $wpdb; $wpdb->update( @@ -336,11 +387,44 @@ public function mark_frontloading_errors_as_ignored() { array( 'post_status' => self::FRONTLOAD_STATUS_IGNORED ), array( 'post_type' => 'frontloading_stub', - // 'post_status !=' => self::FRONTLOAD_STATUS_SUCCEEDED, + 'post_status !=' => self::FRONTLOAD_STATUS_SUCCEEDED, ) ); } + public function append_to_log_file($message) { + $path = $this->ensure_log_file_exists(); + if(!$path) { + return false; + } + file_put_contents($path, $message . "\n", FILE_APPEND); + return true; + } + + public function stream_log_file() { + $path = $this->ensure_log_file_exists(); + if(!$path) { + return false; + } + $stream = FileReadStream::from_path($path); + // @TODO: Create a 'PrivateFileReadStream', or so, that automatically + // inserts / skips the initial PHP guard. + $stream->seek(strlen("\n")); + return $stream; + } + + private function ensure_log_file_exists() { + $log_file = $this->get_meta_by_key('log_file'); + if(!$log_file) { + return false; + } + if(!file_exists($log_file)) { + $php_guard = "\n"; + file_put_contents($log_file, $php_guard); + } + return $log_file; + } + public function get_frontloading_stubs( $options = array() ) { $query = new WP_Query( array( @@ -373,7 +457,7 @@ function ( $post ) { ); update_meta_cache( 'post', $ids ); foreach ( $posts as $post ) { - $post->meta = get_all_post_meta_flat( $post->ID ); + $post->meta = ImportUtils::get_all_post_meta_flat( $post->ID ); } return $posts; @@ -527,7 +611,7 @@ public function bump_frontloading_progress( $frontloading_progress, $events = ar continue; } - update_post_meta( $placeholder->ID, 'last_error', $event->error ); + update_post_meta( $placeholder->ID, 'last_error', $event->error ? $event->error->__toString() : null ); $attempts = get_post_meta( $placeholder->ID, 'attempts', true ); $new_attempts = $attempts; @@ -598,11 +682,13 @@ public function set_stage( $stage ) { if ( $stage === $this->get_stage() ) { return; } + $old_stage = $this->get_stage(); if ( StreamImporter::STAGE_FINISHED === $stage ) { update_post_meta( $this->post_id, 'finished_at', time() ); } update_post_meta( $this->post_id, 'current_stage', $stage ); $this->cached_stage = $stage; + $this->append_to_log_file(sprintf('Stage advanced from %s to %s', $old_stage, $stage)); } public function get_started_at() { diff --git a/components/DataLiberation/Importer/ImportUtils.php b/components/DataLiberation/Importer/ImportUtils.php index d35da736..dd696edc 100644 --- a/components/DataLiberation/Importer/ImportUtils.php +++ b/components/DataLiberation/Importer/ImportUtils.php @@ -120,4 +120,14 @@ public static function remove_first_h1_block_from_block_markup( $html ) { ), ); } + + public static function get_all_post_meta_flat( $post_id ) { + return array_map( + function ( $value ) { + return $value[0]; + }, + get_post_meta( $post_id ) + ); + } + } diff --git a/components/DataLiberation/Importer/RetryFrontloadingIterator.php b/components/DataLiberation/Importer/RetryFrontloadingIterator.php index 212f04a5..08f8ce5e 100644 --- a/components/DataLiberation/Importer/RetryFrontloadingIterator.php +++ b/components/DataLiberation/Importer/RetryFrontloadingIterator.php @@ -20,6 +20,7 @@ public function __construct( $import_post_id ) { /** * @return mixed */ + #[\ReturnTypeWillChange] public function current() { if ( ! $this->current ) { return null; @@ -34,6 +35,7 @@ public function current() { ); } + #[\ReturnTypeWillChange] public function next(): void { if ( empty( $this->placeholders ) ) { $this->query_next_page(); @@ -45,6 +47,7 @@ public function next(): void { /** * @return mixed */ + #[\ReturnTypeWillChange] public function key() { if ( ! $this->current ) { return null; @@ -53,6 +56,7 @@ public function key() { return $this->current->ID; } + #[\ReturnTypeWillChange] public function valid(): bool { if ( $this->rewound ) { $this->next(); @@ -61,6 +65,7 @@ public function valid(): bool { return null !== $this->current; } + #[\ReturnTypeWillChange] public function rewind(): void { $this->placeholders = array(); $this->last_id_on_page = null; @@ -106,7 +111,7 @@ function ( $placeholder ) { ); foreach ( $this->placeholders as $placeholder ) { - $placeholder->meta = get_all_post_meta_flat( $placeholder->ID ); + $placeholder->meta = ImportUtils::get_all_post_meta_flat( $placeholder->ID ); } } } diff --git a/components/DataLiberation/Importer/StreamImporter.php b/components/DataLiberation/Importer/StreamImporter.php index cbf86b62..ecc7f68b 100644 --- a/components/DataLiberation/Importer/StreamImporter.php +++ b/components/DataLiberation/Importer/StreamImporter.php @@ -11,6 +11,9 @@ use WordPress\HttpClient\ByteStream\RequestReadStream; use function WordPress\DataLiberation\URL\is_child_url_of; +use function WordPress\Polyfill\_doing_it_wrong; +use function WordPress\Polyfill\apply_filters; +use function WordPress\Polyfill\do_action; /** * Idea: @@ -94,7 +97,7 @@ class StreamImporter { const STAGE_INITIAL = '#initial'; const STAGE_INDEX_ENTITIES = '#index_entities'; - const STAGE_TOPOLOGICAL_SORT = '#topological_sort'; + const STAGE_CONFIGURE_IMPORT = '#configure_import'; const STAGE_FRONTLOAD_ASSETS = '#frontload_assets'; const STAGE_IMPORT_ENTITIES = '#import_entities'; const STAGE_FINISHED = '#finished'; @@ -102,7 +105,7 @@ class StreamImporter { const STAGES_IN_ORDER = array( self::STAGE_INITIAL, self::STAGE_INDEX_ENTITIES, - self::STAGE_TOPOLOGICAL_SORT, + self::STAGE_CONFIGURE_IMPORT, self::STAGE_FRONTLOAD_ASSETS, self::STAGE_IMPORT_ENTITIES, self::STAGE_FINISHED, @@ -321,7 +324,9 @@ protected function __construct( ) { $this->entity_reader_factory = $entity_reader_factory; $this->options = $options; - $this->set_source_site_url( $options['source_site_url'] ); + if(isset($options['source_site_url'])) { + $this->set_source_site_url( $options['source_site_url'] ); + } if ( isset( $options['source_media_root_urls'] ) ) { foreach ( $options['source_media_root_urls'] as $source_media_root_url ) { @@ -361,10 +366,10 @@ public function next_step() { if ( true === $this->index_next_entities() ) { return true; } - $this->next_stage = self::STAGE_TOPOLOGICAL_SORT; + $this->next_stage = self::STAGE_CONFIGURE_IMPORT; return false; - case self::STAGE_TOPOLOGICAL_SORT: + case self::STAGE_CONFIGURE_IMPORT: // @TODO: Different modes: // 1. skip, reprocess // 2. sort topologically @@ -714,7 +719,10 @@ protected function frontload_next_entity() { return true; } - protected function get_current_entity() { + public function get_current_entity() { + if(!$this->entity_iterator) { + return null; + } $entity = $this->entity_iterator->current(); $entity = apply_filters( 'data_liberation.stream_importer.preprocess_entity', @@ -902,6 +910,15 @@ public function get_imported_entities_counts() { return $this->imported_entities_counts; } + /** + * Get entity importer events + * + * @return array + */ + public function get_entity_sink_events() { + return $this->entity_sink ? $this->entity_sink->get_events() : array(); + } + protected function enqueue_attachment_download( string $raw_url, $options = array() ) { $output_filename = $this->new_asset_filename( $options['original_url'] ?? $raw_url, diff --git a/components/DataLiberation/Tests/.DS_Store b/components/DataLiberation/Tests/.DS_Store new file mode 100644 index 00000000..e50686c8 Binary files /dev/null and b/components/DataLiberation/Tests/.DS_Store differ diff --git a/components/DataLiberation/Tests/FilesystemEntityReaderTest.php b/components/DataLiberation/Tests/FilesystemEntityReaderTest.php index 0631acfb..b1edcc97 100644 --- a/components/DataLiberation/Tests/FilesystemEntityReaderTest.php +++ b/components/DataLiberation/Tests/FilesystemEntityReaderTest.php @@ -153,7 +153,7 @@ private function assertMarkupMatches( $markup, $expected ) { } private function normalize_markup( $markup ) { - return WP_HTML_Processor::create_fragment( + return \WordPress\HTML\WP_HTML_Processor::create_fragment( preg_replace( '/\s+/', ' ', trim( $markup ) ) )->serialize(); } diff --git a/components/DataLiberation/Tests/HTMLEntityReaderTest.php b/components/DataLiberation/Tests/HTMLEntityReaderTest.php index 71c2fefe..b1ad623d 100644 --- a/components/DataLiberation/Tests/HTMLEntityReaderTest.php +++ b/components/DataLiberation/Tests/HTMLEntityReaderTest.php @@ -15,7 +15,7 @@ public function test_entity_reader() {

It is our pleasure to announce that WordPress 6.8 was released

Last week, WordPress 6.8 was released.

HTML; - $html_processor = WP_HTML_Processor::create_fragment( $html ); + $html_processor = \WordPress\HTML\WP_HTML_Processor::create_fragment( $html ); $producer = new MarkupProcessorConsumer( $html_processor ); $blocks_with_meta = $producer->consume(); @@ -70,7 +70,7 @@ public function test_entity_reader() { } private function normalize_markup( $markup ) { - $processor = WP_HTML_Processor::create_fragment( $markup ); + $processor = \WordPress\HTML\WP_HTML_Processor::create_fragment( $markup ); $serialized = $processor->serialize(); return $serialized; diff --git a/components/DataLiberation/Tests/MarkupProcessorConsumerTest.php b/components/DataLiberation/Tests/MarkupProcessorConsumerTest.php index 348968ce..d0153ad2 100644 --- a/components/DataLiberation/Tests/MarkupProcessorConsumerTest.php +++ b/components/DataLiberation/Tests/MarkupProcessorConsumerTest.php @@ -18,7 +18,7 @@ public function test_metadata_extraction() {

WordPress 6.8 was released

Last week, WordPress 6.8 was released. This release includes a new default theme, a new block editor experience, and a new block library. It also includes a new block editor experience, and a new block library.

HTML; - $consumer = new MarkupProcessorConsumer( new WP_HTML_Processor( $html ) ); + $consumer = new MarkupProcessorConsumer( \WordPress\HTML\WP_HTML_Processor::create_fragment( $html ) ); $blocks_with_meta = $consumer->consume(); $metadata = $blocks_with_meta->get_all_metadata(); $expected_metadata = array( @@ -37,14 +37,14 @@ public function test_metadata_extraction() { * @dataProvider provider_test_conversion */ public function test_html_to_blocks_conversion( $html, $expected ) { - $consumer = new MarkupProcessorConsumer( new WP_HTML_Processor( $html ) ); + $consumer = new MarkupProcessorConsumer( \WordPress\HTML\WP_HTML_Processor::create_fragment( $html ) ); $blocks_with_meta = $consumer->consume(); $this->assertEquals( $this->normalize_markup( $expected ), $this->normalize_markup( $blocks_with_meta->get_block_markup() ) ); } private function normalize_markup( $markup ) { - $processor = WP_HTML_Processor::create_fragment( $markup ); + $processor = \WordPress\HTML\WP_HTML_Processor::create_fragment( $markup ); $serialized = $processor->serialize(); $serialized = trim( str_replace( @@ -137,7 +137,7 @@ public static function provider_test_conversion() { public function test_html_to_blocks_excerpt() { $this->markTestSkipped( 'Skipping this test because of outdated fixture.' ); - // $consumer = new MarkupProcessorConsumer( WP_HTML_Processor::create_fragment( $input ) ); + // $consumer = new MarkupProcessorConsumer( \WordPress\HTML\WP_HTML_Processor::create_fragment( $input ) ); // $blocks_with_meta = $consumer->consume(); // $blocks = $blocks_with_meta->get_block_markup(); diff --git a/components/DataLiberation/URL/URLInTextProcessor.php b/components/DataLiberation/URL/URLInTextProcessor.php index 3311cf07..76faaaea 100644 --- a/components/DataLiberation/URL/URLInTextProcessor.php +++ b/components/DataLiberation/URL/URLInTextProcessor.php @@ -3,7 +3,7 @@ namespace WordPress\DataLiberation\URL; use WordPress\DataLiberation\BlockMarkup\URL; -use WP_HTML_Text_Replacement; +use WordPress\HTML\WP_HTML_Text_Replacement; /** * Finds string fragments that look like URLs and allow replacing them. @@ -278,7 +278,7 @@ public function set_raw_url( $new_url ) { $new_url = substr( $new_url, strpos( $new_url, '://' ) + 3 ); } $this->raw_url = $new_url; - $this->lexical_updates[ $this->url_starts_at ] = new WP_HTML_Text_Replacement( + $this->lexical_updates[ $this->url_starts_at ] = new \WordPress\HTML\WP_HTML_Text_Replacement( $this->url_starts_at, $this->url_length, $new_url diff --git a/components/Filesystem/Tests/FunctionsTest.php b/components/Filesystem/Tests/FunctionsTest.php index 05431e97..1b0f9a81 100644 --- a/components/Filesystem/Tests/FunctionsTest.php +++ b/components/Filesystem/Tests/FunctionsTest.php @@ -4,7 +4,6 @@ use function WordPress\Filesystem\wp_join_unix_paths; use function WordPress\Filesystem\wp_unix_dirname; -use ValueError; class FunctionsTest extends TestCase { public function testBasicPathJoining() { diff --git a/components/Git/GitRemote.php b/components/Git/GitRemote.php index e5677534..af08935e 100644 --- a/components/Git/GitRemote.php +++ b/components/Git/GitRemote.php @@ -242,10 +242,42 @@ private function resolve_missing_blobs_oids( $remote_commit_hash, $options ) { $commit = $this->repository->read_object( $remote_commit_hash )->as_commit(); $subpath = trim( $path, '/' ); - $requested_tree_oid = $this->repository->find_hash_by_path( $subpath, $commit->hash ); + $parent_path = dirname( $subpath ); + if( $parent_path === '.' || $parent_path === '' ) { + $parent_path = '/'; + } + + $descentant_blobs_oids = []; + if( $parent_path !== '/' ) { + $parent_tree_oid = $this->repository->find_hash_by_path( $parent_path, $commit->hash ); + $parent_tree = $this->repository->read_object( $parent_tree_oid )->as_tree(); + $parent_tree_entries = $parent_tree->entries; + $object_name = basename( $subpath ); + foreach( $parent_tree_entries as $entry ) { + if( $entry->name === $object_name ) { + $requested_object_oid = $entry->hash; + break; + } + } + + // If the object is not found, it is a blob. Trees are always fetched. + if ( ! $this->repository->has_object( $requested_object_oid ) ) { + return [$requested_object_oid]; + } + + $object = $this->repository->read_object( $requested_object_oid ); + if( $object->get_object_type_name() === 'blob' ) { + // Requested object is a blob and, since we've just read it, it isn't + // missing. We're done. + return []; + } + } + + // Requested object is a tree, we need to compute all its descendants + $requested_object_oid = $this->repository->find_hash_by_path( $subpath, $commit->hash ); $descentant_blobs_oids = get_all_descendant_oids_in_tree( $this->repository, - $requested_tree_oid, + $requested_object_oid, array( 'object_types' => array( TreeEntry::FILE_MODE_REGULAR_EXECUTABLE, @@ -365,7 +397,7 @@ public function fetch( $full_branch_name, $options = array() ) { // Make double sure we have all the relevant objects from the remote commit. // @TODO: investigate why sometimes the root tree is missing and address the // root cause instead of plugging the hole with a bandaid. - if ( ! isset( $options['path'] ) || $options['path'] === '/' || $options['path'] === '' ) { + if ( ! isset( $options['path'] ) || $options['path'] === '/' || $options['path'] === '' ) { if ( ! $this->repository->has_all_objects_from_commit( $remote_head ) ) { $this->git_upload_pack( array( diff --git a/components/Git/GitRepository.php b/components/Git/GitRepository.php index 3efb4b1d..089bc484 100644 --- a/components/Git/GitRepository.php +++ b/components/Git/GitRepository.php @@ -14,6 +14,7 @@ use function WordPress\Filesystem\wp_unix_dirname; use function WordPress\Filesystem\wp_join_unix_paths; use function WordPress\Filesystem\wp_unix_path_resolve_dots; +use function WordPress\Polyfill\_doing_it_wrong; class GitRepository { @@ -356,6 +357,7 @@ private function resolve_branch_file_path( $branch_name ) { if ( strpos( $branch_name, '/' ) !== false && strncmp( $branch_name, 'refs/heads/', strlen( 'refs/heads/' ) ) !== 0 && + strncmp( $branch_name, 'refs/tags/', strlen( 'refs/tags/' ) ) !== 0 && strncmp( $branch_name, 'refs/remotes/', strlen( 'refs/remotes/' ) ) !== 0 ) { _doing_it_wrong( __METHOD__, 'Invalid ref name: ' . $branch_name, '1.0.0' ); diff --git a/components/HTML/class-wp-html-active-formatting-elements.php b/components/HTML/class-wp-html-active-formatting-elements.php index 317f4089..2bbed0c1 100644 --- a/components/HTML/class-wp-html-active-formatting-elements.php +++ b/components/HTML/class-wp-html-active-formatting-elements.php @@ -1,4 +1,6 @@ walk_up() as $item ) { @@ -65,9 +66,9 @@ public function contains_node( WP_HTML_Token $token ) { /** * Returns how many nodes are currently in the stack of active formatting elements. * - * @return int How many node are in the stack of active formatting elements. * @since 6.4.0 * + * @return int How many node are in the stack of active formatting elements. */ public function count() { return count( $this->stack ); @@ -77,9 +78,9 @@ public function count() { * Returns the node at the end of the stack of active formatting elements, * if one exists. If the stack is empty, returns null. * - * @return WP_HTML_Token|null Last node in the stack of active formatting elements, if one exists, otherwise null. * @since 6.4.0 * + * @return WP_HTML_Token|null Last node in the stack of active formatting elements, if one exists, otherwise null. */ public function current_node() { $current_node = end( $this->stack ); @@ -106,12 +107,11 @@ public function insert_marker(): void { /** * Pushes a node onto the stack of active formatting elements. * - * @param WP_HTML_Token $token Push this node onto the stack. + * @since 6.4.0 * * @see https://html.spec.whatwg.org/#push-onto-the-list-of-active-formatting-elements * - * @since 6.4.0 - * + * @param WP_HTML_Token $token Push this node onto the stack. */ public function push( WP_HTML_Token $token ) { /* @@ -132,11 +132,10 @@ public function push( WP_HTML_Token $token ) { /** * Removes a node from the stack of active formatting elements. * - * @param WP_HTML_Token $token Remove this node from the stack, if it's there already. - * - * @return bool Whether the node was found and removed from the stack of active formatting elements. * @since 6.4.0 * + * @param WP_HTML_Token $token Remove this node from the stack, if it's there already. + * @return bool Whether the node was found and removed from the stack of active formatting elements. */ public function remove_node( WP_HTML_Token $token ) { foreach ( $this->walk_up() as $position_from_end => $item ) { @@ -146,7 +145,6 @@ public function remove_node( WP_HTML_Token $token ) { $position_from_start = $this->count() - $position_from_end - 1; array_splice( $this->stack, $position_from_start, 1 ); - return true; } @@ -175,7 +173,7 @@ public function remove_node( WP_HTML_Token $token ) { public function walk_down() { $count = count( $this->stack ); - for ( $i = 0; $i < $count; $i ++ ) { + for ( $i = 0; $i < $count; $i++ ) { yield $this->stack[ $i ]; } } @@ -200,7 +198,7 @@ public function walk_down() { * @since 6.4.0 */ public function walk_up() { - for ( $i = count( $this->stack ) - 1; $i >= 0; $i -- ) { + for ( $i = count( $this->stack ) - 1; $i >= 0; $i-- ) { yield $this->stack[ $i ]; } } diff --git a/components/HTML/class-wp-html-attribute-token.php b/components/HTML/class-wp-html-attribute-token.php index 4bb582cf..ccd92175 100644 --- a/components/HTML/class-wp-html-attribute-token.php +++ b/components/HTML/class-wp-html-attribute-token.php @@ -1,4 +1,6 @@ name = $name; diff --git a/components/HTML/class-wp-html-decoder.php b/components/HTML/class-wp-html-decoder.php index 6f6f2e53..f03d0a15 100644 --- a/components/HTML/class-wp-html-decoder.php +++ b/components/HTML/class-wp-html-decoder.php @@ -1,5 +1,7 @@ $max_digits ) { $match_byte_length = $end_of_span - $at; - return '�'; } @@ -356,7 +351,6 @@ public static function read_character_reference( $context, $text, $at = 0, &$mat } $match_byte_length = $end_of_span - $at; - return self::code_point_to_utf8_bytes( $code_point ); } @@ -378,7 +372,6 @@ public static function read_character_reference( $context, $text, $at = 0, &$mat // If the match ended with a semicolon then it should always be decoded. if ( ';' === $text[ $name_at + $name_length - 1 ] ) { $match_byte_length = $after_name - $at; - return $replacement; } @@ -399,7 +392,6 @@ public static function read_character_reference( $context, $text, $at = 0, &$mat // It's non-ambiguous, safe to leave it in. if ( ! $ambiguous_follower ) { $match_byte_length = $after_name - $at; - return $replacement; } @@ -409,7 +401,6 @@ public static function read_character_reference( $context, $text, $at = 0, &$mat } $match_byte_length = $after_name - $at; - return $replacement; } @@ -427,13 +418,12 @@ public static function read_character_reference( $context, $text, $at = 0, &$mat * // Half of a surrogate pair is an invalid code point. * '�' === WP_HTML_Decoder::code_point_to_utf8_bytes( 0xd83c ); * - * @param int $code_point Which code point to convert. - * - * @return string Converted code point, or `�` if invalid. * @since 6.6.0 * * @see https://www.rfc-editor.org/rfc/rfc3629 For the UTF-8 standard. * + * @param int $code_point Which code point to convert. + * @return string Converted code point, or `�` if invalid. */ public static function code_point_to_utf8_bytes( $code_point ): string { // Pre-check to ensure a valid code point. diff --git a/components/HTML/class-wp-html-doctype-info.php b/components/HTML/class-wp-html-doctype-info.php index 33099400..42211eff 100644 --- a/components/HTML/class-wp-html-doctype-info.php +++ b/components/HTML/class-wp-html-doctype-info.php @@ -1,4 +1,6 @@ indicated_compatability_mode = 'quirks'; - return; } @@ -203,7 +204,6 @@ private function __construct( */ if ( 'html' === $name && null === $public_identifier && null === $system_identifier ) { $this->indicated_compatability_mode = 'no-quirks'; - return; } @@ -215,7 +215,6 @@ private function __construct( */ if ( 'html' !== $name ) { $this->indicated_compatability_mode = 'quirks'; - return; } @@ -244,7 +243,6 @@ private function __construct( 'html' === $public_identifier ) { $this->indicated_compatability_mode = 'quirks'; - return; } @@ -253,7 +251,6 @@ private function __construct( */ if ( 'http://www.ibm.com/data/dtd/v11/ibmxhtml1-transitional.dtd' === $system_identifier ) { $this->indicated_compatability_mode = 'quirks'; - return; } @@ -263,7 +260,6 @@ private function __construct( */ if ( '' === $public_identifier ) { $this->indicated_compatability_mode = 'no-quirks'; - return; } @@ -275,87 +271,63 @@ private function __construct( * and normative documents will have exited before reaching this condition. */ if ( - strncmp( $public_identifier, '+//silmaril//dtd html pro v0r11 19970101//', - strlen( '+//silmaril//dtd html pro v0r11 19970101//' ) ) === 0 || - strncmp( $public_identifier, '-//as//dtd html 3.0 aswedit + extensions//', - strlen( '-//as//dtd html 3.0 aswedit + extensions//' ) ) === 0 || - strncmp( $public_identifier, '-//advasoft ltd//dtd html 3.0 aswedit + extensions//', - strlen( '-//advasoft ltd//dtd html 3.0 aswedit + extensions//' ) ) === 0 || - strncmp( $public_identifier, '-//ietf//dtd html 2.0 level 1//', strlen( '-//ietf//dtd html 2.0 level 1//' ) ) === 0 || - strncmp( $public_identifier, '-//ietf//dtd html 2.0 level 2//', strlen( '-//ietf//dtd html 2.0 level 2//' ) ) === 0 || - strncmp( $public_identifier, '-//ietf//dtd html 2.0 strict level 1//', - strlen( '-//ietf//dtd html 2.0 strict level 1//' ) ) === 0 || - strncmp( $public_identifier, '-//ietf//dtd html 2.0 strict level 2//', - strlen( '-//ietf//dtd html 2.0 strict level 2//' ) ) === 0 || - strncmp( $public_identifier, '-//ietf//dtd html 2.0 strict//', strlen( '-//ietf//dtd html 2.0 strict//' ) ) === 0 || - strncmp( $public_identifier, '-//ietf//dtd html 2.0//', strlen( '-//ietf//dtd html 2.0//' ) ) === 0 || - strncmp( $public_identifier, '-//ietf//dtd html 2.1e//', strlen( '-//ietf//dtd html 2.1e//' ) ) === 0 || - strncmp( $public_identifier, '-//ietf//dtd html 3.0//', strlen( '-//ietf//dtd html 3.0//' ) ) === 0 || - strncmp( $public_identifier, '-//ietf//dtd html 3.2 final//', strlen( '-//ietf//dtd html 3.2 final//' ) ) === 0 || - strncmp( $public_identifier, '-//ietf//dtd html 3.2//', strlen( '-//ietf//dtd html 3.2//' ) ) === 0 || - strncmp( $public_identifier, '-//ietf//dtd html 3//', strlen( '-//ietf//dtd html 3//' ) ) === 0 || - strncmp( $public_identifier, '-//ietf//dtd html level 0//', strlen( '-//ietf//dtd html level 0//' ) ) === 0 || - strncmp( $public_identifier, '-//ietf//dtd html level 1//', strlen( '-//ietf//dtd html level 1//' ) ) === 0 || - strncmp( $public_identifier, '-//ietf//dtd html level 2//', strlen( '-//ietf//dtd html level 2//' ) ) === 0 || - strncmp( $public_identifier, '-//ietf//dtd html level 3//', strlen( '-//ietf//dtd html level 3//' ) ) === 0 || - strncmp( $public_identifier, '-//ietf//dtd html strict level 0//', strlen( '-//ietf//dtd html strict level 0//' ) ) === 0 || - strncmp( $public_identifier, '-//ietf//dtd html strict level 1//', strlen( '-//ietf//dtd html strict level 1//' ) ) === 0 || - strncmp( $public_identifier, '-//ietf//dtd html strict level 2//', strlen( '-//ietf//dtd html strict level 2//' ) ) === 0 || - strncmp( $public_identifier, '-//ietf//dtd html strict level 3//', strlen( '-//ietf//dtd html strict level 3//' ) ) === 0 || - strncmp( $public_identifier, '-//ietf//dtd html strict//', strlen( '-//ietf//dtd html strict//' ) ) === 0 || - strncmp( $public_identifier, '-//ietf//dtd html//', strlen( '-//ietf//dtd html//' ) ) === 0 || - strncmp( $public_identifier, '-//metrius//dtd metrius presentational//', - strlen( '-//metrius//dtd metrius presentational//' ) ) === 0 || - strncmp( $public_identifier, '-//microsoft//dtd internet explorer 2.0 html strict//', - strlen( '-//microsoft//dtd internet explorer 2.0 html strict//' ) ) === 0 || - strncmp( $public_identifier, '-//microsoft//dtd internet explorer 2.0 html//', - strlen( '-//microsoft//dtd internet explorer 2.0 html//' ) ) === 0 || - strncmp( $public_identifier, '-//microsoft//dtd internet explorer 2.0 tables//', - strlen( '-//microsoft//dtd internet explorer 2.0 tables//' ) ) === 0 || - strncmp( $public_identifier, '-//microsoft//dtd internet explorer 3.0 html strict//', - strlen( '-//microsoft//dtd internet explorer 3.0 html strict//' ) ) === 0 || - strncmp( $public_identifier, '-//microsoft//dtd internet explorer 3.0 html//', - strlen( '-//microsoft//dtd internet explorer 3.0 html//' ) ) === 0 || - strncmp( $public_identifier, '-//microsoft//dtd internet explorer 3.0 tables//', - strlen( '-//microsoft//dtd internet explorer 3.0 tables//' ) ) === 0 || - strncmp( $public_identifier, '-//netscape comm. corp.//dtd html//', strlen( '-//netscape comm. corp.//dtd html//' ) ) === 0 || - strncmp( $public_identifier, '-//netscape comm. corp.//dtd strict html//', - strlen( '-//netscape comm. corp.//dtd strict html//' ) ) === 0 || - strncmp( $public_identifier, "-//o'reilly and associates//dtd html 2.0//", - strlen( "-//o'reilly and associates//dtd html 2.0//" ) ) === 0 || - strncmp( $public_identifier, "-//o'reilly and associates//dtd html extended 1.0//", - strlen( "-//o'reilly and associates//dtd html extended 1.0//" ) ) === 0 || - strncmp( $public_identifier, "-//o'reilly and associates//dtd html extended relaxed 1.0//", - strlen( "-//o'reilly and associates//dtd html extended relaxed 1.0//" ) ) === 0 || - strncmp( $public_identifier, '-//sq//dtd html 2.0 hotmetal + extensions//', - strlen( '-//sq//dtd html 2.0 hotmetal + extensions//' ) ) === 0 || - strncmp( $public_identifier, '-//softquad software//dtd hotmetal pro 6.0::19990601::extensions to html 4.0//', - strlen( '-//softquad software//dtd hotmetal pro 6.0::19990601::extensions to html 4.0//' ) ) === 0 || - strncmp( $public_identifier, '-//softquad//dtd hotmetal pro 4.0::19971010::extensions to html 4.0//', - strlen( '-//softquad//dtd hotmetal pro 4.0::19971010::extensions to html 4.0//' ) ) === 0 || - strncmp( $public_identifier, '-//spyglass//dtd html 2.0 extended//', strlen( '-//spyglass//dtd html 2.0 extended//' ) ) === 0 || - strncmp( $public_identifier, '-//sun microsystems corp.//dtd hotjava html//', - strlen( '-//sun microsystems corp.//dtd hotjava html//' ) ) === 0 || - strncmp( $public_identifier, '-//sun microsystems corp.//dtd hotjava strict html//', - strlen( '-//sun microsystems corp.//dtd hotjava strict html//' ) ) === 0 || - strncmp( $public_identifier, '-//w3c//dtd html 3 1995-03-24//', strlen( '-//w3c//dtd html 3 1995-03-24//' ) ) === 0 || - strncmp( $public_identifier, '-//w3c//dtd html 3.2 draft//', strlen( '-//w3c//dtd html 3.2 draft//' ) ) === 0 || - strncmp( $public_identifier, '-//w3c//dtd html 3.2 final//', strlen( '-//w3c//dtd html 3.2 final//' ) ) === 0 || - strncmp( $public_identifier, '-//w3c//dtd html 3.2//', strlen( '-//w3c//dtd html 3.2//' ) ) === 0 || - strncmp( $public_identifier, '-//w3c//dtd html 3.2s draft//', strlen( '-//w3c//dtd html 3.2s draft//' ) ) === 0 || - strncmp( $public_identifier, '-//w3c//dtd html 4.0 frameset//', strlen( '-//w3c//dtd html 4.0 frameset//' ) ) === 0 || - strncmp( $public_identifier, '-//w3c//dtd html 4.0 transitional//', strlen( '-//w3c//dtd html 4.0 transitional//' ) ) === 0 || - strncmp( $public_identifier, '-//w3c//dtd html experimental 19960712//', - strlen( '-//w3c//dtd html experimental 19960712//' ) ) === 0 || - strncmp( $public_identifier, '-//w3c//dtd html experimental 970421//', - strlen( '-//w3c//dtd html experimental 970421//' ) ) === 0 || - strncmp( $public_identifier, '-//w3c//dtd w3 html//', strlen( '-//w3c//dtd w3 html//' ) ) === 0 || - strncmp( $public_identifier, '-//w3o//dtd w3 html 3.0//', strlen( '-//w3o//dtd w3 html 3.0//' ) ) === 0 || - strncmp( $public_identifier, '-//webtechs//dtd mozilla html 2.0//', strlen( '-//webtechs//dtd mozilla html 2.0//' ) ) === 0 || - strncmp( $public_identifier, '-//webtechs//dtd mozilla html//', strlen( '-//webtechs//dtd mozilla html//' ) ) === 0 + str_starts_with( $public_identifier, '+//silmaril//dtd html pro v0r11 19970101//' ) || + str_starts_with( $public_identifier, '-//as//dtd html 3.0 aswedit + extensions//' ) || + str_starts_with( $public_identifier, '-//advasoft ltd//dtd html 3.0 aswedit + extensions//' ) || + str_starts_with( $public_identifier, '-//ietf//dtd html 2.0 level 1//' ) || + str_starts_with( $public_identifier, '-//ietf//dtd html 2.0 level 2//' ) || + str_starts_with( $public_identifier, '-//ietf//dtd html 2.0 strict level 1//' ) || + str_starts_with( $public_identifier, '-//ietf//dtd html 2.0 strict level 2//' ) || + str_starts_with( $public_identifier, '-//ietf//dtd html 2.0 strict//' ) || + str_starts_with( $public_identifier, '-//ietf//dtd html 2.0//' ) || + str_starts_with( $public_identifier, '-//ietf//dtd html 2.1e//' ) || + str_starts_with( $public_identifier, '-//ietf//dtd html 3.0//' ) || + str_starts_with( $public_identifier, '-//ietf//dtd html 3.2 final//' ) || + str_starts_with( $public_identifier, '-//ietf//dtd html 3.2//' ) || + str_starts_with( $public_identifier, '-//ietf//dtd html 3//' ) || + str_starts_with( $public_identifier, '-//ietf//dtd html level 0//' ) || + str_starts_with( $public_identifier, '-//ietf//dtd html level 1//' ) || + str_starts_with( $public_identifier, '-//ietf//dtd html level 2//' ) || + str_starts_with( $public_identifier, '-//ietf//dtd html level 3//' ) || + str_starts_with( $public_identifier, '-//ietf//dtd html strict level 0//' ) || + str_starts_with( $public_identifier, '-//ietf//dtd html strict level 1//' ) || + str_starts_with( $public_identifier, '-//ietf//dtd html strict level 2//' ) || + str_starts_with( $public_identifier, '-//ietf//dtd html strict level 3//' ) || + str_starts_with( $public_identifier, '-//ietf//dtd html strict//' ) || + str_starts_with( $public_identifier, '-//ietf//dtd html//' ) || + str_starts_with( $public_identifier, '-//metrius//dtd metrius presentational//' ) || + str_starts_with( $public_identifier, '-//microsoft//dtd internet explorer 2.0 html strict//' ) || + str_starts_with( $public_identifier, '-//microsoft//dtd internet explorer 2.0 html//' ) || + str_starts_with( $public_identifier, '-//microsoft//dtd internet explorer 2.0 tables//' ) || + str_starts_with( $public_identifier, '-//microsoft//dtd internet explorer 3.0 html strict//' ) || + str_starts_with( $public_identifier, '-//microsoft//dtd internet explorer 3.0 html//' ) || + str_starts_with( $public_identifier, '-//microsoft//dtd internet explorer 3.0 tables//' ) || + str_starts_with( $public_identifier, '-//netscape comm. corp.//dtd html//' ) || + str_starts_with( $public_identifier, '-//netscape comm. corp.//dtd strict html//' ) || + str_starts_with( $public_identifier, "-//o'reilly and associates//dtd html 2.0//" ) || + str_starts_with( $public_identifier, "-//o'reilly and associates//dtd html extended 1.0//" ) || + str_starts_with( $public_identifier, "-//o'reilly and associates//dtd html extended relaxed 1.0//" ) || + str_starts_with( $public_identifier, '-//sq//dtd html 2.0 hotmetal + extensions//' ) || + str_starts_with( $public_identifier, '-//softquad software//dtd hotmetal pro 6.0::19990601::extensions to html 4.0//' ) || + str_starts_with( $public_identifier, '-//softquad//dtd hotmetal pro 4.0::19971010::extensions to html 4.0//' ) || + str_starts_with( $public_identifier, '-//spyglass//dtd html 2.0 extended//' ) || + str_starts_with( $public_identifier, '-//sun microsystems corp.//dtd hotjava html//' ) || + str_starts_with( $public_identifier, '-//sun microsystems corp.//dtd hotjava strict html//' ) || + str_starts_with( $public_identifier, '-//w3c//dtd html 3 1995-03-24//' ) || + str_starts_with( $public_identifier, '-//w3c//dtd html 3.2 draft//' ) || + str_starts_with( $public_identifier, '-//w3c//dtd html 3.2 final//' ) || + str_starts_with( $public_identifier, '-//w3c//dtd html 3.2//' ) || + str_starts_with( $public_identifier, '-//w3c//dtd html 3.2s draft//' ) || + str_starts_with( $public_identifier, '-//w3c//dtd html 4.0 frameset//' ) || + str_starts_with( $public_identifier, '-//w3c//dtd html 4.0 transitional//' ) || + str_starts_with( $public_identifier, '-//w3c//dtd html experimental 19960712//' ) || + str_starts_with( $public_identifier, '-//w3c//dtd html experimental 970421//' ) || + str_starts_with( $public_identifier, '-//w3c//dtd w3 html//' ) || + str_starts_with( $public_identifier, '-//w3o//dtd w3 html 3.0//' ) || + str_starts_with( $public_identifier, '-//webtechs//dtd mozilla html 2.0//' ) || + str_starts_with( $public_identifier, '-//webtechs//dtd mozilla html//' ) ) { $this->indicated_compatability_mode = 'quirks'; - return; } @@ -364,13 +336,11 @@ private function __construct( */ if ( $system_identifier_is_missing && ( - strncmp( $public_identifier, '-//w3c//dtd html 4.01 frameset//', strlen( '-//w3c//dtd html 4.01 frameset//' ) ) === 0 || - strncmp( $public_identifier, '-//w3c//dtd html 4.01 transitional//', - strlen( '-//w3c//dtd html 4.01 transitional//' ) ) === 0 + str_starts_with( $public_identifier, '-//w3c//dtd html 4.01 frameset//' ) || + str_starts_with( $public_identifier, '-//w3c//dtd html 4.01 transitional//' ) ) ) { $this->indicated_compatability_mode = 'quirks'; - return; } @@ -383,11 +353,10 @@ private function __construct( * > The public identifier starts with… */ if ( - strncmp( $public_identifier, '-//w3c//dtd xhtml 1.0 frameset//', strlen( '-//w3c//dtd xhtml 1.0 frameset//' ) ) === 0 || - strncmp( $public_identifier, '-//w3c//dtd xhtml 1.0 transitional//', strlen( '-//w3c//dtd xhtml 1.0 transitional//' ) ) === 0 + str_starts_with( $public_identifier, '-//w3c//dtd xhtml 1.0 frameset//' ) || + str_starts_with( $public_identifier, '-//w3c//dtd xhtml 1.0 transitional//' ) ) { $this->indicated_compatability_mode = 'limited-quirks'; - return; } @@ -396,13 +365,11 @@ private function __construct( */ if ( ! $system_identifier_is_missing && ( - strncmp( $public_identifier, '-//w3c//dtd html 4.01 frameset//', strlen( '-//w3c//dtd html 4.01 frameset//' ) ) === 0 || - strncmp( $public_identifier, '-//w3c//dtd html 4.01 transitional//', - strlen( '-//w3c//dtd html 4.01 transitional//' ) ) === 0 + str_starts_with( $public_identifier, '-//w3c//dtd html 4.01 frameset//' ) || + str_starts_with( $public_identifier, '-//w3c//dtd html 4.01 transitional//' ) ) ) { $this->indicated_compatability_mode = 'limited-quirks'; - return; } @@ -437,12 +404,12 @@ private function __construct( * null === WP_HTML_Doctype_Info::from_doctype_token( 'html' ); * null === WP_HTML_Doctype_Info::from_doctype_token( '' ); * - * @param string $doctype_html The complete raw DOCTYPE HTML string, e.g. ``. + * @since 6.7.0 + * + * @param string $doctype_html The complete raw DOCTYPE HTML string, e.g. ``. * * @return WP_HTML_Doctype_Info|null A WP_HTML_Doctype_Info instance will be returned if the * provided DOCTYPE HTML is a valid DOCTYPE. Otherwise, null. - * @since 6.7.0 - * */ public static function from_doctype_token( string $doctype_html ): ?self { $doctype_name = null; @@ -572,7 +539,6 @@ public static function from_doctype_token( string $doctype_html ): ?self { * > Set the current DOCTYPE token's force-quirks flag to on. Reconsume in the bogus * > DOCTYPE state. */ - return new self( $doctype_name, $doctype_public_id, $doctype_system_id, true ); parse_doctype_public_identifier: @@ -594,7 +560,7 @@ public static function from_doctype_token( string $doctype_html ): ?self { return new self( $doctype_name, $doctype_public_id, $doctype_system_id, true ); } - ++ $at; + ++$at; $identifier_length = strcspn( $doctype_html, $closer_quote, $at, $end - $at ); $doctype_public_id = str_replace( "\0", "\u{FFFD}", substr( $doctype_html, $at, $identifier_length ) ); @@ -604,7 +570,7 @@ public static function from_doctype_token( string $doctype_html ): ?self { return new self( $doctype_name, $doctype_public_id, $doctype_system_id, true ); } - ++ $at; + ++$at; /* * "Between DOCTYPE public and system identifiers state" @@ -637,7 +603,7 @@ public static function from_doctype_token( string $doctype_html ): ?self { return new self( $doctype_name, $doctype_public_id, $doctype_system_id, true ); } - ++ $at; + ++$at; $identifier_length = strcspn( $doctype_html, $closer_quote, $at, $end - $at ); $doctype_system_id = str_replace( "\0", "\u{FFFD}", substr( $doctype_html, $at, $identifier_length ) ); diff --git a/components/HTML/class-wp-html-open-elements.php b/components/HTML/class-wp-html-open-elements.php index ad5d34f9..05c01fca 100644 --- a/components/HTML/class-wp-html-open-elements.php +++ b/components/HTML/class-wp-html-open-elements.php @@ -1,4 +1,7 @@ pop_handler = $handler; @@ -94,10 +96,9 @@ public function set_pop_handler( Closure $handler ): void { * * The function will be called with the pushed item as its argument. * - * @param Closure $handler The handler function. - * * @since 6.6.0 * + * @param Closure $handler The handler function. */ public function set_push_handler( Closure $handler ): void { $this->push_handler = $handler; @@ -111,17 +112,16 @@ public function set_push_handler( Closure $handler ): void { * "nth item" on the stack, counting from the top, where the * top-most element is the 1st, the second is the 2nd, etc... * - * @param int $nth Retrieve the nth item on the stack, with 1 being - * the top element, 2 being the second, etc... + * @since 6.7.0 * + * @param int $nth Retrieve the nth item on the stack, with 1 being + * the top element, 2 being the second, etc... * @return WP_HTML_Token|null Name of the node on the stack at the given location, * or `null` if the location isn't on the stack. - * @since 6.7.0 - * */ public function at( int $nth ): ?WP_HTML_Token { foreach ( $this->walk_down() as $item ) { - if ( 0 === -- $nth ) { + if ( 0 === --$nth ) { return $item; } } @@ -132,11 +132,10 @@ public function at( int $nth ): ?WP_HTML_Token { /** * Reports if a node of a given name is in the stack of open elements. * - * @param string $node_name Name of node for which to check. - * - * @return bool Whether a node of the given name is in the stack of open elements. * @since 6.7.0 * + * @param string $node_name Name of node for which to check. + * @return bool Whether a node of the given name is in the stack of open elements. */ public function contains( string $node_name ): bool { foreach ( $this->walk_up() as $item ) { @@ -151,11 +150,10 @@ public function contains( string $node_name ): bool { /** * Reports if a specific node is in the stack of open elements. * - * @param WP_HTML_Token $token Look for this node in the stack. - * - * @return bool Whether the referenced node is in the stack of open elements. * @since 6.4.0 * + * @param WP_HTML_Token $token Look for this node in the stack. + * @return bool Whether the referenced node is in the stack of open elements. */ public function contains_node( WP_HTML_Token $token ): bool { foreach ( $this->walk_up() as $item ) { @@ -170,9 +168,9 @@ public function contains_node( WP_HTML_Token $token ): bool { /** * Returns how many nodes are currently in the stack of open elements. * - * @return int How many node are in the stack of open elements. * @since 6.4.0 * + * @return int How many node are in the stack of open elements. */ public function count(): int { return count( $this->stack ); @@ -182,9 +180,9 @@ public function count(): int { * Returns the node at the end of the stack of open elements, * if one exists. If the stack is empty, returns null. * - * @return WP_HTML_Token|null Last node in the stack of open elements, if one exists, otherwise null. * @since 6.4.0 * + * @return WP_HTML_Token|null Last node in the stack of open elements, if one exists, otherwise null. */ public function current_node(): ?WP_HTML_Token { $current_node = end( $this->stack ); @@ -209,16 +207,15 @@ public function current_node(): ?WP_HTML_Token { * // Is the current node any element/tag? * $stack->current_node_is( '#tag' ); * - * @param string $identity Check if the current node has this name or type (depending on what is provided). + * @see WP_HTML_Tag_Processor::get_token_type + * @see WP_HTML_Tag_Processor::get_token_name * - * @return bool Whether there is a current element that matches the given identity, whether a token name or type. * @since 6.7.0 * * @access private * - * @see WP_HTML_Tag_Processor::get_token_type - * @see WP_HTML_Tag_Processor::get_token_name - * + * @param string $identity Check if the current node has this name or type (depending on what is provided). + * @return bool Whether there is a current element that matches the given identity, whether a token name or type. */ public function current_node_is( string $identity ): bool { $current_node = end( $this->stack ); @@ -238,14 +235,13 @@ public function current_node_is( string $identity ): bool { /** * Returns whether an element is in a specific scope. * - * @param string $tag_name Name of tag check. - * @param string[] $termination_list List of elements that terminate the search. + * @since 6.4.0 * - * @return bool Whether the element was found in a specific scope. * @see https://html.spec.whatwg.org/#has-an-element-in-the-specific-scope * - * @since 6.4.0 - * + * @param string $tag_name Name of tag check. + * @param string[] $termination_list List of elements that terminate the search. + * @return bool Whether the element was found in a specific scope. */ public function has_element_in_specific_scope( string $tag_name, $termination_list ): bool { foreach ( $this->walk_up() as $node ) { @@ -298,14 +294,13 @@ public function has_element_in_specific_scope( string $tag_name, $termination_li * > - SVG desc * > - SVG title * - * @param string $tag_name Name of tag to check. - * - * @return bool Whether given element is in scope. - * @see https://html.spec.whatwg.org/#has-an-element-in-scope - * * @since 6.4.0 * @since 6.7.0 Full support. * + * @see https://html.spec.whatwg.org/#has-an-element-in-scope + * + * @param string $tag_name Name of tag to check. + * @return bool Whether given element is in scope. */ public function has_element_in_scope( string $tag_name ): bool { return $this->has_element_in_specific_scope( @@ -346,15 +341,14 @@ public function has_element_in_scope( string $tag_name ): bool { * > - ol in the HTML namespace * > - ul in the HTML namespace * - * @param string $tag_name Name of tag to check. - * - * @return bool Whether given element is in scope. + * @since 6.4.0 + * @since 6.5.0 Implemented: no longer throws on every invocation. * @since 6.7.0 Supports all required HTML elements. * * @see https://html.spec.whatwg.org/#has-an-element-in-list-item-scope * - * @since 6.4.0 - * @since 6.5.0 Implemented: no longer throws on every invocation. + * @param string $tag_name Name of tag to check. + * @return bool Whether given element is in scope. */ public function has_element_in_list_item_scope( string $tag_name ): bool { return $this->has_element_in_specific_scope( @@ -397,14 +391,13 @@ public function has_element_in_list_item_scope( string $tag_name ): bool { * > - All the element types listed above for the has an element in scope algorithm. * > - button in the HTML namespace * - * @param string $tag_name Name of tag to check. - * - * @return bool Whether given element is in scope. - * @see https://html.spec.whatwg.org/#has-an-element-in-button-scope - * * @since 6.4.0 * @since 6.7.0 Supports all required HTML elements. * + * @see https://html.spec.whatwg.org/#has-an-element-in-button-scope + * + * @param string $tag_name Name of tag to check. + * @return bool Whether given element is in scope. */ public function has_element_in_button_scope( string $tag_name ): bool { return $this->has_element_in_specific_scope( @@ -446,14 +439,13 @@ public function has_element_in_button_scope( string $tag_name ): bool { * > - table in the HTML namespace * > - template in the HTML namespace * - * @param string $tag_name Name of tag to check. - * - * @return bool Whether given element is in scope. - * @see https://html.spec.whatwg.org/#has-an-element-in-table-scope - * * @since 6.4.0 * @since 6.7.0 Full implementation. * + * @see https://html.spec.whatwg.org/#has-an-element-in-table-scope + * + * @param string $tag_name Name of tag to check. + * @return bool Whether given element is in scope. */ public function has_element_in_table_scope( string $tag_name ): bool { return $this->has_element_in_specific_scope( @@ -478,14 +470,13 @@ public function has_element_in_table_scope( string $tag_name ): bool { * > - optgroup in the HTML namespace * > - option in the HTML namespace * - * @param string $tag_name Name of tag to check. - * - * @return bool Whether the given element is in SELECT scope. - * @see https://html.spec.whatwg.org/#has-an-element-in-select-scope - * * @since 6.4.0 Stub implementation (throws). * @since 6.7.0 Full implementation. * + * @see https://html.spec.whatwg.org/#has-an-element-in-select-scope + * + * @param string $tag_name Name of tag to check. + * @return bool Whether the given element is in SELECT scope. */ public function has_element_in_select_scope( string $tag_name ): bool { foreach ( $this->walk_up() as $node ) { @@ -507,11 +498,11 @@ public function has_element_in_select_scope( string $tag_name ): bool { /** * Returns whether a P is in BUTTON scope. * - * @return bool Whether a P is in BUTTON scope. - * @see https://html.spec.whatwg.org/#has-an-element-in-button-scope - * * @since 6.4.0 * + * @see https://html.spec.whatwg.org/#has-an-element-in-button-scope + * + * @return bool Whether a P is in BUTTON scope. */ public function has_p_in_button_scope(): bool { return $this->has_p_in_button_scope; @@ -520,11 +511,11 @@ public function has_p_in_button_scope(): bool { /** * Pops a node off of the stack of open elements. * - * @return bool Whether a node was popped off of the stack. - * @see https://html.spec.whatwg.org/#stack-of-open-elements - * * @since 6.4.0 * + * @see https://html.spec.whatwg.org/#stack-of-open-elements + * + * @return bool Whether a node was popped off of the stack. */ public function pop(): bool { $item = array_pop( $this->stack ); @@ -532,27 +523,19 @@ public function pop(): bool { return false; } - if ( 'context-node' === $item->bookmark_name ) { - $this->stack[] = $item; - - return false; - } - $this->after_element_pop( $item ); - return true; } /** * Pops nodes off of the stack of open elements until an HTML tag with the given name has been popped. * - * @param string $html_tag_name Name of tag that needs to be popped off of the stack of open elements. - * - * @return bool Whether a tag of the given name was found and popped off of the stack of open elements. * @since 6.4.0 * * @see WP_HTML_Open_Elements::pop * + * @param string $html_tag_name Name of tag that needs to be popped off of the stack of open elements. + * @return bool Whether a tag of the given name was found and popped off of the stack of open elements. */ public function pop_until( string $html_tag_name ): bool { foreach ( $this->walk_up() as $item ) { @@ -580,12 +563,11 @@ public function pop_until( string $html_tag_name ): bool { /** * Pushes a node onto the stack of open elements. * - * @param WP_HTML_Token $stack_item Item to add onto stack. + * @since 6.4.0 * * @see https://html.spec.whatwg.org/#stack-of-open-elements * - * @since 6.4.0 - * + * @param WP_HTML_Token $stack_item Item to add onto stack. */ public function push( WP_HTML_Token $stack_item ): void { $this->stack[] = $stack_item; @@ -595,17 +577,12 @@ public function push( WP_HTML_Token $stack_item ): void { /** * Removes a specific node from the stack of open elements. * - * @param WP_HTML_Token $token The node to remove from the stack of open elements. - * - * @return bool Whether the node was found and removed from the stack of open elements. * @since 6.4.0 * + * @param WP_HTML_Token $token The node to remove from the stack of open elements. + * @return bool Whether the node was found and removed from the stack of open elements. */ public function remove_node( WP_HTML_Token $token ): bool { - if ( 'context-node' === $token->bookmark_name ) { - return false; - } - foreach ( $this->walk_up() as $position_from_end => $item ) { if ( $token->bookmark_name !== $item->bookmark_name ) { continue; @@ -614,7 +591,6 @@ public function remove_node( WP_HTML_Token $token ): bool { $position_from_start = $this->count() - $position_from_end - 1; array_splice( $this->stack, $position_from_start, 1 ); $this->after_element_pop( $item ); - return true; } @@ -644,7 +620,7 @@ public function remove_node( WP_HTML_Token $token ): bool { public function walk_down() { $count = count( $this->stack ); - for ( $i = 0; $i < $count; $i ++ ) { + for ( $i = 0; $i < $count; $i++ ) { yield $this->stack[ $i ]; } } @@ -666,17 +642,16 @@ public function walk_down() { * To start with the first added element and walk towards the bottom, * see WP_HTML_Open_Elements::walk_down(). * - * @param WP_HTML_Token|null $above_this_node Optional. Start traversing above this node, - * if provided and if the node exists. - * + * @since 6.4.0 * @since 6.5.0 Accepts $above_this_node to start traversal above a given node, if it exists. * - * @since 6.4.0 + * @param WP_HTML_Token|null $above_this_node Optional. Start traversing above this node, + * if provided and if the node exists. */ public function walk_up( ?WP_HTML_Token $above_this_node = null ) { $has_found_node = null === $above_this_node; - for ( $i = count( $this->stack ) - 1; $i >= 0; $i -- ) { + for ( $i = count( $this->stack ) - 1; $i >= 0; $i-- ) { $node = $this->stack[ $i ]; if ( ! $has_found_node ) { @@ -701,10 +676,9 @@ public function walk_up( ?WP_HTML_Token $above_this_node = null ) { * over the open stack elements upon each new tag it encounters. These flags, * however, need to be maintained as items are added and removed from the stack. * - * @param WP_HTML_Token $item Element that was added to the stack of open elements. - * * @since 6.4.0 * + * @param WP_HTML_Token $item Element that was added to the stack of open elements. */ public function after_element_push( WP_HTML_Token $item ): void { $namespaced_name = 'html' === $item->namespace @@ -757,10 +731,9 @@ public function after_element_push( WP_HTML_Token $item ): void { * over the open stack elements upon each new tag it encounters. These flags, * however, need to be maintained as items are added and removed from the stack. * - * @param WP_HTML_Token $item Element that was removed from the stack of open elements. - * * @since 6.4.0 * + * @param WP_HTML_Token $item Element that was removed from the stack of open elements. */ public function after_element_pop( WP_HTML_Token $item ): void { /* @@ -877,6 +850,6 @@ public function clear_to_table_row_context(): void { * @since 6.6.0 */ public function __wakeup() { - throw new LogicException( __CLASS__ . ' should never be unserialized' ); + throw new \LogicException( __CLASS__ . ' should never be unserialized' ); } } diff --git a/components/HTML/class-wp-html-processor-state.php b/components/HTML/class-wp-html-processor-state.php index b7cdd347..b61064e6 100644 --- a/components/HTML/class-wp-html-processor-state.php +++ b/components/HTML/class-wp-html-processor-state.php @@ -1,4 +1,6 @@ `, which is the default value. * - The only supported document encoding is `UTF-8`, which is the default value. * - * @param string $html Input HTML fragment to process. - * @param string $context Context element for the fragment, must be default of ``. - * @param string $encoding Text encoding of the document; must be default of 'UTF-8'. - * - * @return static|null The created processor if successful, otherwise null. * @since 6.4.0 * @since 6.6.0 Returns `static` instead of `self` so it can create subclass instances. * + * @param string $html Input HTML fragment to process. + * @param string $context Context element for the fragment, must be default of ``. + * @param string $encoding Text encoding of the document; must be default of 'UTF-8'. + * @return static|null The created processor if successful, otherwise null. */ public static function create_fragment( $html, $context = '', $encoding = 'UTF-8' ) { if ( '' !== $context || 'UTF-8' !== $encoding ) { return null; } - $processor = new static( $html, self::CONSTRUCTOR_UNLOCK_CODE ); - $processor->state->context_node = array( 'BODY', array() ); - $processor->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_IN_BODY; - $processor->state->encoding = $encoding; - $processor->state->encoding_confidence = 'certain'; - - // @todo Create "fake" bookmarks for non-existent but implied nodes. - $processor->bookmarks['root-node'] = new WP_HTML_Span( 0, 0 ); - $processor->bookmarks['context-node'] = new WP_HTML_Span( 0, 0 ); - - $root_node = new WP_HTML_Token( - 'root-node', - 'HTML', - false - ); - - $processor->state->stack_of_open_elements->push( $root_node ); + $context_processor = static::create_full_parser( "{$context}", $encoding ); + if ( null === $context_processor ) { + return null; + } - $context_node = new WP_HTML_Token( - 'context-node', - $processor->state->context_node[0], - false - ); + while ( $context_processor->next_tag() ) { + if ( ! $context_processor->is_virtual() ) { + $context_processor->set_bookmark( 'final_node' ); + } + } - $processor->context_node = $context_node; - $processor->breadcrumbs = array( 'HTML', $context_node->node_name ); + if ( + ! $context_processor->has_bookmark( 'final_node' ) || + ! $context_processor->seek( 'final_node' ) + ) { + _doing_it_wrong( __METHOD__, __( 'No valid context element was detected.' ), '6.8.0' ); + return null; + } - return $processor; + return $context_processor->create_fragment_at_current_node( $html ); } /** @@ -335,14 +333,13 @@ public static function create_fragment( $html, $context = '', $encoding = * entire HTML document from start to finish. Consider a fragment parser with * a context node of ``. * - * Since UTF-8 is the only currently-accepted charset, if working with a - * document that isn't UTF-8, it's important to convert the document before - * creating the processor: pass in the converted HTML. + * UTF-8 is the only allowed encoding. If working with a document that + * isn't UTF-8, first convert the document to UTF-8, then pass in the + * converted HTML. * - * @param string $html Input HTML document to process. - * @param string|null $known_definite_encoding Optional. If provided, specifies the charset used + * @param string $html Input HTML document to process. + * @param string|null $known_definite_encoding Optional. If provided, specifies the charset used * in the input byte stream. Currently must be UTF-8. - * * @return static|null The created processor if successful, otherwise null. */ public static function create_full_parser( $html, $known_definite_encoding = 'UTF-8' ) { @@ -364,13 +361,12 @@ public static function create_full_parser( $html, $known_definite_encoding = 'UT * * @access private * - * @param string $html HTML to process. - * @param string|null $use_the_static_create_methods_instead This constructor should not be called manually. - * * @since 6.4.0 * * @see WP_HTML_Processor::create_fragment() * + * @param string $html HTML to process. + * @param string|null $use_the_static_create_methods_instead This constructor should not be called manually. */ public function __construct( $html, $use_the_static_create_methods_instead = null ) { parent::__construct( $html ); @@ -379,7 +375,7 @@ public function __construct( $html, $use_the_static_create_methods_instead = nul _doing_it_wrong( __METHOD__, sprintf( - /* translators: %s: WP_HTML_Processor::create_fragment(). */ + /* translators: %s: WP_HTML_Processor::create_fragment(). */ __( 'Call %s to create an HTML Processor instead of calling the constructor directly.' ), 'WP_HTML_Processor::create_fragment()' ), @@ -428,14 +424,155 @@ function ( WP_HTML_Token $token ): void { } /** - * Stops the parser and terminates its execution when encountering unsupported markup. + * Creates a fragment processor at the current node. + * + * HTML Fragment parsing always happens with a context node. HTML Fragment Processors can be + * instantiated with a `BODY` context node via `WP_HTML_Processor::create_fragment( $html )`. + * + * The context node may impact how a fragment of HTML is parsed. For example, consider the HTML + * fragment `Inside TD?`. + * + * A BODY context node will produce the following tree: + * + * └─#text Inside TD? + * + * Notice that the `` tags are completely ignored. + * + * Compare that with an SVG context node that produces the following tree: + * + * ├─svg:td + * └─#text Inside TD? + * + * Here, a `td` node in the `svg` namespace is created, and its self-closing flag is respected. + * This is a peculiarity of parsing HTML in foreign content like SVG. * - * @param string $message Explains support is missing in order to parse the current node. + * Finally, consider the tree produced with a TABLE context node: + * + * └─TBODY + * └─TR + * └─TD + * └─#text Inside TD? + * + * These examples demonstrate how important the context node may be when processing an HTML + * fragment. Special care must be taken when processing fragments that are expected to appear + * in specific contexts. SVG and TABLE are good examples, but there are others. + * + * @see https://html.spec.whatwg.org/multipage/parsing.html#html-fragment-parsing-algorithm + * + * @since 6.8.0 + * + * @param string $html Input HTML fragment to process. + * @return static|null The created processor if successful, otherwise null. + */ + private function create_fragment_at_current_node( string $html ) { + if ( $this->get_token_type() !== '#tag' || $this->is_tag_closer() ) { + _doing_it_wrong( + __METHOD__, + __( 'The context element must be a start tag.' ), + '6.8.0' + ); + return null; + } + + $tag_name = $this->current_element->token->node_name; + $namespace = $this->current_element->token->namespace; + + if ( 'html' === $namespace && self::is_void( $tag_name ) ) { + _doing_it_wrong( + __METHOD__, + sprintf( + // translators: %s: A tag name like INPUT or BR. + __( 'The context element cannot be a void element, found "%s".' ), + $tag_name + ), + '6.8.0' + ); + return null; + } + + /* + * Prevent creating fragments at nodes that require a special tokenizer state. + * This is unsupported by the HTML Processor. + */ + if ( + 'html' === $namespace && + in_array( $tag_name, array( 'IFRAME', 'NOEMBED', 'NOFRAMES', 'SCRIPT', 'STYLE', 'TEXTAREA', 'TITLE', 'XMP', 'PLAINTEXT' ), true ) + ) { + _doing_it_wrong( + __METHOD__, + sprintf( + // translators: %s: A tag name like IFRAME or TEXTAREA. + __( 'The context element "%s" is not supported.' ), + $tag_name + ), + '6.8.0' + ); + return null; + } + + $fragment_processor = new static( $html, self::CONSTRUCTOR_UNLOCK_CODE ); + + $fragment_processor->compat_mode = $this->compat_mode; + + // @todo Create "fake" bookmarks for non-existent but implied nodes. + $fragment_processor->bookmarks['root-node'] = new WP_HTML_Span( 0, 0 ); + $root_node = new WP_HTML_Token( + 'root-node', + 'HTML', + false + ); + $fragment_processor->state->stack_of_open_elements->push( $root_node ); + + $fragment_processor->bookmarks['context-node'] = new WP_HTML_Span( 0, 0 ); + $fragment_processor->context_node = clone $this->current_element->token; + $fragment_processor->context_node->bookmark_name = 'context-node'; + $fragment_processor->context_node->on_destroy = null; + + $fragment_processor->breadcrumbs = array( 'HTML', $fragment_processor->context_node->node_name ); + + if ( 'TEMPLATE' === $fragment_processor->context_node->node_name ) { + $fragment_processor->state->stack_of_template_insertion_modes[] = WP_HTML_Processor_State::INSERTION_MODE_IN_TEMPLATE; + } + + $fragment_processor->reset_insertion_mode_appropriately(); + + /* + * > Set the parser's form element pointer to the nearest node to the context element that + * > is a form element (going straight up the ancestor chain, and including the element + * > itself, if it is a form element), if any. (If there is no such form element, the + * > form element pointer keeps its initial value, null.) + */ + foreach ( $this->state->stack_of_open_elements->walk_up() as $element ) { + if ( 'FORM' === $element->node_name && 'html' === $element->namespace ) { + $fragment_processor->state->form_element = clone $element; + $fragment_processor->state->form_element->bookmark_name = null; + $fragment_processor->state->form_element->on_destroy = null; + break; + } + } + + $fragment_processor->state->encoding_confidence = 'irrelevant'; + + /* + * Update the parsing namespace near the end of the process. + * This is important so that any push/pop from the stack of open + * elements does not change the parsing namespace. + */ + $fragment_processor->change_parsing_namespace( + $this->current_element->token->integration_node_type ? 'html' : $namespace + ); + + return $fragment_processor; + } + + /** + * Stops the parser and terminates its execution when encountering unsupported markup. * * @throws WP_HTML_Unsupported_Exception Halts execution of the parser. * * @since 6.7.0 * + * @param string $message Explains support is missing in order to parse the current node. */ private function bail( string $message ) { $here = $this->bookmarks[ $this->state->current_token->bookmark_name ]; @@ -481,12 +618,12 @@ private function bail( string $message ) { * false === $processor->next_tag(); * WP_HTML_Processor::ERROR_UNSUPPORTED === $processor->get_last_error(); * - * @return string|null The last error, if one exists, otherwise null. + * @since 6.4.0 + * * @see self::ERROR_UNSUPPORTED * @see self::ERROR_EXCEEDED_MAX_BOOKMARKS * - * @since 6.4.0 - * + * @return string|null The last error, if one exists, otherwise null. */ public function get_last_error(): ?string { return $this->last_error; @@ -497,11 +634,11 @@ public function get_last_error(): ?string { * * This is meant for debugging purposes, not for production use. * - * @return WP_HTML_Unsupported_Exception|null - * @see self::$unsupported_exception - * * @since 6.7.0 * + * @see self::$unsupported_exception + * + * @return WP_HTML_Unsupported_Exception|null */ public function get_unsupported_exception() { return $this->unsupported_exception; @@ -510,26 +647,26 @@ public function get_unsupported_exception() { /** * Finds the next tag matching the $query. * - * @param array|string|null $query { + * @todo Support matching the class name and tag name. + * + * @since 6.4.0 + * @since 6.6.0 Visits all tokens, including virtual ones. + * + * @throws Exception When unable to allocate a bookmark for the next token in the input HTML document. + * + * @param array|string|null $query { * Optional. Which tag name to find, having which class, etc. Default is to find any tag. * - * @type string|null $tag_name Which tag to find, or `null` for "any tag." - * @type string $tag_closers 'visit' to pause at tag closers, 'skip' or unset to only visit openers. - * @type int|null $match_offset Find the Nth tag matching all search criteria. + * @type string|null $tag_name Which tag to find, or `null` for "any tag." + * @type string $tag_closers 'visit' to pause at tag closers, 'skip' or unset to only visit openers. + * @type int|null $match_offset Find the Nth tag matching all search criteria. * 1 for "first" tag, 3 for "third," etc. * Defaults to first tag. - * @type string|null $class_name Tag must contain this whole class name to match. - * @type string[] $breadcrumbs DOM sub-path at which element is found, e.g. `array( 'FIGURE', 'IMG' )`. + * @type string|null $class_name Tag must contain this whole class name to match. + * @type string[] $breadcrumbs DOM sub-path at which element is found, e.g. `array( 'FIGURE', 'IMG' )`. * May also contain the wildcard `*` which matches a single element, e.g. `array( 'SECTION', '*' )`. * } * @return bool Whether a tag was matched. - * @throws Exception When unable to allocate a bookmark for the next token in the input HTML document. - * - * @todo Support matching the class name and tag name. - * - * @since 6.4.0 - * @since 6.6.0 Visits all tokens, including virtual ones. - * */ public function next_tag( $query = null ): bool { $visit_closers = isset( $query['tag_closers'] ) && 'visit' === $query['tag_closers']; @@ -558,10 +695,13 @@ public function next_tag( $query = null ): bool { __( 'Please pass a query array to this function.' ), '6.4.0' ); - return false; } + if ( isset( $query['tag_name'] ) ) { + $query['tag_name'] = strtoupper( $query['tag_name'] ); + } + $needs_class = ( isset( $query['class_name'] ) && is_string( $query['class_name'] ) ) ? $query['class_name'] : null; @@ -600,7 +740,7 @@ public function next_tag( $query = null ): bool { continue; } - if ( $this->matches_breadcrumbs( $breadcrumbs ) && 0 === -- $match_offset ) { + if ( $this->matches_breadcrumbs( $breadcrumbs ) && 0 === --$match_offset ) { return true; } } @@ -608,6 +748,22 @@ public function next_tag( $query = null ): bool { return false; } + /** + * Finds the next token in the HTML document. + * + * This doesn't currently have a way to represent non-tags and doesn't process + * semantic rules for text nodes. For access to the raw tokens consider using + * WP_HTML_Tag_Processor instead. + * + * @since 6.5.0 Added for internal support; do not use. + * @since 6.7.2 Refactored so subclasses may extend. + * + * @return bool Whether a token was parsed. + */ + public function next_token(): bool { + return $this->next_visitable_token(); + } + /** * Ensures internal accounting is maintained for HTML semantic rules while * the underlying Tag Processor class is seeking to a bookmark. @@ -616,13 +772,18 @@ public function next_tag( $query = null ): bool { * semantic rules for text nodes. For access to the raw tokens consider using * WP_HTML_Tag_Processor instead. * - * @return bool - * @since 6.5.0 Added for internal support; do not use. + * Note that this method may call itself recursively. This is why it is not + * implemented as {@see WP_HTML_Processor::next_token()}, which instead calls + * this method similarly to how {@see WP_HTML_Tag_Processor::next_token()} + * calls the {@see WP_HTML_Tag_Processor::base_class_next_token()} method. + * + * @since 6.7.2 Added for internal support. * * @access private * + * @return bool */ - public function next_token(): bool { + private function next_visitable_token(): bool { $this->current_element = null; if ( isset( $this->last_error ) ) { @@ -640,7 +801,7 @@ public function next_token(): bool { * tokens works in the meantime and isn't obviously wrong. */ if ( empty( $this->element_queue ) && $this->step() ) { - return $this->next_token(); + return $this->next_visitable_token(); } // Process the next event on the queue. @@ -651,7 +812,7 @@ public function next_token(): bool { continue; } - return empty( $this->element_queue ) ? false : $this->next_token(); + return empty( $this->element_queue ) ? false : $this->next_visitable_token(); } $is_pop = WP_HTML_Stack_Event::POP === $this->current_element->operation; @@ -662,7 +823,7 @@ public function next_token(): bool { * the breadcrumbs. */ if ( 'root-node' === $this->current_element->token->bookmark_name ) { - return $this->next_token(); + return $this->next_visitable_token(); } // Adjust the breadcrumbs for this event. @@ -674,7 +835,7 @@ public function next_token(): bool { // Avoid sending close events for elements which don't expect a closing. if ( $is_pop && ! $this->expects_closer( $this->current_element->token ) ) { - return $this->next_token(); + return $this->next_visitable_token(); } return true; @@ -692,9 +853,9 @@ public function next_token(): bool { * $p->next_tag( array( 'tag_name' => 'div', 'tag_closers' => 'visit' ) ); * $p->is_tag_closer() === true; * - * @return bool Whether the current tag is a tag closer. * @since 6.6.0 Subclassed for HTML Processor. * + * @return bool Whether the current tag is a tag closer. */ public function is_tag_closer(): bool { return $this->is_virtual() @@ -706,11 +867,11 @@ public function is_tag_closer(): bool { * Indicates if the currently-matched token is virtual, created by a stack operation * while processing HTML, rather than a token found in the HTML text itself. * - * @return bool Whether the current token is virtual. * @since 6.6.0 * + * @return bool Whether the current token is virtual. */ - public function is_virtual(): bool { + private function is_virtual(): bool { return ( isset( $this->current_element->provenance ) && 'virtual' === $this->current_element->provenance @@ -736,12 +897,11 @@ public function is_virtual(): bool { * false === $processor->matches_breadcrumbs( array( 'span', 'img' ) ); * true === $processor->matches_breadcrumbs( array( 'span', '*', 'img' ) ); * - * @param string[] $breadcrumbs DOM sub-path at which element is found, e.g. `array( 'FIGURE', 'IMG' )`. - * May also contain the wildcard `*` which matches a single element, e.g. `array( 'SECTION', '*' )`. - * - * @return bool Whether the currently-matched tag is found at the given nested structure. * @since 6.4.0 * + * @param string[] $breadcrumbs DOM sub-path at which element is found, e.g. `array( 'FIGURE', 'IMG' )`. + * May also contain the wildcard `*` which matches a single element, e.g. `array( 'SECTION', '*' )`. + * @return bool Whether the currently-matched tag is found at the given nested structure. */ public function matches_breadcrumbs( $breadcrumbs ): bool { // Everything matches when there are zero constraints. @@ -756,7 +916,7 @@ public function matches_breadcrumbs( $breadcrumbs ): bool { return false; } - for ( $i = count( $this->breadcrumbs ) - 1; $i >= 0; $i -- ) { + for ( $i = count( $this->breadcrumbs ) - 1; $i >= 0; $i-- ) { $node = $this->breadcrumbs[ $i ]; $crumb = strtoupper( current( $breadcrumbs ) ); @@ -783,13 +943,12 @@ public function matches_breadcrumbs( $breadcrumbs ): bool { * foreign content will also act just like a void tag, immediately * closing as soon as the processor advances to the next token. * - * @param WP_HTML_Token|null $node Optional. Node to examine, if provided. - * Default is to examine current node. + * @since 6.6.0 * + * @param WP_HTML_Token|null $node Optional. Node to examine, if provided. + * Default is to examine current node. * @return bool|null Whether to expect a closer for the currently-matched node, * or `null` if not matched on any token. - * @since 6.6.0 - * */ public function expects_closer( ?WP_HTML_Token $node = null ): ?bool { $token_name = $node->node_name ?? $this->get_token_name(); @@ -807,10 +966,9 @@ public function expects_closer( ?WP_HTML_Token $node = null ): ?bool { // Doctype declarations. 'html' === $token_name || // Void elements. - self::is_void( $token_name ) || + ( 'html' === $token_namespace && self::is_void( $token_name ) ) || // Special atomic elements. - ( 'html' === $token_namespace && in_array( $token_name, - array( 'IFRAME', 'NOEMBED', 'NOFRAMES', 'SCRIPT', 'STYLE', 'TEXTAREA', 'TITLE', 'XMP' ), true ) ) || + ( 'html' === $token_namespace && in_array( $token_name, array( 'IFRAME', 'NOEMBED', 'NOFRAMES', 'SCRIPT', 'STYLE', 'TEXTAREA', 'TITLE', 'XMP' ), true ) ) || // Self-closing elements in foreign content. ( 'html' !== $token_namespace && $token_has_self_closing ) ); @@ -819,16 +977,15 @@ public function expects_closer( ?WP_HTML_Token $node = null ): ?bool { /** * Steps through the HTML document and stop at the next tag, if any. * - * @param string $node_to_process Whether to parse the next node or reprocess the current node. + * @since 6.4.0 * - * @return bool Whether a tag was matched. * @throws Exception When unable to allocate a bookmark for the next token in the input HTML document. * + * @see self::PROCESS_NEXT_NODE * @see self::REPROCESS_CURRENT_NODE * - * @since 6.4.0 - * - * @see self::PROCESS_NEXT_NODE + * @param string $node_to_process Whether to parse the next node or reprocess the current node. + * @return bool Whether a tag was matched. */ public function step( $node_to_process = self::PROCESS_NEXT_NODE ): bool { // Refuse to proceed if there was a previous error. @@ -993,21 +1150,17 @@ public function step( $node_to_process = self::PROCESS_NEXT_NODE ): bool { * Breadcrumbs start at the outermost parent and descend toward the matched element. * They always include the entire path from the root HTML node to the matched element. * - * @return string[]|null Array of tag names representing path to matched node, if matched, otherwise NULL. - * @since 6.4.0 - * - * @todo It could be more efficient to expose a generator-based version of this function - * to avoid creating the array copy on tag iteration. If this is done, it would likely - * be more useful to walk up the stack when yielding instead of starting at the top. - * - * Example + * Example: * * $processor = WP_HTML_Processor::create_fragment( '

' ); * $processor->next_tag( 'IMG' ); * $processor->get_breadcrumbs() === array( 'HTML', 'BODY', 'P', 'STRONG', 'EM', 'IMG' ); * + * @since 6.4.0 + * + * @return string[] Array of tag names representing path to matched node. */ - public function get_breadcrumbs(): ?array { + public function get_breadcrumbs(): array { return $this->breadcrumbs; } @@ -1032,9 +1185,9 @@ public function get_breadcrumbs(): ?array { * $processor->next_token(); * 3 === $processor->get_current_depth(); * - * @return int Nesting-depth of current location in the document. * @since 6.6.0 * + * @return int Nesting-depth of current location in the document. */ public function get_current_depth(): int { return count( $this->breadcrumbs ); @@ -1072,11 +1225,11 @@ public function get_current_depth(): int { * echo WP_HTML_Processor::normalize( ' syntax < <> "oddities"' ); * // syntax < <> "oddities" * - * @param string $html Input HTML to normalize. - * - * @return string|null Normalized output, or `null` if unable to normalize. * @since 6.7.0 * + * @param string $html Input HTML to normalize. + * + * @return string|null Normalized output, or `null` if unable to normalize. */ public static function normalize( string $html ): ?string { return static::create_fragment( $html )->serialize(); @@ -1116,10 +1269,10 @@ public static function normalize( string $html ): ?string { * echo $processor->serialize(); * // syntax < <> "oddities" * - * @return string|null Normalized HTML markup represented by processor, - * or `null` if unable to generate serialization. * @since 6.7.0 * + * @return string|null Normalized HTML markup represented by processor, + * or `null` if unable to generate serialization. */ public function serialize(): ?string { if ( WP_HTML_Tag_Processor::STATE_READY !== $this->parser_state ) { @@ -1128,7 +1281,6 @@ public function serialize(): ?string { 'An HTML Processor which has already started processing cannot serialize its contents. Serialize immediately after creating the instance.', E_USER_WARNING ); - return null; } @@ -1143,7 +1295,6 @@ public function serialize(): ?string { "Cannot serialize HTML Processor with parsing error: {$this->get_last_error()}.", E_USER_WARNING ); - return null; } @@ -1157,11 +1308,11 @@ public function serialize(): ?string { * if able. If not matched at any token or if the token doesn't correspond to any HTML * it will return an empty string (for example, presumptuous end tags are ignored). * - * @return string Serialization of token, or empty string if no serialization exists. - * @since 6.7.0 - * * @see static::serialize() * + * @since 6.7.0 + * + * @return string Serialization of token, or empty string if no serialization exists. */ protected function serialize_token(): string { $html = ''; @@ -1181,15 +1332,15 @@ protected function serialize_token(): string { } if ( null !== $doctype->public_identifier ) { - $quote = strpos( $doctype->public_identifier, '"' ) !== false ? "'" : '"'; - $html .= " PUBLIC {$quote}{$doctype->public_identifier}{$quote}"; + $quote = str_contains( $doctype->public_identifier, '"' ) ? "'" : '"'; + $html .= " PUBLIC {$quote}{$doctype->public_identifier}{$quote}"; } if ( null !== $doctype->system_identifier ) { if ( null === $doctype->public_identifier ) { $html .= ' SYSTEM'; } - $quote = strpos( $doctype->system_identifier, '"' ) !== false ? "'" : '"'; - $html .= " {$quote}{$doctype->system_identifier}{$quote}"; + $quote = str_contains( $doctype->system_identifier, '"' ) ? "'" : '"'; + $html .= " {$quote}{$doctype->system_identifier}{$quote}"; } $html .= '>'; @@ -1223,20 +1374,18 @@ protected function serialize_token(): string { if ( $this->is_tag_closer() ) { $html .= ""; - return $html; } $attribute_names = $this->get_attribute_names_with_prefix( '' ); if ( ! isset( $attribute_names ) ) { $html .= "<{$qualified_name}>"; - return $html; } $html .= "<{$qualified_name}"; foreach ( $attribute_names as $attribute_name ) { - $html .= " {$this->get_qualified_attribute_name( $attribute_name )}"; + $html .= " {$this->get_qualified_attribute_name( $attribute_name )}"; $value = $this->get_attribute( $attribute_name ); if ( is_string( $value ) ) { @@ -1253,8 +1402,7 @@ protected function serialize_token(): string { $html .= '>'; // Flush out self-contained elements. - if ( $in_html && in_array( $tag_name, array( 'IFRAME', 'NOEMBED', 'NOFRAMES', 'SCRIPT', 'STYLE', 'TEXTAREA', 'TITLE', 'XMP' ), - true ) ) { + if ( $in_html && in_array( $tag_name, array( 'IFRAME', 'NOEMBED', 'NOFRAMES', 'SCRIPT', 'STYLE', 'TEXTAREA', 'TITLE', 'XMP' ), true ) ) { $text = $this->get_modifiable_text(); switch ( $tag_name ) { @@ -1284,14 +1432,14 @@ protected function serialize_token(): string { * This internal function performs the 'initial' insertion mode * logic for the generalized WP_HTML_Processor::step() function. * - * @return bool Whether an element was found. + * @since 6.7.0 + * * @throws WP_HTML_Unsupported_Exception When encountering unsupported HTML input. * * @see https://html.spec.whatwg.org/#the-initial-insertion-mode * @see WP_HTML_Processor::step * - * @since 6.7.0 - * + * @return bool Whether an element was found. */ private function step_initial(): bool { $token_name = $this->get_token_name(); @@ -1321,7 +1469,6 @@ private function step_initial(): bool { case '#funky-comment': case '#presumptuous-tag': $this->insert_html_element( $this->state->current_token ); - return true; /* @@ -1338,7 +1485,6 @@ private function step_initial(): bool { */ $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_BEFORE_HTML; $this->insert_html_element( $this->state->current_token ); - return true; } @@ -1348,7 +1494,6 @@ private function step_initial(): bool { initial_anything_else: $this->compat_mode = WP_HTML_Tag_Processor::QUIRKS_MODE; $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_BEFORE_HTML; - return $this->step( self::REPROCESS_CURRENT_NODE ); } @@ -1358,14 +1503,14 @@ private function step_initial(): bool { * This internal function performs the 'before html' insertion mode * logic for the generalized WP_HTML_Processor::step() function. * - * @return bool Whether an element was found. + * @since 6.7.0 + * * @throws WP_HTML_Unsupported_Exception When encountering unsupported HTML input. * * @see https://html.spec.whatwg.org/#the-before-html-insertion-mode * @see WP_HTML_Processor::step * - * @since 6.7.0 - * + * @return bool Whether an element was found. */ private function step_before_html(): bool { $token_name = $this->get_token_name(); @@ -1389,7 +1534,6 @@ private function step_before_html(): bool { case '#funky-comment': case '#presumptuous-tag': $this->insert_html_element( $this->state->current_token ); - return true; /* @@ -1412,7 +1556,6 @@ private function step_before_html(): bool { case '+HTML': $this->insert_html_element( $this->state->current_token ); $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_BEFORE_HEAD; - return true; /* @@ -1448,7 +1591,6 @@ private function step_before_html(): bool { before_html_anything_else: $this->insert_virtual_node( 'HTML' ); $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_BEFORE_HEAD; - return $this->step( self::REPROCESS_CURRENT_NODE ); } @@ -1458,14 +1600,14 @@ private function step_before_html(): bool { * This internal function performs the 'before head' insertion mode * logic for the generalized WP_HTML_Processor::step() function. * - * @return bool Whether an element was found. + * @since 6.7.0 Stub implementation. + * * @throws WP_HTML_Unsupported_Exception When encountering unsupported HTML input. * * @see https://html.spec.whatwg.org/#the-before-head-insertion-mode * @see WP_HTML_Processor::step * - * @since 6.7.0 Stub implementation. - * + * @return bool Whether an element was found. */ private function step_before_head(): bool { $token_name = $this->get_token_name(); @@ -1496,7 +1638,6 @@ private function step_before_head(): bool { case '#funky-comment': case '#presumptuous-tag': $this->insert_html_element( $this->state->current_token ); - return true; /* @@ -1519,7 +1660,6 @@ private function step_before_head(): bool { $this->insert_html_element( $this->state->current_token ); $this->state->head_element = $this->state->current_token; $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_IN_HEAD; - return true; /* @@ -1548,7 +1688,6 @@ private function step_before_head(): bool { before_head_anything_else: $this->state->head_element = $this->insert_virtual_node( 'HEAD' ); $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_IN_HEAD; - return $this->step( self::REPROCESS_CURRENT_NODE ); } @@ -1558,14 +1697,14 @@ private function step_before_head(): bool { * This internal function performs the 'in head' insertion mode * logic for the generalized WP_HTML_Processor::step() function. * - * @return bool Whether an element was found. + * @since 6.7.0 + * * @throws WP_HTML_Unsupported_Exception When encountering unsupported HTML input. * * @see https://html.spec.whatwg.org/multipage/parsing.html#parsing-main-inhead * @see WP_HTML_Processor::step * - * @since 6.7.0 - * + * @return bool Whether an element was found. */ private function step_in_head(): bool { $token_name = $this->get_token_name(); @@ -1584,7 +1723,6 @@ private function step_in_head(): bool { if ( parent::TEXT_IS_WHITESPACE === $this->text_node_classification ) { // Insert the character. $this->insert_html_element( $this->state->current_token ); - return true; } @@ -1598,7 +1736,6 @@ private function step_in_head(): bool { case '#funky-comment': case '#presumptuous-tag': $this->insert_html_element( $this->state->current_token ); - return true; /* @@ -1622,7 +1759,6 @@ private function step_in_head(): bool { case '+BGSOUND': case '+LINK': $this->insert_html_element( $this->state->current_token ); - return true; /* @@ -1668,7 +1804,6 @@ private function step_in_head(): bool { */ case '+TITLE': $this->insert_html_element( $this->state->current_token ); - return true; /* @@ -1680,7 +1815,6 @@ private function step_in_head(): bool { case '+NOFRAMES': case '+STYLE': $this->insert_html_element( $this->state->current_token ); - return true; /* @@ -1689,7 +1823,6 @@ private function step_in_head(): bool { case '+NOSCRIPT': $this->insert_html_element( $this->state->current_token ); $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_IN_HEAD_NOSCRIPT; - return true; /* @@ -1699,7 +1832,6 @@ private function step_in_head(): bool { */ case '+SCRIPT': $this->insert_html_element( $this->state->current_token ); - return true; /* @@ -1708,7 +1840,6 @@ private function step_in_head(): bool { case '-HEAD': $this->state->stack_of_open_elements->pop(); $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_AFTER_HEAD; - return true; /* @@ -1737,7 +1868,6 @@ private function step_in_head(): bool { $this->state->stack_of_template_insertion_modes[] = WP_HTML_Processor_State::INSERTION_MODE_IN_TEMPLATE; $this->insert_html_element( $this->state->current_token ); - return true; /* @@ -1758,7 +1888,6 @@ private function step_in_head(): bool { $this->state->active_formatting_elements->clear_up_to_last_marker(); array_pop( $this->state->stack_of_template_insertion_modes ); $this->reset_insertion_mode_appropriately(); - return true; } @@ -1777,7 +1906,6 @@ private function step_in_head(): bool { in_head_anything_else: $this->state->stack_of_open_elements->pop(); $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_AFTER_HEAD; - return $this->step( self::REPROCESS_CURRENT_NODE ); } @@ -1787,14 +1915,14 @@ private function step_in_head(): bool { * This internal function performs the 'in head noscript' insertion mode * logic for the generalized WP_HTML_Processor::step() function. * - * @return bool Whether an element was found. + * @since 6.7.0 Stub implementation. + * * @throws WP_HTML_Unsupported_Exception When encountering unsupported HTML input. * * @see https://html.spec.whatwg.org/#parsing-main-inheadnoscript * @see WP_HTML_Processor::step * - * @since 6.7.0 Stub implementation. - * + * @return bool Whether an element was found. */ private function step_in_head_noscript(): bool { $token_name = $this->get_token_name(); @@ -1838,7 +1966,6 @@ private function step_in_head_noscript(): bool { case '-NOSCRIPT': $this->state->stack_of_open_elements->pop(); $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_IN_HEAD; - return true; /* @@ -1857,6 +1984,7 @@ private function step_in_head_noscript(): bool { case '+NOFRAMES': case '+STYLE': return $this->step_in_head(); + /* * > An end tag whose tag name is "br" * @@ -1881,7 +2009,6 @@ private function step_in_head_noscript(): bool { in_head_noscript_anything_else: $this->state->stack_of_open_elements->pop(); $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_IN_HEAD; - return $this->step( self::REPROCESS_CURRENT_NODE ); } @@ -1891,14 +2018,14 @@ private function step_in_head_noscript(): bool { * This internal function performs the 'after head' insertion mode * logic for the generalized WP_HTML_Processor::step() function. * - * @return bool Whether an element was found. + * @since 6.7.0 Stub implementation. + * * @throws WP_HTML_Unsupported_Exception When encountering unsupported HTML input. * * @see https://html.spec.whatwg.org/#the-after-head-insertion-mode * @see WP_HTML_Processor::step * - * @since 6.7.0 Stub implementation. - * + * @return bool Whether an element was found. */ private function step_after_head(): bool { $token_name = $this->get_token_name(); @@ -1917,7 +2044,6 @@ private function step_after_head(): bool { if ( parent::TEXT_IS_WHITESPACE === $this->text_node_classification ) { // Insert the character. $this->insert_html_element( $this->state->current_token ); - return true; } goto after_head_anything_else; @@ -1930,7 +2056,6 @@ private function step_after_head(): bool { case '#funky-comment': case '#presumptuous-tag': $this->insert_html_element( $this->state->current_token ); - return true; /* @@ -1953,7 +2078,6 @@ private function step_after_head(): bool { $this->insert_html_element( $this->state->current_token ); $this->state->frameset_ok = false; $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_IN_BODY; - return true; /* @@ -1962,7 +2086,6 @@ private function step_after_head(): bool { case '+FRAMESET': $this->insert_html_element( $this->state->current_token ); $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_IN_FRAMESET; - return true; /* @@ -2030,7 +2153,6 @@ private function step_after_head(): bool { after_head_anything_else: $this->insert_virtual_node( 'BODY' ); $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_IN_BODY; - return $this->step( self::REPROCESS_CURRENT_NODE ); } @@ -2040,14 +2162,14 @@ private function step_after_head(): bool { * This internal function performs the 'in body' insertion mode * logic for the generalized WP_HTML_Processor::step() function. * - * @return bool Whether an element was found. + * @since 6.4.0 + * * @throws WP_HTML_Unsupported_Exception When encountering unsupported HTML input. * * @see https://html.spec.whatwg.org/#parsing-main-inbody * @see WP_HTML_Processor::step * - * @since 6.4.0 - * + * @return bool Whether an element was found. */ private function step_in_body(): bool { $token_name = $this->get_token_name(); @@ -2083,14 +2205,12 @@ private function step_in_body(): bool { } $this->insert_html_element( $this->state->current_token ); - return true; case '#comment': case '#funky-comment': case '#presumptuous-tag': $this->insert_html_element( $this->state->current_token ); - return true; /* @@ -2160,7 +2280,6 @@ private function step_in_body(): bool { * This parser does not currently support this behavior: ignore the token. */ $this->state->frameset_ok = false; - return $this->step(); /* @@ -2204,8 +2323,14 @@ private function step_in_body(): bool { */ $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_AFTER_BODY; - - return true; + /* + * The BODY element is not removed from the stack of open elements. + * Only internal state has changed, this does not qualify as a "step" + * in terms of advancing through the document to another token. + * Nothing has been pushed or popped. + * Proceed to parse the next item. + */ + return $this->step(); /* * > An end tag whose tag name is "html" @@ -2227,7 +2352,6 @@ private function step_in_body(): bool { */ $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_AFTER_BODY; - return $this->step( self::REPROCESS_CURRENT_NODE ); /* @@ -2266,7 +2390,6 @@ private function step_in_body(): bool { } $this->insert_html_element( $this->state->current_token ); - return true; /* @@ -2294,7 +2417,6 @@ private function step_in_body(): bool { } $this->insert_html_element( $this->state->current_token ); - return true; /* @@ -2316,7 +2438,6 @@ private function step_in_body(): bool { $this->insert_html_element( $this->state->current_token ); $this->state->frameset_ok = false; - return true; /* @@ -2397,7 +2518,6 @@ private function step_in_body(): bool { } $this->insert_html_element( $this->state->current_token ); - return true; case '+PLAINTEXT': @@ -2473,7 +2593,6 @@ private function step_in_body(): bool { // @todo Record parse error: this error doesn't impact parsing. } $this->state->stack_of_open_elements->pop_until( $token_name ); - return true; /* @@ -2506,7 +2625,6 @@ private function step_in_body(): bool { } $this->state->stack_of_open_elements->remove_node( $node ); - return true; } else { /* @@ -2527,7 +2645,6 @@ private function step_in_body(): bool { } $this->state->stack_of_open_elements->pop_until( 'FORM' ); - return true; } break; @@ -2541,7 +2658,6 @@ private function step_in_body(): bool { } $this->close_a_p_element(); - return true; /* @@ -2587,7 +2703,6 @@ private function step_in_body(): bool { } $this->state->stack_of_open_elements->pop_until( $token_name ); - return true; /* @@ -2615,7 +2730,6 @@ private function step_in_body(): bool { } $this->state->stack_of_open_elements->pop_until( '(internal: H1 through H6 - do not use)' ); - return true; /* @@ -2638,7 +2752,6 @@ private function step_in_body(): bool { $this->reconstruct_active_formatting_elements(); $this->insert_html_element( $this->state->current_token ); $this->state->active_formatting_elements->push( $this->state->current_token ); - return true; /* @@ -2660,7 +2773,6 @@ private function step_in_body(): bool { $this->reconstruct_active_formatting_elements(); $this->insert_html_element( $this->state->current_token ); $this->state->active_formatting_elements->push( $this->state->current_token ); - return true; /* @@ -2677,7 +2789,6 @@ private function step_in_body(): bool { $this->insert_html_element( $this->state->current_token ); $this->state->active_formatting_elements->push( $this->state->current_token ); - return true; /* @@ -2699,7 +2810,6 @@ private function step_in_body(): bool { case '-TT': case '-U': $this->run_adoption_agency_algorithm(); - return true; /* @@ -2712,7 +2822,6 @@ private function step_in_body(): bool { $this->insert_html_element( $this->state->current_token ); $this->state->active_formatting_elements->insert_marker(); $this->state->frameset_ok = false; - return true; /* @@ -2733,7 +2842,6 @@ private function step_in_body(): bool { $this->state->stack_of_open_elements->pop_until( $token_name ); $this->state->active_formatting_elements->clear_up_to_last_marker(); - return true; /* @@ -2754,7 +2862,6 @@ private function step_in_body(): bool { $this->insert_html_element( $this->state->current_token ); $this->state->frameset_ok = false; $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_IN_TABLE; - return true; /* @@ -2776,7 +2883,6 @@ private function step_in_body(): bool { $this->reconstruct_active_formatting_elements(); $this->insert_html_element( $this->state->current_token ); $this->state->frameset_ok = false; - return true; /* @@ -2805,7 +2911,6 @@ private function step_in_body(): bool { case '+SOURCE': case '+TRACK': $this->insert_html_element( $this->state->current_token ); - return true; /* @@ -2817,7 +2922,6 @@ private function step_in_body(): bool { } $this->insert_html_element( $this->state->current_token ); $this->state->frameset_ok = false; - return true; /* @@ -2853,7 +2957,6 @@ private function step_in_body(): bool { * * As a self-contained node, this behavior is handled in the Tag Processor. */ - return true; /* @@ -2873,7 +2976,6 @@ private function step_in_body(): bool { * As a self-contained node, this behavior is handled in the Tag Processor. */ $this->insert_html_element( $this->state->current_token ); - return true; /* @@ -2888,7 +2990,6 @@ private function step_in_body(): bool { * As a self-contained node, this behavior is handled in the Tag Processor. */ $this->insert_html_element( $this->state->current_token ); - return true; /* @@ -2899,7 +3000,6 @@ private function step_in_body(): bool { */ case '+NOEMBED': $this->insert_html_element( $this->state->current_token ); - return true; /* @@ -2930,7 +3030,6 @@ private function step_in_body(): bool { $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_IN_SELECT; break; } - return true; /* @@ -2943,7 +3042,6 @@ private function step_in_body(): bool { } $this->reconstruct_active_formatting_elements(); $this->insert_html_element( $this->state->current_token ); - return true; /* @@ -2960,7 +3058,6 @@ private function step_in_body(): bool { } $this->insert_html_element( $this->state->current_token ); - return true; /* @@ -2978,7 +3075,6 @@ private function step_in_body(): bool { } $this->insert_html_element( $this->state->current_token ); - return true; /* @@ -2998,7 +3094,6 @@ private function step_in_body(): bool { if ( $this->state->current_token->has_self_closing_flag ) { $this->state->stack_of_open_elements->pop(); } - return true; /* @@ -3018,7 +3113,6 @@ private function step_in_body(): bool { if ( $this->state->current_token->has_self_closing_flag ) { $this->state->stack_of_open_elements->pop(); } - return true; /* @@ -3046,7 +3140,6 @@ private function step_in_body(): bool { */ $this->reconstruct_active_formatting_elements(); $this->insert_html_element( $this->state->current_token ); - return true; } else { /* @@ -3084,7 +3177,6 @@ private function step_in_body(): bool { } $this->bail( 'Should not have been able to reach end of IN BODY processing. Check HTML API code.' ); - // This unnecessary return prevents tools from inaccurately reporting type errors. return false; } @@ -3095,14 +3187,14 @@ private function step_in_body(): bool { * This internal function performs the 'in table' insertion mode * logic for the generalized WP_HTML_Processor::step() function. * - * @return bool Whether an element was found. + * @since 6.7.0 + * * @throws WP_HTML_Unsupported_Exception When encountering unsupported HTML input. * * @see https://html.spec.whatwg.org/#parsing-main-intable * @see WP_HTML_Processor::step * - * @since 6.7.0 - * + * @return bool Whether an element was found. */ private function step_in_table(): bool { $token_name = $this->get_token_name(); @@ -3157,7 +3249,6 @@ private function step_in_table(): bool { */ if ( parent::TEXT_IS_WHITESPACE === $this->text_node_classification ) { $this->insert_html_element( $this->state->current_token ); - return true; } @@ -3174,7 +3265,6 @@ private function step_in_table(): bool { case '#funky-comment': case '#presumptuous-tag': $this->insert_html_element( $this->state->current_token ); - return true; /* @@ -3192,7 +3282,6 @@ private function step_in_table(): bool { $this->state->active_formatting_elements->insert_marker(); $this->insert_html_element( $this->state->current_token ); $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_IN_CAPTION; - return true; /* @@ -3202,7 +3291,6 @@ private function step_in_table(): bool { $this->state->stack_of_open_elements->clear_to_table_context(); $this->insert_html_element( $this->state->current_token ); $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_IN_COLUMN_GROUP; - return true; /* @@ -3217,7 +3305,6 @@ private function step_in_table(): bool { */ $this->insert_virtual_node( 'COLGROUP' ); $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_IN_COLUMN_GROUP; - return $this->step( self::REPROCESS_CURRENT_NODE ); /* @@ -3229,7 +3316,6 @@ private function step_in_table(): bool { $this->state->stack_of_open_elements->clear_to_table_context(); $this->insert_html_element( $this->state->current_token ); $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_IN_TABLE_BODY; - return true; /* @@ -3245,7 +3331,6 @@ private function step_in_table(): bool { */ $this->insert_virtual_node( 'TBODY' ); $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_IN_TABLE_BODY; - return $this->step( self::REPROCESS_CURRENT_NODE ); /* @@ -3260,7 +3345,6 @@ private function step_in_table(): bool { $this->state->stack_of_open_elements->pop_until( 'TABLE' ); $this->reset_insertion_mode_appropriately(); - return $this->step( self::REPROCESS_CURRENT_NODE ); /* @@ -3274,7 +3358,6 @@ private function step_in_table(): bool { $this->state->stack_of_open_elements->pop_until( 'TABLE' ); $this->reset_insertion_mode_appropriately(); - return true; /* @@ -3321,7 +3404,6 @@ private function step_in_table(): bool { } // @todo Indicate a parse error once it's possible. $this->insert_html_element( $this->state->current_token ); - return true; /* @@ -3341,7 +3423,6 @@ private function step_in_table(): bool { $this->insert_html_element( $this->state->current_token ); $this->state->form_element = $this->state->current_token; $this->state->stack_of_open_elements->pop(); - return true; } @@ -3362,14 +3443,14 @@ private function step_in_table(): bool { * This internal function performs the 'in table text' insertion mode * logic for the generalized WP_HTML_Processor::step() function. * - * @return bool Whether an element was found. + * @since 6.7.0 Stub implementation. + * * @throws WP_HTML_Unsupported_Exception When encountering unsupported HTML input. * * @see https://html.spec.whatwg.org/#parsing-main-intabletext * @see WP_HTML_Processor::step * - * @since 6.7.0 Stub implementation. - * + * @return bool Whether an element was found. */ private function step_in_table_text(): bool { $this->bail( 'No support for parsing in the ' . WP_HTML_Processor_State::INSERTION_MODE_IN_TABLE_TEXT . ' state.' ); @@ -3381,14 +3462,14 @@ private function step_in_table_text(): bool { * This internal function performs the 'in caption' insertion mode * logic for the generalized WP_HTML_Processor::step() function. * - * @return bool Whether an element was found. + * @since 6.7.0 + * * @throws WP_HTML_Unsupported_Exception When encountering unsupported HTML input. * * @see https://html.spec.whatwg.org/#parsing-main-incaption * @see WP_HTML_Processor::step * - * @since 6.7.0 - * + * @return bool Whether an element was found. */ private function step_in_caption(): bool { $tag_name = $this->get_tag(); @@ -3433,7 +3514,6 @@ private function step_in_caption(): bool { if ( '-CAPTION' === $op ) { return true; } - return $this->step( self::REPROCESS_CURRENT_NODE ); /** @@ -3466,14 +3546,14 @@ private function step_in_caption(): bool { * This internal function performs the 'in column group' insertion mode * logic for the generalized WP_HTML_Processor::step() function. * - * @return bool Whether an element was found. + * @since 6.7.0 + * * @throws WP_HTML_Unsupported_Exception When encountering unsupported HTML input. * * @see https://html.spec.whatwg.org/#parsing-main-incolgroup * @see WP_HTML_Processor::step * - * @since 6.7.0 - * + * @return bool Whether an element was found. */ private function step_in_column_group(): bool { $token_name = $this->get_token_name(); @@ -3490,7 +3570,6 @@ private function step_in_column_group(): bool { if ( parent::TEXT_IS_WHITESPACE === $this->text_node_classification ) { // Insert the character. $this->insert_html_element( $this->state->current_token ); - return true; } @@ -3504,7 +3583,6 @@ private function step_in_column_group(): bool { case '#funky-comment': case '#presumptuous-tag': $this->insert_html_element( $this->state->current_token ); - return true; /* @@ -3526,7 +3604,6 @@ private function step_in_column_group(): bool { case '+COL': $this->insert_html_element( $this->state->current_token ); $this->state->stack_of_open_elements->pop(); - return true; /* @@ -3539,7 +3616,6 @@ private function step_in_column_group(): bool { } $this->state->stack_of_open_elements->pop(); $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_IN_TABLE; - return true; /* @@ -3568,7 +3644,6 @@ private function step_in_column_group(): bool { } $this->state->stack_of_open_elements->pop(); $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_IN_TABLE; - return $this->step( self::REPROCESS_CURRENT_NODE ); } @@ -3578,14 +3653,14 @@ private function step_in_column_group(): bool { * This internal function performs the 'in table body' insertion mode * logic for the generalized WP_HTML_Processor::step() function. * - * @return bool Whether an element was found. + * @since 6.7.0 + * * @throws WP_HTML_Unsupported_Exception When encountering unsupported HTML input. * * @see https://html.spec.whatwg.org/#parsing-main-intbody * @see WP_HTML_Processor::step * - * @since 6.7.0 - * + * @return bool Whether an element was found. */ private function step_in_table_body(): bool { $tag_name = $this->get_tag(); @@ -3600,7 +3675,6 @@ private function step_in_table_body(): bool { $this->state->stack_of_open_elements->clear_to_table_body_context(); $this->insert_html_element( $this->state->current_token ); $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_IN_ROW; - return true; /* @@ -3612,7 +3686,6 @@ private function step_in_table_body(): bool { $this->state->stack_of_open_elements->clear_to_table_body_context(); $this->insert_virtual_node( 'TR' ); $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_IN_ROW; - return $this->step( self::REPROCESS_CURRENT_NODE ); /* @@ -3629,7 +3702,6 @@ private function step_in_table_body(): bool { $this->state->stack_of_open_elements->clear_to_table_body_context(); $this->state->stack_of_open_elements->pop(); $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_IN_TABLE; - return true; /* @@ -3654,7 +3726,6 @@ private function step_in_table_body(): bool { $this->state->stack_of_open_elements->clear_to_table_body_context(); $this->state->stack_of_open_elements->pop(); $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_IN_TABLE; - return $this->step( self::REPROCESS_CURRENT_NODE ); /* @@ -3676,7 +3747,6 @@ private function step_in_table_body(): bool { * > Anything else * > Process the token using the rules for the "in table" insertion mode. */ - return $this->step_in_table(); } @@ -3686,14 +3756,14 @@ private function step_in_table_body(): bool { * This internal function performs the 'in row' insertion mode * logic for the generalized WP_HTML_Processor::step() function. * - * @return bool Whether an element was found. + * @since 6.7.0 + * * @throws WP_HTML_Unsupported_Exception When encountering unsupported HTML input. * * @see https://html.spec.whatwg.org/#parsing-main-intr * @see WP_HTML_Processor::step * - * @since 6.7.0 - * + * @return bool Whether an element was found. */ private function step_in_row(): bool { $tag_name = $this->get_tag(); @@ -3710,7 +3780,6 @@ private function step_in_row(): bool { $this->insert_html_element( $this->state->current_token ); $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_IN_CELL; $this->state->active_formatting_elements->insert_marker(); - return true; /* @@ -3725,7 +3794,6 @@ private function step_in_row(): bool { $this->state->stack_of_open_elements->clear_to_table_row_context(); $this->state->stack_of_open_elements->pop(); $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_IN_TABLE_BODY; - return true; /* @@ -3748,7 +3816,6 @@ private function step_in_row(): bool { $this->state->stack_of_open_elements->clear_to_table_row_context(); $this->state->stack_of_open_elements->pop(); $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_IN_TABLE_BODY; - return $this->step( self::REPROCESS_CURRENT_NODE ); /* @@ -3770,7 +3837,6 @@ private function step_in_row(): bool { $this->state->stack_of_open_elements->clear_to_table_row_context(); $this->state->stack_of_open_elements->pop(); $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_IN_TABLE_BODY; - return $this->step( self::REPROCESS_CURRENT_NODE ); /* @@ -3791,7 +3857,6 @@ private function step_in_row(): bool { * > Anything else * > Process the token using the rules for the "in table" insertion mode. */ - return $this->step_in_table(); } @@ -3801,14 +3866,14 @@ private function step_in_row(): bool { * This internal function performs the 'in cell' insertion mode * logic for the generalized WP_HTML_Processor::step() function. * - * @return bool Whether an element was found. + * @since 6.7.0 + * * @throws WP_HTML_Unsupported_Exception When encountering unsupported HTML input. * * @see https://html.spec.whatwg.org/#parsing-main-intd * @see WP_HTML_Processor::step * - * @since 6.7.0 - * + * @return bool Whether an element was found. */ private function step_in_cell(): bool { $tag_name = $this->get_tag(); @@ -3841,7 +3906,6 @@ private function step_in_cell(): bool { $this->state->stack_of_open_elements->pop_until( $tag_name ); $this->state->active_formatting_elements->clear_up_to_last_marker(); $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_IN_ROW; - return true; /* @@ -3864,7 +3928,6 @@ private function step_in_cell(): bool { */ $this->close_cell(); - return $this->step( self::REPROCESS_CURRENT_NODE ); /* @@ -3891,7 +3954,6 @@ private function step_in_cell(): bool { return $this->step(); } $this->close_cell(); - return $this->step( self::REPROCESS_CURRENT_NODE ); } @@ -3899,7 +3961,6 @@ private function step_in_cell(): bool { * > Anything else * > Process the token using the rules for the "in body" insertion mode. */ - return $this->step_in_body(); } @@ -3909,14 +3970,14 @@ private function step_in_cell(): bool { * This internal function performs the 'in select' insertion mode * logic for the generalized WP_HTML_Processor::step() function. * - * @return bool Whether an element was found. + * @since 6.7.0 + * * @throws WP_HTML_Unsupported_Exception When encountering unsupported HTML input. * * @see https://html.spec.whatwg.org/multipage/parsing.html#parsing-main-inselect * @see WP_HTML_Processor::step * - * @since 6.7.0 - * + * @return bool Whether an element was found. */ private function step_in_select(): bool { $token_name = $this->get_token_name(); @@ -3941,7 +4002,6 @@ private function step_in_select(): bool { } $this->insert_html_element( $this->state->current_token ); - return true; /* @@ -3951,7 +4011,6 @@ private function step_in_select(): bool { case '#funky-comment': case '#presumptuous-tag': $this->insert_html_element( $this->state->current_token ); - return true; /* @@ -3975,7 +4034,6 @@ private function step_in_select(): bool { $this->state->stack_of_open_elements->pop(); } $this->insert_html_element( $this->state->current_token ); - return true; /* @@ -3996,7 +4054,6 @@ private function step_in_select(): bool { } $this->insert_html_element( $this->state->current_token ); - return true; /* @@ -4015,7 +4072,6 @@ private function step_in_select(): bool { if ( $this->state->stack_of_open_elements->current_node_is( 'OPTGROUP' ) ) { $this->state->stack_of_open_elements->pop(); - return true; } @@ -4028,7 +4084,6 @@ private function step_in_select(): bool { case '-OPTION': if ( $this->state->stack_of_open_elements->current_node_is( 'OPTION' ) ) { $this->state->stack_of_open_elements->pop(); - return true; } @@ -4049,7 +4104,6 @@ private function step_in_select(): bool { } $this->state->stack_of_open_elements->pop_until( 'SELECT' ); $this->reset_insertion_mode_appropriately(); - return true; /* @@ -4066,7 +4120,6 @@ private function step_in_select(): bool { } $this->state->stack_of_open_elements->pop_until( 'SELECT' ); $this->reset_insertion_mode_appropriately(); - return $this->step( self::REPROCESS_CURRENT_NODE ); /* @@ -4083,7 +4136,6 @@ private function step_in_select(): bool { * > Anything else * > Parse error: ignore the token. */ - return $this->step(); } @@ -4093,14 +4145,14 @@ private function step_in_select(): bool { * This internal function performs the 'in select in table' insertion mode * logic for the generalized WP_HTML_Processor::step() function. * - * @return bool Whether an element was found. + * @since 6.7.0 + * * @throws WP_HTML_Unsupported_Exception When encountering unsupported HTML input. * * @see https://html.spec.whatwg.org/#parsing-main-inselectintable * @see WP_HTML_Processor::step * - * @since 6.7.0 - * + * @return bool Whether an element was found. */ private function step_in_select_in_table(): bool { $token_name = $this->get_token_name(); @@ -4123,7 +4175,6 @@ private function step_in_select_in_table(): bool { // @todo Indicate a parse error once it's possible. $this->state->stack_of_open_elements->pop_until( 'SELECT' ); $this->reset_insertion_mode_appropriately(); - return $this->step( self::REPROCESS_CURRENT_NODE ); /* @@ -4143,14 +4194,12 @@ private function step_in_select_in_table(): bool { } $this->state->stack_of_open_elements->pop_until( 'SELECT' ); $this->reset_insertion_mode_appropriately(); - return $this->step( self::REPROCESS_CURRENT_NODE ); } /* * > Anything else */ - return $this->step_in_select(); } @@ -4160,14 +4209,14 @@ private function step_in_select_in_table(): bool { * This internal function performs the 'in template' insertion mode * logic for the generalized WP_HTML_Processor::step() function. * - * @return bool Whether an element was found. + * @since 6.7.0 Stub implementation. + * * @throws WP_HTML_Unsupported_Exception When encountering unsupported HTML input. * * @see https://html.spec.whatwg.org/#parsing-main-intemplate * @see WP_HTML_Processor::step * - * @since 6.7.0 Stub implementation. - * + * @return bool Whether an element was found. */ private function step_in_template(): bool { $token_name = $this->get_token_name(); @@ -4218,7 +4267,6 @@ private function step_in_template(): bool { array_pop( $this->state->stack_of_template_insertion_modes ); $this->state->stack_of_template_insertion_modes[] = WP_HTML_Processor_State::INSERTION_MODE_IN_TABLE; $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_IN_TABLE; - return $this->step( self::REPROCESS_CURRENT_NODE ); /* @@ -4228,7 +4276,6 @@ private function step_in_template(): bool { array_pop( $this->state->stack_of_template_insertion_modes ); $this->state->stack_of_template_insertion_modes[] = WP_HTML_Processor_State::INSERTION_MODE_IN_COLUMN_GROUP; $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_IN_COLUMN_GROUP; - return $this->step( self::REPROCESS_CURRENT_NODE ); /* @@ -4238,7 +4285,6 @@ private function step_in_template(): bool { array_pop( $this->state->stack_of_template_insertion_modes ); $this->state->stack_of_template_insertion_modes[] = WP_HTML_Processor_State::INSERTION_MODE_IN_TABLE_BODY; $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_IN_TABLE_BODY; - return $this->step( self::REPROCESS_CURRENT_NODE ); /* @@ -4249,7 +4295,6 @@ private function step_in_template(): bool { array_pop( $this->state->stack_of_template_insertion_modes ); $this->state->stack_of_template_insertion_modes[] = WP_HTML_Processor_State::INSERTION_MODE_IN_ROW; $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_IN_ROW; - return $this->step( self::REPROCESS_CURRENT_NODE ); } @@ -4260,7 +4305,6 @@ private function step_in_template(): bool { array_pop( $this->state->stack_of_template_insertion_modes ); $this->state->stack_of_template_insertion_modes[] = WP_HTML_Processor_State::INSERTION_MODE_IN_BODY; $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_IN_BODY; - return $this->step( self::REPROCESS_CURRENT_NODE ); } @@ -4285,7 +4329,6 @@ private function step_in_template(): bool { $this->state->active_formatting_elements->clear_up_to_last_marker(); array_pop( $this->state->stack_of_template_insertion_modes ); $this->reset_insertion_mode_appropriately(); - return $this->step( self::REPROCESS_CURRENT_NODE ); } @@ -4295,14 +4338,14 @@ private function step_in_template(): bool { * This internal function performs the 'after body' insertion mode * logic for the generalized WP_HTML_Processor::step() function. * - * @return bool Whether an element was found. + * @since 6.7.0 Stub implementation. + * * @throws WP_HTML_Unsupported_Exception When encountering unsupported HTML input. * * @see https://html.spec.whatwg.org/#parsing-main-afterbody * @see WP_HTML_Processor::step * - * @since 6.7.0 Stub implementation. - * + * @return bool Whether an element was found. */ private function step_after_body(): bool { $tag_name = $this->get_token_name(); @@ -4360,8 +4403,14 @@ private function step_after_body(): bool { } $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_AFTER_AFTER_BODY; - - return true; + /* + * The HTML element is not removed from the stack of open elements. + * Only internal state has changed, this does not qualify as a "step" + * in terms of advancing through the document to another token. + * Nothing has been pushed or popped. + * Proceed to parse the next item. + */ + return $this->step(); } /* @@ -4369,7 +4418,6 @@ private function step_after_body(): bool { */ after_body_anything_else: $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_IN_BODY; - return $this->step( self::REPROCESS_CURRENT_NODE ); } @@ -4379,14 +4427,14 @@ private function step_after_body(): bool { * This internal function performs the 'in frameset' insertion mode * logic for the generalized WP_HTML_Processor::step() function. * - * @return bool Whether an element was found. + * @since 6.7.0 Stub implementation. + * * @throws WP_HTML_Unsupported_Exception When encountering unsupported HTML input. * * @see https://html.spec.whatwg.org/#parsing-main-inframeset * @see WP_HTML_Processor::step * - * @since 6.7.0 Stub implementation. - * + * @return bool Whether an element was found. */ private function step_in_frameset(): bool { $tag_name = $this->get_token_name(); @@ -4418,7 +4466,6 @@ private function step_in_frameset(): bool { case '#funky-comment': case '#presumptuous-tag': $this->insert_html_element( $this->state->current_token ); - return true; /* @@ -4439,7 +4486,6 @@ private function step_in_frameset(): bool { */ case '+FRAMESET': $this->insert_html_element( $this->state->current_token ); - return true; /* @@ -4481,7 +4527,6 @@ private function step_in_frameset(): bool { case '+FRAME': $this->insert_html_element( $this->state->current_token ); $this->state->stack_of_open_elements->pop(); - return true; /* @@ -4501,14 +4546,14 @@ private function step_in_frameset(): bool { * This internal function performs the 'after frameset' insertion mode * logic for the generalized WP_HTML_Processor::step() function. * - * @return bool Whether an element was found. + * @since 6.7.0 Stub implementation. + * * @throws WP_HTML_Unsupported_Exception When encountering unsupported HTML input. * * @see https://html.spec.whatwg.org/#parsing-main-afterframeset * @see WP_HTML_Processor::step * - * @since 6.7.0 Stub implementation. - * + * @return bool Whether an element was found. */ private function step_after_frameset(): bool { $tag_name = $this->get_token_name(); @@ -4540,7 +4585,6 @@ private function step_after_frameset(): bool { case '#funky-comment': case '#presumptuous-tag': $this->insert_html_element( $this->state->current_token ); - return true; /* @@ -4561,8 +4605,14 @@ private function step_after_frameset(): bool { */ case '-HTML': $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_AFTER_AFTER_FRAMESET; - - return true; + /* + * The HTML element is not removed from the stack of open elements. + * Only internal state has changed, this does not qualify as a "step" + * in terms of advancing through the document to another token. + * Nothing has been pushed or popped. + * Proceed to parse the next item. + */ + return $this->step(); /* * > A start tag whose tag name is "noframes" @@ -4581,14 +4631,14 @@ private function step_after_frameset(): bool { * This internal function performs the 'after after body' insertion mode * logic for the generalized WP_HTML_Processor::step() function. * - * @return bool Whether an element was found. + * @since 6.7.0 Stub implementation. + * * @throws WP_HTML_Unsupported_Exception When encountering unsupported HTML input. * * @see https://html.spec.whatwg.org/#the-after-after-body-insertion-mode * @see WP_HTML_Processor::step * - * @since 6.7.0 Stub implementation. - * + * @return bool Whether an element was found. */ private function step_after_after_body(): bool { $tag_name = $this->get_token_name(); @@ -4635,7 +4685,6 @@ private function step_after_after_body(): bool { */ after_after_body_anything_else: $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_IN_BODY; - return $this->step( self::REPROCESS_CURRENT_NODE ); } @@ -4645,14 +4694,14 @@ private function step_after_after_body(): bool { * This internal function performs the 'after after frameset' insertion mode * logic for the generalized WP_HTML_Processor::step() function. * - * @return bool Whether an element was found. + * @since 6.7.0 Stub implementation. + * * @throws WP_HTML_Unsupported_Exception When encountering unsupported HTML input. * * @see https://html.spec.whatwg.org/#the-after-after-frameset-insertion-mode * @see WP_HTML_Processor::step * - * @since 6.7.0 Stub implementation. - * + * @return bool Whether an element was found. */ private function step_after_after_frameset(): bool { $tag_name = $this->get_token_name(); @@ -4713,14 +4762,14 @@ private function step_after_after_frameset(): bool { * This internal function performs the 'in foreign content' insertion mode * logic for the generalized WP_HTML_Processor::step() function. * - * @return bool Whether an element was found. + * @since 6.7.0 Stub implementation. + * * @throws WP_HTML_Unsupported_Exception When encountering unsupported HTML input. * * @see https://html.spec.whatwg.org/#parsing-main-inforeign * @see WP_HTML_Processor::step * - * @since 6.7.0 Stub implementation. - * + * @return bool Whether an element was found. */ private function step_in_foreign_content(): bool { $tag_name = $this->get_token_name(); @@ -4763,7 +4812,6 @@ private function step_in_foreign_content(): bool { } $this->insert_foreign_element( $this->state->current_token, false ); - return true; /* @@ -4782,7 +4830,6 @@ private function step_in_foreign_content(): bool { } $this->insert_foreign_element( $this->state->current_token, false ); - return true; /* @@ -4792,7 +4839,6 @@ private function step_in_foreign_content(): bool { case '#funky-comment': case '#presumptuous-tag': $this->insert_foreign_element( $this->state->current_token, false ); - return true; /* @@ -4903,7 +4949,6 @@ private function step_in_foreign_content(): bool { if ( $this->state->current_token->has_self_closing_flag ) { $this->state->stack_of_open_elements->pop(); } - return true; } @@ -4912,7 +4957,6 @@ private function step_in_foreign_content(): bool { */ if ( $this->is_tag_closer() && 'SCRIPT' === $this->state->current_token->node_name && 'svg' === $this->state->current_token->namespace ) { $this->state->stack_of_open_elements->pop(); - return true; } @@ -5027,7 +5071,6 @@ private function step_in_foreign_content(): bool { } $this->bail( 'Should not have been able to reach end of IN FOREIGN CONTENT processing. Check HTML API code.' ); - // This unnecessary return prevents tools from inaccurately reporting type errors. return false; } @@ -5039,15 +5082,15 @@ private function step_in_foreign_content(): bool { /** * Creates a new bookmark for the currently-matched token and returns the generated name. * - * @return string|false Name of created bookmark, or false if unable to create. - * @throws Exception When unable to allocate requested bookmark. - * * @since 6.4.0 * @since 6.5.0 Renamed from bookmark_tag() to bookmark_token(). * + * @throws Exception When unable to allocate requested bookmark. + * + * @return string|false Name of created bookmark, or false if unable to create. */ private function bookmark_token() { - if ( ! parent::set_bookmark( ++ $this->bookmark_counter ) ) { + if ( ! parent::set_bookmark( ++$this->bookmark_counter ) ) { $this->last_error = self::ERROR_EXCEEDED_MAX_BOOKMARKS; throw new Exception( 'could not allocate bookmark' ); } @@ -5089,9 +5132,9 @@ public function get_namespace(): string { * $processor->next_tag() === false; * $processor->get_tag() === null; * - * @return string|null Name of currently matched tag in input HTML, or `null` if none found. * @since 6.4.0 * + * @return string|null Name of currently matched tag in input HTML, or `null` if none found. */ public function get_tag(): ?string { if ( null !== $this->last_error ) { @@ -5108,7 +5151,6 @@ public function get_tag(): ?string { * > A start tag whose tag name is "image" * > Change the token's tag name to "img" and reprocess it. (Don't ask.) */ - return ( 'IMAGE' === $tag_name && 'html' === $this->get_namespace() ) ? 'IMG' : $tag_name; @@ -5127,9 +5169,9 @@ public function get_tag(): ?string { * This function does not determine if a tag is self-closing, * but only if the self-closing flag is present in the syntax. * - * @return bool Whether the currently matched tag contains the self-closing flag. * @since 6.6.0 Subclassed for the HTML Processor. * + * @return bool Whether the currently matched tag contains the self-closing flag. */ public function has_self_closing_flag(): bool { return $this->is_virtual() ? false : parent::has_self_closing_flag(); @@ -5151,9 +5193,9 @@ public function has_self_closing_flag(): bool { * hasn't yet found a token or because it reached the end * of the document without matching a token. * - * @return string|null Name of the matched token. * @since 6.6.0 Subclassed for the HTML Processor. * + * @return string|null Name of the matched token. */ public function get_token_name(): ?string { return $this->is_virtual() @@ -5179,9 +5221,9 @@ public function get_token_name(): ?string { * - `#presumptuous-tag` when matched on an empty tag closer. * - `#funky-comment` when matched on a funky comment. * - * @return string|null What kind of token is matched, or null. * @since 6.6.0 Subclassed for the HTML Processor. * + * @return string|null What kind of token is matched, or null. */ public function get_token_type(): ?string { if ( $this->is_virtual() ) { @@ -5221,11 +5263,10 @@ public function get_token_type(): ?string { * $p->next_tag() === false; * $p->get_attribute( 'class' ) === null; * - * @param string $name Name of attribute whose value is requested. - * - * @return string|true|null Value of attribute or `null` if not available. Boolean attributes return `true`. * @since 6.6.0 Subclassed for HTML Processor. * + * @param string $name Name of attribute whose value is requested. + * @return string|true|null Value of attribute or `null` if not available. Boolean attributes return `true`. */ public function get_attribute( $name ) { return $this->is_virtual() ? null : parent::get_attribute( $name ); @@ -5240,12 +5281,11 @@ public function get_attribute( $name ) { * * For string attributes, the value is escaped using the `esc_attr` function. * - * @param string $name The attribute name to target. - * @param string|bool $value The new attribute value. - * - * @return bool Whether an attribute value was set. * @since 6.6.0 Subclassed for the HTML Processor. * + * @param string $name The attribute name to target. + * @param string|bool $value The new attribute value. + * @return bool Whether an attribute value was set. */ public function set_attribute( $name, $value ): bool { return $this->is_virtual() ? false : parent::set_attribute( $name, $value ); @@ -5254,11 +5294,10 @@ public function set_attribute( $name, $value ): bool { /** * Remove an attribute from the currently-matched tag. * - * @param string $name The attribute name to remove. - * - * @return bool Whether an attribute was removed. * @since 6.6.0 Subclassed for HTML Processor. * + * @param string $name The attribute name to remove. + * @return bool Whether an attribute was removed. */ public function remove_attribute( $name ): bool { return $this->is_virtual() ? false : parent::remove_attribute( $name ); @@ -5283,13 +5322,12 @@ public function remove_attribute( $name ): bool { * $p->next_tag() === false; * $p->get_attribute_names_with_prefix( 'data-' ) === null; * - * @param string $prefix Prefix of requested attribute names. - * - * @return array|null List of attribute names, or `null` when no tag opener is matched. * @since 6.6.0 Subclassed for the HTML Processor. * * @see https://html.spec.whatwg.org/multipage/syntax.html#attributes-2:ascii-case-insensitive * + * @param string $prefix Prefix of requested attribute names. + * @return array|null List of attribute names, or `null` when no tag opener is matched. */ public function get_attribute_names_with_prefix( $prefix ): ?array { return $this->is_virtual() ? null : parent::get_attribute_names_with_prefix( $prefix ); @@ -5298,11 +5336,10 @@ public function get_attribute_names_with_prefix( $prefix ): ?array { /** * Adds a new class name to the currently matched tag. * - * @param string $class_name The class name to add. - * - * @return bool Whether the class was set to be added. * @since 6.6.0 Subclassed for the HTML Processor. * + * @param string $class_name The class name to add. + * @return bool Whether the class was set to be added. */ public function add_class( $class_name ): bool { return $this->is_virtual() ? false : parent::add_class( $class_name ); @@ -5311,11 +5348,10 @@ public function add_class( $class_name ): bool { /** * Removes a class name from the currently matched tag. * - * @param string $class_name The class name to remove. - * - * @return bool Whether the class was set to be removed. * @since 6.6.0 Subclassed for the HTML Processor. * + * @param string $class_name The class name to remove. + * @return bool Whether the class was set to be removed. */ public function remove_class( $class_name ): bool { return $this->is_virtual() ? false : parent::remove_class( $class_name ); @@ -5324,15 +5360,14 @@ public function remove_class( $class_name ): bool { /** * Returns if a matched tag contains the given ASCII case-insensitive class name. * - * @param string $wanted_class Look for this CSS class name, ASCII case-insensitive. - * - * @return bool|null Whether the matched tag contains the given class name, or null if not matched. * @since 6.6.0 Subclassed for the HTML Processor. * * @todo When reconstructing active formatting elements with attributes, find a way * to indicate if the virtually-reconstructed formatting elements contain the * wanted class name. * + * @param string $wanted_class Look for this CSS class name, ASCII case-insensitive. + * @return bool|null Whether the matched tag contains the given class name, or null if not matched. */ public function has_class( $wanted_class ): ?bool { return $this->is_virtual() ? null : parent::has_class( $wanted_class ); @@ -5374,9 +5409,9 @@ public function class_list() { * that a token has modifiable text, and a token with modifiable text may * have an empty string (e.g. a comment with no contents). * - * @return string * @since 6.6.0 Subclassed for the HTML Processor. * + * @return string */ public function get_modifiable_text(): string { return $this->is_virtual() ? '' : parent::get_modifiable_text(); @@ -5391,7 +5426,7 @@ public function get_modifiable_text(): string { * they are commonly known, but a number of unrelated syntax errors * also produce comments. * - * @return string|null + * @see self::COMMENT_AS_ABRUPTLY_CLOSED_COMMENT * @see self::COMMENT_AS_CDATA_LOOKALIKE * @see self::COMMENT_AS_INVALID_HTML * @see self::COMMENT_AS_HTML_COMMENT @@ -5399,7 +5434,7 @@ public function get_modifiable_text(): string { * * @since 6.6.0 Subclassed for the HTML Processor. * - * @see self::COMMENT_AS_ABRUPTLY_CLOSED_COMMENT + * @return string|null */ public function get_comment_type(): ?string { return $this->is_virtual() ? null : parent::get_comment_type(); @@ -5411,11 +5446,10 @@ public function get_comment_type(): ?string { * Releasing a bookmark frees up the small * performance overhead it requires. * - * @param string $bookmark_name Name of the bookmark to remove. - * - * @return bool Whether the bookmark already existed before removal. * @since 6.4.0 * + * @param string $bookmark_name Name of the bookmark to remove. + * @return bool Whether the bookmark already existed before removal. */ public function release_bookmark( $bookmark_name ): bool { return parent::release_bookmark( "_{$bookmark_name}" ); @@ -5431,13 +5465,12 @@ public function release_bookmark( $bookmark_name ): bool { * In order to prevent accidental infinite loops, there's a * maximum limit on the number of times seek() can be called. * - * @param string $bookmark_name Jump to the place in the document identified by this bookmark name. - * - * @return bool Whether the internal cursor was successfully moved to the bookmark's location. * @throws Exception When unable to allocate a bookmark for the next token in the input HTML document. * * @since 6.4.0 * + * @param string $bookmark_name Jump to the place in the document identified by this bookmark name. + * @return bool Whether the internal cursor was successfully moved to the bookmark's location. */ public function seek( $bookmark_name ): bool { // Flush any pending updates to the document before beginning. @@ -5480,54 +5513,93 @@ public function seek( $bookmark_name ): bool { * and computation time. */ if ( 'backward' === $direction ) { + /* - * Instead of clearing the parser state and starting fresh, calling the stack methods - * maintains the proper flags in the parser. + * When moving backward, stateful stacks should be cleared. */ foreach ( $this->state->stack_of_open_elements->walk_up() as $item ) { - if ( 'context-node' === $item->bookmark_name ) { - break; - } - $this->state->stack_of_open_elements->remove_node( $item ); } foreach ( $this->state->active_formatting_elements->walk_up() as $item ) { - if ( 'context-node' === $item->bookmark_name ) { - break; - } - $this->state->active_formatting_elements->remove_node( $item ); } - parent::seek( 'context-node' ); - $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_IN_BODY; - $this->state->frameset_ok = true; - $this->element_queue = array(); - $this->current_element = null; + /* + * **After** clearing stacks, more processor state can be reset. + * This must be done after clearing the stack because those stacks generate events that + * would appear on a subsequent call to `next_token()`. + */ + $this->state->frameset_ok = true; + $this->state->stack_of_template_insertion_modes = array(); + $this->state->head_element = null; + $this->state->form_element = null; + $this->state->current_token = null; + $this->current_element = null; + $this->element_queue = array(); + + /* + * The absence of a context node indicates a full parse. + * The presence of a context node indicates a fragment parser. + */ + if ( null === $this->context_node ) { + $this->change_parsing_namespace( 'html' ); + $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_INITIAL; + $this->breadcrumbs = array(); - if ( isset( $this->context_node ) ) { - $this->breadcrumbs = array_slice( $this->breadcrumbs, 0, 2 ); + $this->bookmarks['initial'] = new WP_HTML_Span( 0, 0 ); + parent::seek( 'initial' ); + unset( $this->bookmarks['initial'] ); } else { - $this->breadcrumbs = array(); - } - } - // When moving forwards, reparse the document until reaching the same location as the original bookmark. - if ( $bookmark_starts_at === $this->bookmarks[ $this->state->current_token->bookmark_name ]->start ) { - return true; - } + /* + * Push the root-node (HTML) back onto the stack of open elements. + * + * Fragment parsers require this extra bit of setup. + * It's handled in full parsers by advancing the processor state. + */ + $this->state->stack_of_open_elements->push( + new WP_HTML_Token( + 'root-node', + 'HTML', + false + ) + ); - while ( $this->next_token() ) { - if ( $bookmark_starts_at === $this->bookmarks[ $this->state->current_token->bookmark_name ]->start ) { - while ( isset( $this->current_element ) && WP_HTML_Stack_Event::POP === $this->current_element->operation ) { - $this->current_element = array_shift( $this->element_queue ); + $this->change_parsing_namespace( + $this->context_node->integration_node_type + ? 'html' + : $this->context_node->namespace + ); + + if ( 'TEMPLATE' === $this->context_node->node_name ) { + $this->state->stack_of_template_insertion_modes[] = WP_HTML_Processor_State::INSERTION_MODE_IN_TEMPLATE; } - return true; + $this->reset_insertion_mode_appropriately(); + $this->breadcrumbs = array_slice( $this->breadcrumbs, 0, 2 ); + parent::seek( $this->context_node->bookmark_name ); } } + /* + * Here, the processor moves forward through the document until it matches the bookmark. + * do-while is used here because the processor is expected to already be stopped on + * a token than may match the bookmarked location. + */ + do { + /* + * The processor will stop on virtual tokens, but bookmarks may not be set on them. + * They should not be matched when seeking a bookmark, skip them. + */ + if ( $this->is_virtual() ) { + continue; + } + if ( $bookmark_starts_at === $this->bookmarks[ $this->state->current_token->bookmark_name ]->start ) { + return true; + } + } while ( $this->next_token() ); + return false; } @@ -5606,24 +5678,35 @@ public function seek( $bookmark_name ): bool { * reaching for it, as inappropriate use could lead to broken * HTML structure or unwanted processing overhead. * - * @param string $bookmark_name Identifies this particular bookmark. + * Bookmarks cannot be set on tokens that do no appear in the original + * HTML text. For example, the HTML `
` stops at tags `TABLE`, + * `TBODY`, `TR`, and `TD`. The `TBODY` and `TR` tags do not appear in + * the original HTML and cannot be used as bookmarks. * - * @return bool Whether the bookmark was successfully created. * @since 6.4.0 * + * @param string $bookmark_name Identifies this particular bookmark. + * @return bool Whether the bookmark was successfully created. */ public function set_bookmark( $bookmark_name ): bool { + if ( $this->is_virtual() ) { + _doing_it_wrong( + __METHOD__, + __( 'Cannot set bookmarks on tokens that do no appear in the original HTML text.' ), + '6.8.0' + ); + return false; + } return parent::set_bookmark( "_{$bookmark_name}" ); } /** * Checks whether a bookmark with the given name exists. * - * @param string $bookmark_name Name to identify a bookmark that potentially exists. - * - * @return bool Whether that bookmark exists. * @since 6.5.0 * + * @param string $bookmark_name Name to identify a bookmark that potentially exists. + * @return bool Whether that bookmark exists. */ public function has_bookmark( $bookmark_name ): bool { return parent::has_bookmark( "_{$bookmark_name}" ); @@ -5636,10 +5719,10 @@ public function has_bookmark( $bookmark_name ): bool { /** * Closes a P element. * - * @throws WP_HTML_Unsupported_Exception When encountering unsupported HTML input. - * * @since 6.4.0 * + * @throws WP_HTML_Unsupported_Exception When encountering unsupported HTML input. + * * @see https://html.spec.whatwg.org/#close-a-p-element */ private function close_a_p_element(): void { @@ -5650,13 +5733,12 @@ private function close_a_p_element(): void { /** * Closes elements that have implied end tags. * - * @param string|null $except_for_this_element Perform as if this element doesn't exist in the stack of open elements. - * + * @since 6.4.0 * @since 6.7.0 Full spec support. * * @see https://html.spec.whatwg.org/#generate-implied-end-tags * - * @since 6.4.0 + * @param string|null $except_for_this_element Perform as if this element doesn't exist in the stack of open elements. */ private function generate_implied_end_tags( ?string $except_for_this_element = null ): void { $elements_with_implied_end_tags = array( @@ -5750,13 +5832,13 @@ private function get_adjusted_current_node(): ?WP_HTML_Token { * > in the current body, cell, or caption (whichever is youngest) that haven't * > been explicitly closed. * - * @return bool Whether any formatting elements needed to be reconstructed. + * @since 6.4.0 + * * @throws WP_HTML_Unsupported_Exception When encountering unsupported HTML input. * * @see https://html.spec.whatwg.org/#reconstruct-the-active-formatting-elements * - * @since 6.4.0 - * + * @return bool Whether any formatting elements needed to be reconstructed. */ private function reconstruct_active_formatting_elements(): bool { /* @@ -5861,13 +5943,11 @@ private function reset_insertion_mode_appropriately(): void { */ case 'TABLE': $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_IN_SELECT_IN_TABLE; - return; } } } $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_IN_SELECT; - return; /* @@ -5878,18 +5958,16 @@ private function reset_insertion_mode_appropriately(): void { case 'TH': if ( ! $last ) { $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_IN_CELL; - return; } break; - /* - * > 6. If _node_ is a `tr` element, then switch the insertion mode to "in row" - * > and return. - */ + /* + * > 6. If _node_ is a `tr` element, then switch the insertion mode to "in row" + * > and return. + */ case 'TR': $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_IN_ROW; - return; /* @@ -5900,7 +5978,6 @@ private function reset_insertion_mode_appropriately(): void { case 'THEAD': case 'TFOOT': $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_IN_TABLE_BODY; - return; /* @@ -5909,7 +5986,6 @@ private function reset_insertion_mode_appropriately(): void { */ case 'CAPTION': $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_IN_CAPTION; - return; /* @@ -5918,7 +5994,6 @@ private function reset_insertion_mode_appropriately(): void { */ case 'COLGROUP': $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_IN_COLUMN_GROUP; - return; /* @@ -5927,7 +6002,6 @@ private function reset_insertion_mode_appropriately(): void { */ case 'TABLE': $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_IN_TABLE; - return; /* @@ -5936,7 +6010,6 @@ private function reset_insertion_mode_appropriately(): void { */ case 'TEMPLATE': $this->state->insertion_mode = end( $this->state->stack_of_template_insertion_modes ); - return; /* @@ -5946,7 +6019,6 @@ private function reset_insertion_mode_appropriately(): void { case 'HEAD': if ( ! $last ) { $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_IN_HEAD; - return; } break; @@ -5957,7 +6029,6 @@ private function reset_insertion_mode_appropriately(): void { */ case 'BODY': $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_IN_BODY; - return; /* @@ -5966,7 +6037,6 @@ private function reset_insertion_mode_appropriately(): void { */ case 'FRAMESET': $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_IN_FRAMESET; - return; /* @@ -5980,7 +6050,6 @@ private function reset_insertion_mode_appropriately(): void { $this->state->insertion_mode = isset( $this->state->head_element ) ? WP_HTML_Processor_State::INSERTION_MODE_AFTER_HEAD : WP_HTML_Processor_State::INSERTION_MODE_BEFORE_HEAD; - return; } } @@ -5997,10 +6066,10 @@ private function reset_insertion_mode_appropriately(): void { /** * Runs the adoption agency algorithm. * - * @throws WP_HTML_Unsupported_Exception When encountering unsupported HTML input. - * * @since 6.4.0 * + * @throws WP_HTML_Unsupported_Exception When encountering unsupported HTML input. + * * @see https://html.spec.whatwg.org/#adoption-agency-algorithm */ private function run_adoption_agency_algorithm(): void { @@ -6015,13 +6084,12 @@ private function run_adoption_agency_algorithm(): void { ! $this->state->active_formatting_elements->contains_node( $current_node ) ) { $this->state->stack_of_open_elements->pop(); - return; } $outer_loop_counter = 0; - while ( $budget -- > 0 ) { - if ( $outer_loop_counter ++ >= 8 ) { + while ( $budget-- > 0 ) { + if ( $outer_loop_counter++ >= 8 ) { return; } @@ -6051,7 +6119,6 @@ private function run_adoption_agency_algorithm(): void { // > If formatting element is not in the stack of open elements, then this is a parse error; remove the element from the list, and return. if ( ! $this->state->stack_of_open_elements->contains_node( $formatting_element ) ) { $this->state->active_formatting_elements->remove_node( $formatting_element ); - return; } @@ -6093,7 +6160,6 @@ private function run_adoption_agency_algorithm(): void { if ( $formatting_element->bookmark_name === $item->bookmark_name ) { $this->state->active_formatting_elements->remove_node( $formatting_element ); - return; } } @@ -6135,12 +6201,11 @@ private function close_cell(): void { /** * Inserts an HTML element on the stack of open elements. * - * @param WP_HTML_Token $token Name of bookmark pointing to element in original input HTML. + * @since 6.4.0 * * @see https://html.spec.whatwg.org/#insert-a-foreign-element * - * @since 6.4.0 - * + * @param WP_HTML_Token $token Name of bookmark pointing to element in original input HTML. */ private function insert_html_element( WP_HTML_Token $token ): void { $this->state->stack_of_open_elements->push( $token ); @@ -6149,15 +6214,14 @@ private function insert_html_element( WP_HTML_Token $token ): void { /** * Inserts a foreign element on to the stack of open elements. * - * @param WP_HTML_Token $token Insert this token. The token's namespace and - * insertion point will be updated correctly. - * @param bool $only_add_to_element_stack Whether to skip the "insert an element at the adjusted - * insertion location" algorithm when adding this element. - * * @since 6.7.0 * * @see https://html.spec.whatwg.org/#insert-a-foreign-element * + * @param WP_HTML_Token $token Insert this token. The token's namespace and + * insertion point will be updated correctly. + * @param bool $only_add_to_element_stack Whether to skip the "insert an element at the adjusted + * insertion location" algorithm when adding this element. */ private function insert_foreign_element( WP_HTML_Token $token, bool $only_add_to_element_stack ): void { $adjusted_current_node = $this->get_adjusted_current_node(); @@ -6189,13 +6253,12 @@ private function insert_foreign_element( WP_HTML_Token $token, bool $only_add_to /** * Inserts a virtual element on the stack of open elements. * - * @param string $token_name Name of token to create and insert into the stack of open elements. - * @param string|null $bookmark_name Optional. Name to give bookmark for created virtual node. - * Defaults to auto-creating a bookmark name. - * - * @return WP_HTML_Token Newly-created virtual token. * @since 6.7.0 * + * @param string $token_name Name of token to create and insert into the stack of open elements. + * @param string|null $bookmark_name Optional. Name to give bookmark for created virtual node. + * Defaults to auto-creating a bookmark name. + * @return WP_HTML_Token Newly-created virtual token. */ private function insert_virtual_node( $token_name, $bookmark_name = null ): WP_HTML_Token { $here = $this->bookmarks[ $this->state->current_token->bookmark_name ]; @@ -6205,7 +6268,6 @@ private function insert_virtual_node( $token_name, $bookmark_name = null ): WP_H $token = new WP_HTML_Token( $name, $token_name, false ); $this->insert_html_element( $token ); - return $token; } @@ -6216,11 +6278,11 @@ private function insert_virtual_node( $token_name, $bookmark_name = null ): WP_H /** * Indicates if the current token is a MathML integration point. * - * @return bool Whether the current token is a MathML integration point. - * @see https://html.spec.whatwg.org/#mathml-text-integration-point - * * @since 6.7.0 * + * @see https://html.spec.whatwg.org/#mathml-text-integration-point + * + * @return bool Whether the current token is a MathML integration point. */ private function is_mathml_integration_point(): bool { $current_token = $this->state->current_token; @@ -6252,11 +6314,11 @@ private function is_mathml_integration_point(): bool { * Otherwise it would be required to scan the HTML and ensure that * no other accounting is overlooked. * - * @return bool Whether the current token is an HTML integration point. - * @see https://html.spec.whatwg.org/#html-integration-point - * * @since 6.7.0 * + * @see https://html.spec.whatwg.org/#html-integration-point + * + * @return bool Whether the current token is an HTML integration point. */ private function is_html_integration_point(): bool { $current_token = $this->state->current_token; @@ -6295,7 +6357,6 @@ private function is_html_integration_point(): bool { } $this->bail( 'Should not have reached end of HTML Integration Point detection: check HTML API code.' ); - // This unnecessary return prevents tools from inaccurately reporting type errors. return false; } @@ -6303,13 +6364,12 @@ private function is_html_integration_point(): bool { /** * Returns whether an element of a given name is in the HTML special category. * - * @param WP_HTML_Token|string $tag_name Node to check, or only its name if in the HTML namespace. - * - * @return bool Whether the element of the given name is in the special category. * @since 6.4.0 * * @see https://html.spec.whatwg.org/#special * + * @param WP_HTML_Token|string $tag_name Node to check, or only its name if in the HTML namespace. + * @return bool Whether the element of the given name is in the special category. */ public static function is_special( $tag_name ): bool { if ( is_string( $tag_name ) ) { @@ -6425,13 +6485,12 @@ public static function is_special( $tag_name ): bool { * * > area, base, br, col, embed, hr, img, input, link, meta, source, track, wbr * - * @param string $tag_name Name of HTML tag to check. - * - * @return bool Whether the given tag is an HTML Void Element. * @since 6.4.0 * * @see https://html.spec.whatwg.org/#void-elements * + * @param string $tag_name Name of HTML tag to check. + * @return bool Whether the given tag is an HTML Void Element. */ public static function is_void( $tag_name ): bool { $tag_name = strtoupper( $tag_name ); @@ -6478,8 +6537,7 @@ public static function is_void( $tag_name ): bool { * * @since 6.7.0 * - * @param string $label A string which may specify a known encoding. - * + * @param string $label A string which may specify a known encoding. * @return string|null Known encoding if matched, otherwise null. */ protected static function get_encoding( string $label ): ?string { diff --git a/components/HTML/class-wp-html-span.php b/components/HTML/class-wp-html-span.php index 44fefe82..c8ba9ecd 100644 --- a/components/HTML/class-wp-html-span.php +++ b/components/HTML/class-wp-html-span.php @@ -1,4 +1,6 @@ start = $start; diff --git a/components/HTML/class-wp-html-stack-event.php b/components/HTML/class-wp-html-stack-event.php index 5c8db013..8e329272 100644 --- a/components/HTML/class-wp-html-stack-event.php +++ b/components/HTML/class-wp-html-stack-event.php @@ -1,4 +1,6 @@ token = $token; diff --git a/components/HTML/class-wp-html-tag-processor.php b/components/HTML/class-wp-html-tag-processor.php index 309ed364..995feaa9 100644 --- a/components/HTML/class-wp-html-tag-processor.php +++ b/components/HTML/class-wp-html-tag-processor.php @@ -1,4 +1,11 @@ html = $html; @@ -842,12 +848,11 @@ public function __construct( $html ) { * Switches parsing mode into a new namespace, such as when * encountering an SVG tag and entering foreign content. * - * @param string $new_namespace One of 'html', 'svg', or 'math' indicating into what - * namespace the next tokens will be processed. - * - * @return bool Whether the namespace was valid and changed. * @since 6.7.0 * + * @param string $new_namespace One of 'html', 'svg', or 'math' indicating into what + * namespace the next tokens will be processed. + * @return bool Whether the namespace was valid and changed. */ public function change_parsing_namespace( string $new_namespace ): bool { if ( ! in_array( $new_namespace, array( 'html', 'math', 'svg' ), true ) ) { @@ -855,27 +860,26 @@ public function change_parsing_namespace( string $new_namespace ): bool { } $this->parsing_namespace = $new_namespace; - return true; } /** * Finds the next tag matching the $query. * - * @param array|string|null $query { + * @since 6.2.0 + * @since 6.5.0 No longer processes incomplete tokens at end of document; pauses the processor at start of token. + * + * @param array|string|null $query { * Optional. Which tag name to find, having which class, etc. Default is to find any tag. * - * @type string|null $tag_name Which tag to find, or `null` for "any tag." - * @type int|null $match_offset Find the Nth tag matching all search criteria. + * @type string|null $tag_name Which tag to find, or `null` for "any tag." + * @type int|null $match_offset Find the Nth tag matching all search criteria. * 1 for "first" tag, 3 for "third," etc. * Defaults to first tag. - * @type string|null $class_name Tag must contain this whole class name to match. - * @type string|null $tag_closers "visit" or "skip": whether to stop on tag closers, e.g. . + * @type string|null $class_name Tag must contain this whole class name to match. + * @type string|null $tag_closers "visit" or "skip": whether to stop on tag closers, e.g. . * } * @return bool Whether a tag was matched. - * @since 6.2.0 - * @since 6.5.0 No longer processes incomplete tokens at end of document; pauses the processor at start of token. - * */ public function next_tag( $query = null ): bool { $this->parse_query( $query ); @@ -891,7 +895,7 @@ public function next_tag( $query = null ): bool { } if ( $this->matches() ) { - ++ $already_found; + ++$already_found; } } while ( $already_found < $this->sought_match_offset ); @@ -921,10 +925,10 @@ public function next_tag( $query = null ): bool { * * The Tag Processor currently only supports the tag token. * - * @return bool Whether a token was parsed. + * @since 6.5.0 * @since 6.7.0 Recognizes CDATA sections within foreign content. * - * @since 6.5.0 + * @return bool Whether a token was parsed. */ public function next_token(): bool { return $this->base_class_next_token(); @@ -939,11 +943,11 @@ public function next_token(): bool { * without triggering subclass methods for things like `next_token()`, e.g. when * applying patches before searching for the next token. * - * @return bool Whether a token was parsed. * @since 6.5.0 * * @access private * + * @return bool Whether a token was parsed. */ private function base_class_next_token(): bool { $was_at = $this->bytes_already_parsed; @@ -965,7 +969,6 @@ private function base_class_next_token(): bool { if ( $this->bytes_already_parsed >= strlen( $this->html ) ) { $this->parser_state = self::STATE_COMPLETE; - return false; } @@ -1053,7 +1056,6 @@ private function base_class_next_token(): bool { */ if ( 'LISTING' === $tag_name || 'PRE' === $tag_name ) { $this->skip_newline_at = $this->bytes_already_parsed; - return true; } @@ -1116,7 +1118,6 @@ private function base_class_next_token(): bool { if ( ! $found_closer ) { $this->parser_state = self::STATE_INCOMPLETE_INPUT; $this->bytes_already_parsed = $was_at; - return false; } @@ -1149,9 +1150,9 @@ private function base_class_next_token(): bool { * false === $processor->get_next_tag(); * true === $processor->paused_at_incomplete_token(); * - * @return bool Whether the parse paused at the start of an incomplete token. * @since 6.5.0 * + * @return bool Whether the parse paused at the start of an incomplete token. */ public function paused_at_incomplete_token(): bool { return self::STATE_INCOMPLETE_INPUT === $this->parser_state; @@ -1227,11 +1228,10 @@ public function class_list() { /** * Returns if a matched tag contains the given ASCII case-insensitive class name. * - * @param string $wanted_class Look for this CSS class name, ASCII case-insensitive. - * - * @return bool|null Whether the matched tag contains the given class name, or null if not matched. * @since 6.4.0 * + * @param string $wanted_class Look for this CSS class name, ASCII case-insensitive. + * @return bool|null Whether the matched tag contains the given class name, or null if not matched. */ public function has_class( $wanted_class ): ?bool { if ( self::STATE_MATCHED_TAG !== $this->parser_state ) { @@ -1329,11 +1329,10 @@ public function has_class( $wanted_class ): ?bool { * reaching for it, as inappropriate use could lead to broken * HTML structure or unwanted processing overhead. * - * @param string $name Identifies this particular bookmark. - * - * @return bool Whether the bookmark was successfully created. * @since 6.2.0 * + * @param string $name Identifies this particular bookmark. + * @return bool Whether the bookmark was successfully created. */ public function set_bookmark( $name ): bool { // It only makes sense to set a bookmark if the parser has paused on a concrete token. @@ -1350,7 +1349,6 @@ public function set_bookmark( $name ): bool { __( 'Too many bookmarks: cannot create any more.' ), '6.2.0' ); - return false; } @@ -1366,8 +1364,7 @@ public function set_bookmark( $name ): bool { * Releasing a bookmark frees up the small * performance overhead it requires. * - * @param string $name Name of the bookmark to remove. - * + * @param string $name Name of the bookmark to remove. * @return bool Whether the bookmark already existed before removal. */ public function release_bookmark( $name ): bool { @@ -1383,13 +1380,12 @@ public function release_bookmark( $name ): bool { /** * Skips contents of generic rawtext elements. * - * @param string $tag_name The uppercase tag name which will close the RAWTEXT region. - * - * @return bool Whether an end to the RAWTEXT region was found before the end of the document. * @since 6.3.2 * * @see https://html.spec.whatwg.org/#generic-raw-text-element-parsing-algorithm * + * @param string $tag_name The uppercase tag name which will close the RAWTEXT region. + * @return bool Whether an end to the RAWTEXT region was found before the end of the document. */ private function skip_rawtext( string $tag_name ): bool { /* @@ -1403,13 +1399,12 @@ private function skip_rawtext( string $tag_name ): bool { /** * Skips contents of RCDATA elements, namely title and textarea tags. * - * @param string $tag_name The uppercase tag name which will close the RCDATA region. - * - * @return bool Whether an end to the RCDATA region was found before the end of the document. * @since 6.2.0 * * @see https://html.spec.whatwg.org/multipage/parsing.html#rcdata-state * + * @param string $tag_name The uppercase tag name which will close the RCDATA region. + * @return bool Whether an end to the RCDATA region was found before the end of the document. */ private function skip_rcdata( string $tag_name ): bool { $html = $this->html; @@ -1437,7 +1432,7 @@ private function skip_rcdata( string $tag_name ): bool { * comparing; any character which could be impacted by such * normalization could not be part of a tag name. */ - for ( $i = 0; $i < $tag_length; $i ++ ) { + for ( $i = 0; $i < $tag_length; $i++ ) { $tag_char = $tag_name[ $i ]; $html_char = $html[ $at + $i ]; @@ -1447,7 +1442,7 @@ private function skip_rcdata( string $tag_name ): bool { } } - $at += $tag_length; + $at += $tag_length; $this->bytes_already_parsed = $at; if ( $at >= strlen( $html ) ) { @@ -1476,7 +1471,6 @@ private function skip_rcdata( string $tag_name ): bool { if ( '>' === $html[ $at ] ) { $this->bytes_already_parsed = $at + 1; - return true; } @@ -1486,7 +1480,6 @@ private function skip_rcdata( string $tag_name ): bool { if ( '/' === $html[ $at ] && '>' === $html[ $at + 1 ] ) { $this->bytes_already_parsed = $at + 2; - return true; } } @@ -1497,9 +1490,9 @@ private function skip_rcdata( string $tag_name ): bool { /** * Skips contents of script tags. * - * @return bool Whether the script tag was closed before the end of the document. * @since 6.2.0 * + * @return bool Whether the script tag was closed before the end of the document. */ private function skip_script_data(): bool { $state = 'unescaped'; @@ -1521,7 +1514,7 @@ private function skip_script_data(): bool { '-' === $html[ $at + 1 ] && '>' === $html[ $at + 2 ] ) { - $at += 3; + $at += 3; $state = 'unescaped'; continue; } @@ -1534,7 +1527,7 @@ private function skip_script_data(): bool { * Everything of interest past here starts with "<". * Check this character and advance position regardless. */ - if ( '<' !== $html[ $at ++ ] ) { + if ( '<' !== $html[ $at++ ] ) { continue; } @@ -1556,7 +1549,7 @@ private function skip_script_data(): bool { '-' === $html[ $at + 1 ] && '-' === $html[ $at + 2 ] ) { - $at += 3; + $at += 3; $state = 'unescaped' === $state ? 'escaped' : $state; continue; } @@ -1564,7 +1557,7 @@ private function skip_script_data(): bool { if ( '/' === $html[ $at ] ) { $closer_potentially_starts_at = $at - 1; $is_closing = true; - ++ $at; + ++$at; } else { $is_closing = false; } @@ -1583,7 +1576,7 @@ private function skip_script_data(): bool { ( 'p' === $html[ $at + 4 ] || 'P' === $html[ $at + 4 ] ) && ( 't' === $html[ $at + 5 ] || 'T' === $html[ $at + 5 ] ) ) ) { - ++ $at; + ++$at; continue; } @@ -1597,9 +1590,9 @@ private function skip_script_data(): bool { continue; } $at += 6; - $c = $html[ $at ]; + $c = $html[ $at ]; if ( ' ' !== $c && "\t" !== $c && "\r" !== $c && "\n" !== $c && '/' !== $c && '>' !== $c ) { - ++ $at; + ++$at; continue; } @@ -1631,13 +1624,12 @@ private function skip_script_data(): bool { } if ( '>' === $html[ $this->bytes_already_parsed ] ) { - ++ $this->bytes_already_parsed; - + ++$this->bytes_already_parsed; return true; } } - ++ $at; + ++$at; } return false; @@ -1651,10 +1643,10 @@ private function skip_script_data(): bool { * name. It does not parse the attributes or scan to the * closing `>`; these are left for other methods. * - * @return bool Whether a tag was found before the end of the document. + * @since 6.2.0 * @since 6.2.1 Support abruptly-closed comments, invalid-tag-closer-comments, and empty elements. * - * @since 6.2.0 + * @return bool Whether a tag was found before the end of the document. */ private function parse_next_tag(): bool { $this->after_tag(); @@ -1683,8 +1675,8 @@ private function parse_next_tag(): bool { * * @see https://html.spec.whatwg.org/#tag-open-state */ - if ( 1 !== strspn( $html, '!/?abcdefghijklmnopqrstuvwxyzABCEFGHIJKLMNOPQRSTUVWXYZ', $at + 1, 1 ) ) { - ++ $at; + if ( 1 !== strspn( $html, '!/?abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ', $at + 1, 1 ) ) { + ++$at; continue; } @@ -1694,7 +1686,6 @@ private function parse_next_tag(): bool { $this->text_starts_at = $was_at; $this->text_length = $this->token_length; $this->bytes_already_parsed = $at; - return true; } @@ -1702,7 +1693,7 @@ private function parse_next_tag(): bool { if ( $at + 1 < $doc_length && '/' === $this->html[ $at + 1 ] ) { $this->is_closing_tag = true; - ++ $at; + ++$at; } else { $this->is_closing_tag = false; } @@ -1723,12 +1714,11 @@ private function parse_next_tag(): bool { */ $tag_name_prefix_length = strspn( $html, 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ', $at + 1 ); if ( $tag_name_prefix_length > 0 ) { - ++ $at; + ++$at; $this->parser_state = self::STATE_MATCHED_TAG; $this->tag_name_starts_at = $at; $this->tag_name_length = $tag_name_prefix_length + strcspn( $html, " \t\f\r\n/>", $at + $tag_name_prefix_length ); $this->bytes_already_parsed = $at + $this->tag_name_length; - return true; } @@ -1783,7 +1773,6 @@ private function parse_next_tag(): bool { } $this->bytes_already_parsed = $closer_at + $span_of_dashes + 1; - return true; } @@ -1793,8 +1782,8 @@ private function parse_next_tag(): bool { * * See https://html.spec.whatwg.org/#parse-error-incorrectly-closed-comment */ - -- $closer_at; // Pre-increment inside condition below reduces risk of accidental infinite looping. - while ( ++ $closer_at < $doc_length ) { + --$closer_at; // Pre-increment inside condition below reduces risk of accidental infinite looping. + while ( ++$closer_at < $doc_length ) { $closer_at = strpos( $html, '--', $closer_at ); if ( false === $closer_at ) { $this->parser_state = self::STATE_INCOMPLETE_INPUT; @@ -1809,7 +1798,6 @@ private function parse_next_tag(): bool { $this->text_starts_at = $this->token_starts_at + 4; $this->text_length = $closer_at - $this->text_starts_at; $this->bytes_already_parsed = $closer_at + 3; - return true; } @@ -1824,7 +1812,6 @@ private function parse_next_tag(): bool { $this->text_starts_at = $this->token_starts_at + 4; $this->text_length = $closer_at - $this->text_starts_at; $this->bytes_already_parsed = $closer_at + 4; - return true; } } @@ -1857,7 +1844,6 @@ private function parse_next_tag(): bool { $this->text_starts_at = $this->token_starts_at + 9; $this->text_length = $closer_at - $this->text_starts_at; $this->bytes_already_parsed = $closer_at + 1; - return true; } @@ -1884,7 +1870,6 @@ private function parse_next_tag(): bool { $this->text_length = $closer_at - $this->text_starts_at; $this->token_length = $closer_at + 3 - $this->token_starts_at; $this->bytes_already_parsed = $closer_at + 3; - return true; } @@ -1934,8 +1919,8 @@ private function parse_next_tag(): bool { ']' === $html[ $closer_at - 1 ] && ']' === $html[ $closer_at - 2 ] ) { - $this->parser_state = self::STATE_COMMENT; - $this->comment_type = self::COMMENT_AS_CDATA_LOOKALIKE; + $this->parser_state = self::STATE_COMMENT; + $this->comment_type = self::COMMENT_AS_CDATA_LOOKALIKE; $this->text_starts_at += 7; $this->text_length -= 9; } @@ -1955,14 +1940,13 @@ private function parse_next_tag(): bool { if ( '>' === $html[ $at + 1 ] ) { // `<>` is interpreted as plaintext. if ( ! $this->is_closing_tag ) { - ++ $at; + ++$at; continue; } $this->parser_state = self::STATE_PRESUMPTUOUS_TAG; $this->token_length = $at + 2 - $this->token_starts_at; $this->bytes_already_parsed = $at + 2; - return true; } @@ -2017,14 +2001,13 @@ private function parse_next_tag(): bool { $pi_target_length = strspn( $comment_text, 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ:_' ); if ( 0 < $pi_target_length ) { - $pi_target_length += strspn( $comment_text, 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789:_-.', - $pi_target_length ); + $pi_target_length += strspn( $comment_text, 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789:_-.', $pi_target_length ); $this->comment_type = self::COMMENT_AS_PI_NODE_LOOKALIKE; $this->tag_name_starts_at = $this->token_starts_at + 2; $this->tag_name_length = $pi_target_length; - $this->text_starts_at += $pi_target_length; - $this->text_length -= $pi_target_length + 1; + $this->text_starts_at += $pi_target_length; + $this->text_length -= $pi_target_length + 1; } } @@ -2060,11 +2043,10 @@ private function parse_next_tag(): bool { $this->text_starts_at = $this->token_starts_at + 2; $this->text_length = $closer_at - $this->text_starts_at; $this->bytes_already_parsed = $closer_at + 1; - return true; } - ++ $at; + ++$at; } /* @@ -2077,16 +2059,15 @@ private function parse_next_tag(): bool { $this->text_starts_at = $was_at; $this->text_length = $this->token_length; $this->bytes_already_parsed = $doc_length; - return true; } /** * Parses the next attribute. * - * @return bool Whether an attribute was found before the end of the document. * @since 6.2.0 * + * @return bool Whether an attribute was found before the end of the document. */ private function parse_next_attribute(): bool { $doc_length = strlen( $this->html ); @@ -2114,8 +2095,8 @@ private function parse_next_attribute(): bool { return false; } - $attribute_start = $this->bytes_already_parsed; - $attribute_name = substr( $this->html, $attribute_start, $name_length ); + $attribute_start = $this->bytes_already_parsed; + $attribute_name = substr( $this->html, $attribute_start, $name_length ); $this->bytes_already_parsed += $name_length; if ( $this->bytes_already_parsed >= $doc_length ) { $this->parser_state = self::STATE_INCOMPLETE_INPUT; @@ -2132,7 +2113,7 @@ private function parse_next_attribute(): bool { $has_value = '=' === $this->html[ $this->bytes_already_parsed ]; if ( $has_value ) { - ++ $this->bytes_already_parsed; + ++$this->bytes_already_parsed; $this->skip_whitespace(); if ( $this->bytes_already_parsed >= $doc_length ) { $this->parser_state = self::STATE_INCOMPLETE_INPUT; @@ -2323,6 +2304,7 @@ private function class_name_updates_to_attributes_updates(): void { * attribute, skipping removed classes on the way, and then appending * added classes at the end. Only when finished processing will the * value contain the final new value. + * @var string $class */ $class = ''; @@ -2377,7 +2359,7 @@ private function class_name_updates_to_attributes_updates(): void { // Skip to the first non-whitespace character. $ws_at = $at; $ws_length = strspn( $existing_class, " \t\f\r\n", $ws_at ); - $at += $ws_length; + $at += $ws_length; // Capture the class name – it's everything until the next whitespace. $name_length = strcspn( $existing_class, " \t\f\r\n", $at ); @@ -2388,7 +2370,7 @@ private function class_name_updates_to_attributes_updates(): void { $name = substr( $existing_class, $at, $name_length ); $comparable_class_name = $is_quirks ? strtolower( $name ) : $name; - $at += $name_length; + $at += $name_length; // If this class is marked for removal, remove it and move on to the next one. if ( in_array( $comparable_class_name, $to_remove, true ) ) { @@ -2447,13 +2429,12 @@ private function class_name_updates_to_attributes_updates(): void { /** * Applies attribute updates to HTML document. * - * @param int $shift_this_point Accumulate and return shift for this position. - * - * @return int How many bytes the given pointer moved in response to the updates. - * @since 6.3.0 Invalidate any bookmarks whose targets are overwritten. - * * @since 6.2.0 * @since 6.2.1 Accumulates shift for internal cursor and passed pointer. + * @since 6.3.0 Invalidate any bookmarks whose targets are overwritten. + * + * @param int $shift_this_point Accumulate and return shift for this position. + * @return int How many bytes the given pointer moved in response to the updates. */ private function apply_attributes_updates( int $shift_this_point ): int { if ( ! count( $this->lexical_updates ) ) { @@ -2489,8 +2470,8 @@ private function apply_attributes_updates( int $shift_this_point ): int { $accumulated_shift_for_given_point += $shift; } - $output_buffer .= substr( $this->html, $bytes_already_copied, $diff->start - $bytes_already_copied ); - $output_buffer .= $diff->text; + $output_buffer .= substr( $this->html, $bytes_already_copied, $diff->start - $bytes_already_copied ); + $output_buffer .= $diff->text; $bytes_already_copied = $diff->start + $diff->length; } @@ -2547,11 +2528,10 @@ private function apply_attributes_updates( int $shift_this_point ): int { /** * Checks whether a bookmark with the given name exists. * - * @param string $bookmark_name Name to identify a bookmark that potentially exists. - * - * @return bool Whether that bookmark exists. * @since 6.3.0 * + * @param string $bookmark_name Name to identify a bookmark that potentially exists. + * @return bool Whether that bookmark exists. */ public function has_bookmark( $bookmark_name ): bool { return array_key_exists( $bookmark_name, $this->bookmarks ); @@ -2563,11 +2543,10 @@ public function has_bookmark( $bookmark_name ): bool { * In order to prevent accidental infinite loops, there's a * maximum limit on the number of times seek() can be called. * - * @param string $bookmark_name Jump to the place in the document identified by this bookmark name. - * - * @return bool Whether the internal cursor was successfully moved to the bookmark's location. * @since 6.2.0 * + * @param string $bookmark_name Jump to the place in the document identified by this bookmark name. + * @return bool Whether the internal cursor was successfully moved to the bookmark's location. */ public function seek( $bookmark_name ): bool { if ( ! array_key_exists( $bookmark_name, $this->bookmarks ) ) { @@ -2576,17 +2555,24 @@ public function seek( $bookmark_name ): bool { __( 'Unknown bookmark name.' ), '6.2.0' ); - return false; } - if ( ++ $this->seek_count > static::MAX_SEEK_OPS ) { + $existing_bookmark = $this->bookmarks[ $bookmark_name ]; + + if ( + $this->token_starts_at === $existing_bookmark->start && + $this->token_length === $existing_bookmark->length + ) { + return true; + } + + if ( ++$this->seek_count > static::MAX_SEEK_OPS ) { _doing_it_wrong( __METHOD__, __( 'Too many calls to seek() - this can lead to performance issues.' ), '6.2.0' ); - return false; } @@ -2596,19 +2582,17 @@ public function seek( $bookmark_name ): bool { // Point this tag processor before the sought tag opener and consume it. $this->bytes_already_parsed = $this->bookmarks[ $bookmark_name ]->start; $this->parser_state = self::STATE_READY; - return $this->next_token(); } /** * Compare two WP_HTML_Text_Replacement objects. * - * @param WP_HTML_Text_Replacement $a First attribute update. - * @param WP_HTML_Text_Replacement $b Second attribute update. - * - * @return int Comparison value for string order. * @since 6.2.0 * + * @param WP_HTML_Text_Replacement $a First attribute update. + * @param WP_HTML_Text_Replacement $b Second attribute update. + * @return int Comparison value for string order. */ private static function sort_start_ascending( WP_HTML_Text_Replacement $a, WP_HTML_Text_Replacement $b ): int { $by_start = $a->start - $b->start; @@ -2625,7 +2609,6 @@ private static function sort_start_ascending( WP_HTML_Text_Replacement $a, WP_HT * This code should be unreachable, because it implies the two replacements * start at the same location and contain the same text. */ - return $a->length - $b->length; } @@ -2638,11 +2621,10 @@ private static function sort_start_ascending( WP_HTML_Text_Replacement $a, WP_HT * - If an attribute is enqueued to be removed, the return will be `null` to indicate that. * - If no updates are enqueued, the return will be `false` to differentiate from "removed." * - * @param string $comparable_name The attribute name in its comparable form. - * - * @return string|boolean|null Value of enqueued update if present, otherwise false. * @since 6.2.0 * + * @param string $comparable_name The attribute name in its comparable form. + * @return string|boolean|null Value of enqueued update if present, otherwise false. */ private function get_enqueued_attribute_value( string $comparable_name ) { if ( self::STATE_MATCHED_TAG !== $this->parser_state ) { @@ -2692,8 +2674,7 @@ private function get_enqueued_attribute_value( string $comparable_name ) { * 2. Double-quoting starts one after the equals sign. * 3. Double-quoting ends at the last character in the update. */ - $enqueued_value = substr( $enqueued_text, $equals_at + 2, - 1 ); - + $enqueued_value = substr( $enqueued_text, $equals_at + 2, -1 ); return WP_HTML_Decoder::decode_attribute( $enqueued_value ); } @@ -2711,11 +2692,10 @@ private function get_enqueued_attribute_value( string $comparable_name ) { * $p->next_tag() === false; * $p->get_attribute( 'class' ) === null; * - * @param string $name Name of attribute whose value is requested. - * - * @return string|true|null Value of attribute or `null` if not available. Boolean attributes return `true`. * @since 6.2.0 * + * @param string $name Name of attribute whose value is requested. + * @return string|true|null Value of attribute or `null` if not available. Boolean attributes return `true`. */ public function get_attribute( $name ) { if ( self::STATE_MATCHED_TAG !== $this->parser_state ) { @@ -2790,13 +2770,12 @@ public function get_attribute( $name ) { * $p->next_tag() === false; * $p->get_attribute_names_with_prefix( 'data-' ) === null; * - * @param string $prefix Prefix of requested attribute names. - * - * @return array|null List of attribute names, or `null` when no tag opener is matched. * @since 6.2.0 * * @see https://html.spec.whatwg.org/multipage/syntax.html#attributes-2:ascii-case-insensitive * + * @param string $prefix Prefix of requested attribute names. + * @return array|null List of attribute names, or `null` when no tag opener is matched. */ public function get_attribute_names_with_prefix( $prefix ): ?array { if ( @@ -2810,20 +2789,19 @@ public function get_attribute_names_with_prefix( $prefix ): ?array { $matches = array(); foreach ( array_keys( $this->attributes ) as $attr_name ) { - if ( strncmp( $attr_name, $comparable, strlen( $comparable ) ) === 0 ) { + if ( str_starts_with( $attr_name, $comparable ) ) { $matches[] = $attr_name; } } - return $matches; } /** * Returns the namespace of the matched token. * - * @return string One of 'html', 'math', or 'svg'. * @since 6.7.0 * + * @return string One of 'html', 'math', or 'svg'. */ public function get_namespace(): string { return $this->parsing_namespace; @@ -2841,9 +2819,9 @@ public function get_namespace(): string { * $p->next_tag() === false; * $p->get_tag() === null; * - * @return string|null Name of currently matched tag in input HTML, or `null` if none found. * @since 6.2.0 * + * @return string|null Name of currently matched tag in input HTML, or `null` if none found. */ public function get_tag(): ?string { if ( null === $this->tag_name_starts_at ) { @@ -2870,9 +2848,9 @@ public function get_tag(): ?string { * Returns the adjusted tag name for a given token, taking into * account the current parsing context, whether HTML, SVG, or MathML. * - * @return string|null Name of current tag name. * @since 6.7.0 * + * @return string|null Name of current tag name. */ public function get_qualified_tag_name(): ?string { $tag_name = $this->get_tag(); @@ -3015,11 +2993,11 @@ public function get_qualified_tag_name(): ?string { * Returns the adjusted attribute name for a given attribute, taking into * account the current parsing context, whether HTML, SVG, or MathML. * - * @param string $attribute_name Which attribute to adjust. - * - * @return string|null * @since 6.7.0 * + * @param string $attribute_name Which attribute to adjust. + * + * @return string|null */ public function get_qualified_attribute_name( $attribute_name ): ?string { if ( self::STATE_MATCHED_TAG !== $this->parser_state ) { @@ -3264,9 +3242,9 @@ public function get_qualified_attribute_name( $attribute_name ): ?string { * This function does not determine if a tag is self-closing, * but only if the self-closing flag is present in the syntax. * - * @return bool Whether the currently matched tag contains the self-closing flag. * @since 6.3.0 * + * @return bool Whether the currently matched tag contains the self-closing flag. */ public function has_self_closing_flag(): bool { if ( self::STATE_MATCHED_TAG !== $this->parser_state ) { @@ -3281,7 +3259,6 @@ public function has_self_closing_flag(): bool { *
* ^ this appears one character before the end of the closing ">". */ - return '/' === $this->html[ $this->token_starts_at + $this->token_length - 2 ]; } @@ -3297,10 +3274,10 @@ public function has_self_closing_flag(): bool { * $p->next_tag( array( 'tag_name' => 'div', 'tag_closers' => 'visit' ) ); * $p->is_tag_closer() === true; * - * @return bool Whether the current tag is a tag closer. + * @since 6.2.0 * @since 6.7.0 Reports all BR tags as opening tags. * - * @since 6.2.0 + * @return bool Whether the current tag is a tag closer. */ public function is_tag_closer(): bool { return ( @@ -3336,9 +3313,9 @@ public function is_tag_closer(): bool { * - `#presumptuous-tag` when matched on an empty tag closer. * - `#funky-comment` when matched on a funky comment. * - * @return string|null What kind of token is matched, or null. * @since 6.5.0 * + * @return string|null What kind of token is matched, or null. */ public function get_token_type(): ?string { switch ( $this->parser_state ) { @@ -3369,9 +3346,9 @@ public function get_token_type(): ?string { * hasn't yet found a token or because it reached the end * of the document without matching a token. * - * @return string|null Name of the matched token. * @since 6.5.0 * + * @return string|null Name of the matched token. */ public function get_token_name(): ?string { switch ( $this->parser_state ) { @@ -3409,7 +3386,7 @@ public function get_token_name(): ?string { * they are commonly known, but a number of unrelated syntax errors * also produce comments. * - * @return string|null + * @see self::COMMENT_AS_ABRUPTLY_CLOSED_COMMENT * @see self::COMMENT_AS_CDATA_LOOKALIKE * @see self::COMMENT_AS_INVALID_HTML * @see self::COMMENT_AS_HTML_COMMENT @@ -3417,7 +3394,7 @@ public function get_token_name(): ?string { * * @since 6.5.0 * - * @see self::COMMENT_AS_ABRUPTLY_CLOSED_COMMENT + * @return string|null */ public function get_comment_type(): ?string { if ( self::STATE_COMMENT !== $this->parser_state ) { @@ -3440,10 +3417,10 @@ public function get_comment_type(): ?string { * that character were modified, it would be possible to change the node * type. * - * @return string|null The comment text as it would appear in the browser or null - * if not on a comment type node. * @since 6.7.0 * + * @return string|null The comment text as it would appear in the browser or null + * if not on a comment type node. */ public function get_full_comment_text(): ?string { if ( self::STATE_FUNKY_COMMENT === $this->parser_state ) { @@ -3473,7 +3450,6 @@ public function get_full_comment_text(): ?string { case self::COMMENT_AS_INVALID_HTML: $preceding_character = $this->html[ $this->text_starts_at - 1 ]; $comment_start = '?' === $preceding_character ? '?' : ''; - return "{$comment_start}{$this->get_modifiable_text()}"; } @@ -3507,9 +3483,9 @@ public function get_full_comment_text(): ?string { * true === $processor->next_token(); // Text is "More". * false === $processor->subdivide_text_appropriately(); * - * @return bool Whether the text node was subdivided. * @since 6.7.0 * + * @return bool Whether the text node was subdivided. */ public function subdivide_text_appropriately(): bool { if ( self::STATE_TEXT_NODE !== $this->parser_state ) { @@ -3528,7 +3504,6 @@ public function subdivide_text_appropriately(): bool { $this->text_length = $leading_nulls; $this->bytes_already_parsed = $this->token_starts_at + $leading_nulls; $this->text_node_classification = self::TEXT_IS_NULL_SEQUENCE; - return true; } @@ -3541,7 +3516,7 @@ public function subdivide_text_appropriately(): bool { $end = $this->text_starts_at + $this->text_length; while ( $at < $end ) { $skipped = strspn( $this->html, " \t\f\r\n", $at, $end - $at ); - $at += $skipped; + $at += $skipped; if ( $at < $end && '&' === $this->html[ $at ] ) { $matched_byte_length = null; @@ -3561,7 +3536,6 @@ public function subdivide_text_appropriately(): bool { $this->token_length = $new_length; $this->bytes_already_parsed = $at; $this->text_node_classification = self::TEXT_IS_WHITESPACE; - return true; } @@ -3591,10 +3565,10 @@ public function subdivide_text_appropriately(): bool { * newline is treated properly, seek to the LISTING or PRE opening * tag instead of to the first text node inside the element. * - * @return string + * @since 6.5.0 * @since 6.7.0 Replaces NULL bytes (U+0000) and newlines appropriately. * - * @since 6.5.0 + * @return string */ public function get_modifiable_text(): string { $has_enqueued_update = isset( $this->lexical_updates['modifiable text'] ); @@ -3671,7 +3645,6 @@ public function get_modifiable_text(): string { * text is processed according to the insertion mode, not according * to the foreign content rules. This should strip the NULL bytes. */ - return ( '#text' === $tag_name && 'html' === $this->get_namespace() ) ? str_replace( "\x00", '', $decoded ) : str_replace( "\x00", "\u{FFFD}", $decoded ); @@ -3717,11 +3690,11 @@ public function get_modifiable_text(): string { * $processor->set_modifiable_text( str_replace( ':)', '🙂', $chunk ) ); * } * - * @param string $plaintext_content New text content to represent in the matched token. - * - * @return bool Whether the text was able to update. * @since 6.7.0 * + * @param string $plaintext_content New text content to represent in the matched token. + * + * @return bool Whether the text was able to update. */ public function set_modifiable_text( string $plaintext_content ): bool { if ( self::STATE_TEXT_NODE === $this->parser_state ) { @@ -3837,13 +3810,12 @@ static function ( $tag_match ) { * * For string attributes, the value is escaped using the `esc_attr` function. * - * @param string $name The attribute name to target. - * @param string|bool $value The new attribute value. - * - * @return bool Whether an attribute value was set. + * @since 6.2.0 * @since 6.2.1 Fix: Only create a single update for multiple calls with case-variant attribute names. * - * @since 6.2.0 + * @param string $name The attribute name to target. + * @param string|bool $value The new attribute value. + * @return bool Whether an attribute value was set. */ public function set_attribute( $name, $value ): bool { if ( @@ -3874,17 +3846,17 @@ public function set_attribute( $name, $value ): bool { */ if ( preg_match( '~[' . - // Syntax-like characters. - '"\'>&&lexical_updates[ $name ] ) ) { unset( $this->lexical_updates[ $name ] ); } - return false; } @@ -4069,11 +4039,10 @@ public function remove_attribute( $name ): bool { /** * Adds a new class name to the currently matched tag. * - * @param string $class_name The class name to add. - * - * @return bool Whether the class was set to be added. * @since 6.2.0 * + * @param string $class_name The class name to add. + * @return bool Whether the class was set to be added. */ public function add_class( $class_name ): bool { if ( @@ -4085,7 +4054,6 @@ public function add_class( $class_name ): bool { if ( self::QUIRKS_MODE !== $this->compat_mode ) { $this->classname_updates[ $class_name ] = self::ADD_CLASS; - return true; } @@ -4102,24 +4070,21 @@ public function add_class( $class_name ): bool { 0 === substr_compare( $updated_name, $class_name, 0, $class_name_length, true ) ) { $this->classname_updates[ $updated_name ] = self::ADD_CLASS; - return true; } } $this->classname_updates[ $class_name ] = self::ADD_CLASS; - return true; } /** * Removes a class name from the currently matched tag. * - * @param string $class_name The class name to remove. - * - * @return bool Whether the class was set to be removed. * @since 6.2.0 * + * @param string $class_name The class name to remove. + * @return bool Whether the class was set to be removed. */ public function remove_class( $class_name ): bool { if ( @@ -4131,7 +4096,6 @@ public function remove_class( $class_name ): bool { if ( self::QUIRKS_MODE !== $this->compat_mode ) { $this->classname_updates[ $class_name ] = self::REMOVE_CLASS; - return true; } @@ -4148,24 +4112,22 @@ public function remove_class( $class_name ): bool { 0 === substr_compare( $updated_name, $class_name, 0, $class_name_length, true ) ) { $this->classname_updates[ $updated_name ] = self::REMOVE_CLASS; - return true; } } $this->classname_updates[ $class_name ] = self::REMOVE_CLASS; - return true; } /** * Returns the string representation of the HTML Tag Processor. * - * @return string The processed HTML. - * @see WP_HTML_Tag_Processor::get_updated_html() - * * @since 6.2.0 * + * @see WP_HTML_Tag_Processor::get_updated_html() + * + * @return string The processed HTML. */ public function __toString(): string { return $this->get_updated_html(); @@ -4174,11 +4136,11 @@ public function __toString(): string { /** * Returns the string representation of the HTML Tag Processor. * - * @return string The processed HTML. + * @since 6.2.0 * @since 6.2.1 Shifts the internal cursor corresponding to the applied updates. * @since 6.4.0 No longer calls subclass method `next_tag()` after updating HTML. * - * @since 6.2.0 + * @return string The processed HTML. */ public function get_updated_html(): string { $requires_no_updating = 0 === count( $this->classname_updates ) && 0 === count( $this->lexical_updates ); @@ -4232,18 +4194,18 @@ public function get_updated_html(): string { /** * Parses tag query input into internal search criteria. * - * @param array|string|null $query { + * @since 6.2.0 + * + * @param array|string|null $query { * Optional. Which tag name to find, having which class, etc. Default is to find any tag. * - * @type string|null $tag_name Which tag to find, or `null` for "any tag." - * @type int|null $match_offset Find the Nth tag matching all search criteria. + * @type string|null $tag_name Which tag to find, or `null` for "any tag." + * @type int|null $match_offset Find the Nth tag matching all search criteria. * 1 for "first" tag, 3 for "third," etc. * Defaults to first tag. - * @type string|null $class_name Tag must contain this class name to match. - * @type string $tag_closers "visit" or "skip": whether to stop on tag closers, e.g. . + * @type string|null $class_name Tag must contain this class name to match. + * @type string $tag_closers "visit" or "skip": whether to stop on tag closers, e.g. . * } - * @since 6.2.0 - * */ private function parse_query( $query ) { if ( null !== $query && $query === $this->last_query ) { @@ -4259,7 +4221,6 @@ private function parse_query( $query ) { // A single string value means "find the tag of this name". if ( is_string( $query ) ) { $this->sought_tag_name = $query; - return; } @@ -4275,7 +4236,6 @@ private function parse_query( $query ) { __( 'The query argument must be an array or a tag name.' ), '6.2.0' ); - return; } @@ -4300,9 +4260,9 @@ private function parse_query( $query ) { /** * Checks whether a given tag and its attributes match the search criteria. * - * @return bool Whether the given tag and its attribute match the search criteria. * @since 6.2.0 * + * @return bool Whether the given tag and its attribute match the search criteria. */ private function matches(): bool { if ( $this->is_closing_tag && ! $this->stop_on_tag_closers ) { diff --git a/components/HTML/class-wp-html-text-replacement.php b/components/HTML/class-wp-html-text-replacement.php index e94d271e..dd19ebc7 100644 --- a/components/HTML/class-wp-html-text-replacement.php +++ b/components/HTML/class-wp-html-text-replacement.php @@ -1,4 +1,6 @@ start = $start; diff --git a/components/HTML/class-wp-html-token.php b/components/HTML/class-wp-html-token.php index dc6bbe63..370dd0e4 100644 --- a/components/HTML/class-wp-html-token.php +++ b/components/HTML/class-wp-html-token.php @@ -1,4 +1,6 @@ bookmark_name = $bookmark_name; @@ -122,6 +123,6 @@ public function __destruct() { * @since 6.4.2 */ public function __wakeup() { - throw new LogicException( __CLASS__ . ' should never be unserialized' ); + throw new \LogicException( __CLASS__ . ' should never be unserialized' ); } } diff --git a/components/HTML/class-wp-html-unsupported-exception.php b/components/HTML/class-wp-html-unsupported-exception.php index f20e436d..43cb4dd2 100644 --- a/components/HTML/class-wp-html-unsupported-exception.php +++ b/components/HTML/class-wp-html-unsupported-exception.php @@ -1,4 +1,7 @@ token_name = $token_name; $this->token_at = $token_at; $this->token = $token; - $this->stack_of_open_elements = $stack_of_open_elements; + $this->stack_of_open_elements = $stack_of_open_elements; $this->active_formatting_elements = $active_formatting_elements; } } diff --git a/components/HTML/class-wp-token-map.php b/components/HTML/class-wp-token-map.php index 0687a34d..946b7a7f 100644 --- a/components/HTML/class-wp-token-map.php +++ b/components/HTML/class-wp-token-map.php @@ -1,5 +1,9 @@ '😕', * ) ); * - * @param array $mappings The keys transform into the values, both are strings. - * @param int $key_length Determines the group key length. Leave at the default value + * @since 6.6.0 + * + * @param array $mappings The keys transform into the values, both are strings. + * @param int $key_length Determines the group key length. Leave at the default value * of 2 unless there's an empirical reason to change it. * * @return WP_Token_Map|null Token map, unless unable to create it. - * @since 6.6.0 - * */ public static function from_array( array $mappings, int $key_length = 2 ): ?WP_Token_Map { $map = new WP_Token_Map(); @@ -296,13 +300,12 @@ public static function from_array( array $mappings, int $key_length = 2 ): ?WP_T _doing_it_wrong( __METHOD__, sprintf( - /* translators: 1: maximum byte length (a count) */ + /* translators: 1: maximum byte length (a count) */ __( 'Token Map tokens and substitutions must all be shorter than %1$d bytes.' ), self::MAX_LENGTH ), '6.6.0' ); - return null; } @@ -338,7 +341,7 @@ static function ( array $a, array $b ): int { // Finally construct the optimized lookups. foreach ( $shorts as $word ) { - $map->small_words .= str_pad( $word, $key_length + 1, "\x00", STR_PAD_RIGHT ); + $map->small_words .= str_pad( $word, $key_length + 1, "\x00", STR_PAD_RIGHT ); $map->small_mappings[] = $mappings[ $word ]; } @@ -355,7 +358,7 @@ static function ( array $a, array $b ): int { $word_length = pack( 'C', strlen( $word ) ); $mapping_length = pack( 'C', strlen( $mapping ) ); - $group_string .= "{$word_length}{$word}{$mapping_length}{$mapping}"; + $group_string .= "{$word_length}{$word}{$mapping_length}{$mapping}"; } $map->large_words[] = $group_string; @@ -371,20 +374,20 @@ static function ( array $a, array $b ): int { * This function should only be used to load data created with * WP_Token_Map::precomputed_php_source_tag(). * - * @param array $state { + * @since 6.6.0 + * + * @param array $state { * Stores pre-computed state for directly loading into a Token Map. * - * @type string $storage_version Which version of the code produced this state. - * @type int $key_length Group key length. - * @type string $groups Group lookup index. - * @type array $large_words Large word groups and packed strings. - * @type string $small_words Small words packed string. - * @type array $small_mappings Small word mappings. + * @type string $storage_version Which version of the code produced this state. + * @type int $key_length Group key length. + * @type string $groups Group lookup index. + * @type array $large_words Large word groups and packed strings. + * @type string $small_words Small words packed string. + * @type array $small_mappings Small word mappings. * } * * @return WP_Token_Map Map with precomputed data loaded. - * @since 6.6.0 - * */ public static function from_precomputed_table( $state ): ?WP_Token_Map { $has_necessary_state = isset( @@ -402,7 +405,6 @@ public static function from_precomputed_table( $state ): ?WP_Token_Map { __( 'Missing required inputs to pre-computed WP_Token_Map.' ), '6.6.0' ); - return null; } @@ -410,11 +412,9 @@ public static function from_precomputed_table( $state ): ?WP_Token_Map { _doing_it_wrong( __METHOD__, /* translators: 1: version string, 2: version string. */ - sprintf( __( 'Loaded version \'%1$s\' incompatible with expected version \'%2$s\'.' ), $state['storage_version'], - self::STORAGE_VERSION ), + sprintf( __( 'Loaded version \'%1$s\' incompatible with expected version \'%2$s\'.' ), $state['storage_version'], self::STORAGE_VERSION ), '6.6.0' ); - return null; } @@ -437,12 +437,11 @@ public static function from_precomputed_table( $state ): ?WP_Token_Map { * true === $smilies->contains( ':)' ); * false === $smilies->contains( 'simile' ); * - * @param string $word Determine if this word is a lookup key in the map. - * @param string $case_sensitivity Optional. Pass 'ascii-case-insensitive' to ignore ASCII case when matching. Default 'case-sensitive'. - * - * @return bool Whether there's an entry for the given word in the map. * @since 6.6.0 * + * @param string $word Determine if this word is a lookup key in the map. + * @param string $case_sensitivity Optional. Pass 'ascii-case-insensitive' to ignore ASCII case when matching. Default 'case-sensitive'. + * @return bool Whether there's an entry for the given word in the map. */ public function contains( string $word, string $case_sensitivity = 'case-sensitive' ): bool { $ignore_case = 'ascii-case-insensitive' === $case_sensitivity; @@ -473,10 +472,10 @@ public function contains( string $word, string $case_sensitivity = 'case-sensiti $at = 0; while ( $at < $group_length ) { - $token_length = unpack( 'C', $group[ $at ++ ] )[1]; + $token_length = unpack( 'C', $group[ $at++ ] )[1]; $token_at = $at; - $at += $token_length; - $mapping_length = unpack( 'C', $group[ $at ++ ] )[1]; + $at += $token_length; + $mapping_length = unpack( 'C', $group[ $at++ ] )[1]; $mapping_at = $at; if ( $token_length === $length && 0 === substr_compare( $group, $slug, $token_at, $token_length, $ignore_case ) ) { @@ -523,21 +522,16 @@ public function contains( string $word, string $case_sensitivity = 'case-sensiti * $output .= "{$prefix}{$smily}"; * } * - * @param string $text String in which to search for a lookup key. - * @param int $offset Optional. How many bytes into the string where the lookup key ought to start. Default 0. - * @param int|null &$matched_token_byte_length Optional. Holds byte-length of found token matched, otherwise not set. Default null. - * @param string $case_sensitivity Optional. Pass 'ascii-case-insensitive' to ignore ASCII case when matching. Default 'case-sensitive'. - * - * @return string|null Mapped value of lookup key if found, otherwise `null`. * @since 6.6.0 * + * @param string $text String in which to search for a lookup key. + * @param int $offset Optional. How many bytes into the string where the lookup key ought to start. Default 0. + * @param int|null &$matched_token_byte_length Optional. Holds byte-length of found token matched, otherwise not set. Default null. + * @param string $case_sensitivity Optional. Pass 'ascii-case-insensitive' to ignore ASCII case when matching. Default 'case-sensitive'. + * + * @return string|null Mapped value of lookup key if found, otherwise `null`. */ - public function read_token( - string $text, - int $offset = 0, - &$matched_token_byte_length = null, - $case_sensitivity = 'case-sensitive' - ): ?string { + public function read_token( string $text, int $offset = 0, &$matched_token_byte_length = null, $case_sensitivity = 'case-sensitive' ): ?string { $ignore_case = 'ascii-case-insensitive' === $case_sensitivity; $text_length = strlen( $text ); @@ -557,15 +551,14 @@ public function read_token( $group_length = strlen( $group ); $at = 0; while ( $at < $group_length ) { - $token_length = unpack( 'C', $group[ $at ++ ] )[1]; + $token_length = unpack( 'C', $group[ $at++ ] )[1]; $token = substr( $group, $at, $token_length ); - $at += $token_length; - $mapping_length = unpack( 'C', $group[ $at ++ ] )[1]; + $at += $token_length; + $mapping_length = unpack( 'C', $group[ $at++ ] )[1]; $mapping_at = $at; if ( 0 === substr_compare( $text, $token, $offset + $this->key_length, $token_length, $ignore_case ) ) { $matched_token_byte_length = $this->key_length + $token_length; - return substr( $group, $mapping_at, $mapping_length ); } @@ -582,21 +575,16 @@ public function read_token( /** * Finds a match for a short word at the index. * - * @param string $text String in which to search for a lookup key. - * @param int $offset Optional. How many bytes into the string where the lookup key ought to start. Default 0. - * @param int|null &$matched_token_byte_length Optional. Holds byte-length of found lookup key if matched, otherwise not set. Default null. - * @param string $case_sensitivity Optional. Pass 'ascii-case-insensitive' to ignore ASCII case when matching. Default 'case-sensitive'. - * - * @return string|null Mapped value of lookup key if found, otherwise `null`. * @since 6.6.0 * + * @param string $text String in which to search for a lookup key. + * @param int $offset Optional. How many bytes into the string where the lookup key ought to start. Default 0. + * @param int|null &$matched_token_byte_length Optional. Holds byte-length of found lookup key if matched, otherwise not set. Default null. + * @param string $case_sensitivity Optional. Pass 'ascii-case-insensitive' to ignore ASCII case when matching. Default 'case-sensitive'. + * + * @return string|null Mapped value of lookup key if found, otherwise `null`. */ - private function read_small_token( - string $text, - int $offset = 0, - &$matched_token_byte_length = null, - $case_sensitivity = 'case-sensitive' - ): ?string { + private function read_small_token( string $text, int $offset = 0, &$matched_token_byte_length = null, $case_sensitivity = 'case-sensitive' ): ?string { $ignore_case = 'ascii-case-insensitive' === $case_sensitivity; $small_length = strlen( $this->small_words ); $search_text = substr( $text, $offset, $this->key_length ); @@ -615,10 +603,9 @@ private function read_small_token( continue; } - for ( $adjust = 1; $adjust < $this->key_length; $adjust ++ ) { + for ( $adjust = 1; $adjust < $this->key_length; $adjust++ ) { if ( "\x00" === $this->small_words[ $at + $adjust ] ) { $matched_token_byte_length = $adjust; - return $this->small_mappings[ $at / ( $this->key_length + 1 ) ]; } @@ -632,7 +619,6 @@ private function read_small_token( } $matched_token_byte_length = $adjust; - return $this->small_mappings[ $at / ( $this->key_length + 1 ) ]; } @@ -661,7 +647,7 @@ public function to_array(): array { $small_length = strlen( $this->small_words ); while ( $at < $small_length ) { $key = rtrim( substr( $this->small_words, $at, $this->key_length + 1 ), "\x00" ); - $value = $this->small_mappings[ $small_mapping ++ ]; + $value = $this->small_mappings[ $small_mapping++ ]; $tokens[ $key ] = $value; $at += $this->key_length + 1; @@ -672,15 +658,15 @@ public function to_array(): array { $group_length = strlen( $group ); $at = 0; while ( $at < $group_length ) { - $length = unpack( 'C', $group[ $at ++ ] )[1]; + $length = unpack( 'C', $group[ $at++ ] )[1]; $key = $prefix . substr( $group, $at, $length ); - $at += $length; - $length = unpack( 'C', $group[ $at ++ ] )[1]; + $at += $length; + $length = unpack( 'C', $group[ $at++ ] )[1]; $value = substr( $group, $at, $length ); $tokens[ $key ] = $value; - $at += $length; + $at += $length; } } @@ -710,11 +696,10 @@ public function to_array(): array { * ) * ); * - * @param string $indent Optional. Use this string for indentation, or rely on the default horizontal tab character. Default "\t". - * - * @return string Value which can be pasted into a PHP source file for quick loading of table. * @since 6.6.0 * + * @param string $indent Optional. Use this string for indentation, or rely on the default horizontal tab character. Default "\t". + * @return string Value which can be pasted into a PHP source file for quick loading of table. */ public function precomputed_php_source_table( string $indent = "\t" ): string { $i1 = $indent; @@ -723,13 +708,13 @@ public function precomputed_php_source_table( string $indent = "\t" ): string { $class_version = self::STORAGE_VERSION; - $output = self::class . "::from_precomputed_table(\n"; + $output = self::class . "::from_precomputed_table(\n"; $output .= "{$i1}array(\n"; $output .= "{$i2}\"storage_version\" => \"{$class_version}\",\n"; $output .= "{$i2}\"key_length\" => {$this->key_length},\n"; $group_line = str_replace( "\x00", "\\x00", $this->groups ); - $output .= "{$i2}\"groups\" => \"{$group_line}\",\n"; + $output .= "{$i2}\"groups\" => \"{$group_line}\",\n"; $output .= "{$i2}\"large_words\" => array(\n"; @@ -744,12 +729,12 @@ public function precomputed_php_source_table( string $indent = "\t" ): string { $data_line = "{$i3}\""; $at = 0; while ( $at < $group_length ) { - $token_length = unpack( 'C', $group[ $at ++ ] )[1]; + $token_length = unpack( 'C', $group[ $at++ ] )[1]; $token = substr( $group, $at, $token_length ); - $at += $token_length; - $mapping_length = unpack( 'C', $group[ $at ++ ] )[1]; + $at += $token_length; + $mapping_length = unpack( 'C', $group[ $at++ ] )[1]; $mapping = substr( $group, $at, $mapping_length ); - $at += $mapping_length; + $at += $mapping_length; $token_digits = str_pad( dechex( $token_length ), 2, '0', STR_PAD_LEFT ); $mapping_digits = str_pad( dechex( $mapping_length ), 2, '0', STR_PAD_LEFT ); @@ -766,7 +751,6 @@ static function ( $match_result ) { default: $hex = dechex( ord( $match_result[0] ) ); - return "\\x{$hex}"; } }, @@ -790,11 +774,11 @@ static function ( $match_result ) { $at = 0; while ( $at < $small_length ) { $small_words[] = substr( $this->small_words, $at, $this->key_length + 1 ); - $at += $this->key_length + 1; + $at += $this->key_length + 1; } $small_text = str_replace( "\x00", '\x00', implode( '', $small_words ) ); - $output .= "{$i2}\"small_words\" => \"{$small_text}\",\n"; + $output .= "{$i2}\"small_words\" => \"{$small_text}\",\n"; $output .= "{$i2}\"small_mappings\" => array(\n"; foreach ( $this->small_mappings as $mapping ) { @@ -816,12 +800,11 @@ static function ( $match_result ) { * match. For example, it should not detect `Cap` when matching * against the string `CapitalDifferentialD`. * - * @param string $a First string to compare. - * @param string $b Second string to compare. - * - * @return int -1 or lower if `$a` is less than `$b`; 1 or greater if `$a` is greater than `$b`, and 0 if they are equal. * @since 6.6.0 * + * @param string $a First string to compare. + * @param string $b Second string to compare. + * @return int -1 or lower if `$a` is less than `$b`; 1 or greater if `$a` is greater than `$b`, and 0 if they are equal. */ private static function longest_first_then_alphabetical( string $a, string $b ): int { if ( $a === $b ) { diff --git a/components/HTML/composer.json b/components/HTML/composer.json index d4fc89c0..4595f56b 100644 --- a/components/HTML/composer.json +++ b/components/HTML/composer.json @@ -1,29 +1,33 @@ { - "name": "wordpress/html", - "description": "HTML component for WordPress.", - "type": "library", - "authors": [ - { - "name": "Adam Zielinski", - "email": "adam@adamziel.com" - }, - { - "name": "WordPress Team", - "email": "wordpress@wordpress.org" - } - ], - "require": { - "php": ">=7.2" - }, - "autoload": { - "classmap": [ - "./" - ], - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "require-dev": { - "phpunit/phpunit": "^9.5" - } -} + "name": "wordpress\/html", + "description": "HTML component for WordPress.", + "type": "library", + "authors": [ + { + "name": "Adam Zielinski", + "email": "adam@adamziel.com" + }, + { + "name": "WordPress Team", + "email": "wordpress@wordpress.org" + } + ], + "require": { + "php": ">=7.2" + }, + "autoload": { + "psr-4": { + "WordPress\\HTML\\": "." + }, + "classmap": [ + ".\/" + ], + "exclude-from-classmap": [ + "\/Tests\/" + ] + }, + "require-dev": { + "phpunit\/phpunit": "^9.5" + }, + "version": "6.8" +} \ No newline at end of file diff --git a/components/HTML/html5-named-character-references.php b/components/HTML/html5-named-character-references.php index 53b773d6..f57deb90 100644 --- a/components/HTML/html5-named-character-references.php +++ b/components/HTML/html5-named-character-references.php @@ -1,5 +1,7 @@ "6.6.0-trunk", - "key_length" => 2, - "groups" => "AE\x00AM\x00Aa\x00Ab\x00Ac\x00Af\x00Ag\x00Al\x00Am\x00An\x00Ao\x00Ap\x00Ar\x00As\x00At\x00Au\x00Ba\x00Bc\x00Be\x00Bf\x00Bo\x00Br\x00Bs\x00Bu\x00CH\x00CO\x00Ca\x00Cc\x00Cd\x00Ce\x00Cf\x00Ch\x00Ci\x00Cl\x00Co\x00Cr\x00Cs\x00Cu\x00DD\x00DJ\x00DS\x00DZ\x00Da\x00Dc\x00De\x00Df\x00Di\x00Do\x00Ds\x00EN\x00ET\x00Ea\x00Ec\x00Ed\x00Ef\x00Eg\x00El\x00Em\x00Eo\x00Ep\x00Eq\x00Es\x00Et\x00Eu\x00Ex\x00Fc\x00Ff\x00Fi\x00Fo\x00Fs\x00GJ\x00GT\x00Ga\x00Gb\x00Gc\x00Gd\x00Gf\x00Gg\x00Go\x00Gr\x00Gs\x00Gt\x00HA\x00Ha\x00Hc\x00Hf\x00Hi\x00Ho\x00Hs\x00Hu\x00IE\x00IJ\x00IO\x00Ia\x00Ic\x00Id\x00If\x00Ig\x00Im\x00In\x00Io\x00Is\x00It\x00Iu\x00Jc\x00Jf\x00Jo\x00Js\x00Ju\x00KH\x00KJ\x00Ka\x00Kc\x00Kf\x00Ko\x00Ks\x00LJ\x00LT\x00La\x00Lc\x00Le\x00Lf\x00Ll\x00Lm\x00Lo\x00Ls\x00Lt\x00Ma\x00Mc\x00Me\x00Mf\x00Mi\x00Mo\x00Ms\x00Mu\x00NJ\x00Na\x00Nc\x00Ne\x00Nf\x00No\x00Ns\x00Nt\x00Nu\x00OE\x00Oa\x00Oc\x00Od\x00Of\x00Og\x00Om\x00Oo\x00Op\x00Or\x00Os\x00Ot\x00Ou\x00Ov\x00Pa\x00Pc\x00Pf\x00Ph\x00Pi\x00Pl\x00Po\x00Pr\x00Ps\x00QU\x00Qf\x00Qo\x00Qs\x00RB\x00RE\x00Ra\x00Rc\x00Re\x00Rf\x00Rh\x00Ri\x00Ro\x00Rr\x00Rs\x00Ru\x00SH\x00SO\x00Sa\x00Sc\x00Sf\x00Sh\x00Si\x00Sm\x00So\x00Sq\x00Ss\x00St\x00Su\x00TH\x00TR\x00TS\x00Ta\x00Tc\x00Tf\x00Th\x00Ti\x00To\x00Tr\x00Ts\x00Ua\x00Ub\x00Uc\x00Ud\x00Uf\x00Ug\x00Um\x00Un\x00Uo\x00Up\x00Ur\x00Us\x00Ut\x00Uu\x00VD\x00Vb\x00Vc\x00Vd\x00Ve\x00Vf\x00Vo\x00Vs\x00Vv\x00Wc\x00We\x00Wf\x00Wo\x00Ws\x00Xf\x00Xi\x00Xo\x00Xs\x00YA\x00YI\x00YU\x00Ya\x00Yc\x00Yf\x00Yo\x00Ys\x00Yu\x00ZH\x00Za\x00Zc\x00Zd\x00Ze\x00Zf\x00Zo\x00Zs\x00aa\x00ab\x00ac\x00ae\x00af\x00ag\x00al\x00am\x00an\x00ao\x00ap\x00ar\x00as\x00at\x00au\x00aw\x00bN\x00ba\x00bb\x00bc\x00bd\x00be\x00bf\x00bi\x00bk\x00bl\x00bn\x00bo\x00bp\x00br\x00bs\x00bu\x00ca\x00cc\x00cd\x00ce\x00cf\x00ch\x00ci\x00cl\x00co\x00cr\x00cs\x00ct\x00cu\x00cw\x00cy\x00dA\x00dH\x00da\x00db\x00dc\x00dd\x00de\x00df\x00dh\x00di\x00dj\x00dl\x00do\x00dr\x00ds\x00dt\x00du\x00dw\x00dz\x00eD\x00ea\x00ec\x00ed\x00ee\x00ef\x00eg\x00el\x00em\x00en\x00eo\x00ep\x00eq\x00er\x00es\x00et\x00eu\x00ex\x00fa\x00fc\x00fe\x00ff\x00fi\x00fj\x00fl\x00fn\x00fo\x00fp\x00fr\x00fs\x00gE\x00ga\x00gb\x00gc\x00gd\x00ge\x00gf\x00gg\x00gi\x00gj\x00gl\x00gn\x00go\x00gr\x00gs\x00gt\x00gv\x00hA\x00ha\x00hb\x00hc\x00he\x00hf\x00hk\x00ho\x00hs\x00hy\x00ia\x00ic\x00ie\x00if\x00ig\x00ii\x00ij\x00im\x00in\x00io\x00ip\x00iq\x00is\x00it\x00iu\x00jc\x00jf\x00jm\x00jo\x00js\x00ju\x00ka\x00kc\x00kf\x00kg\x00kh\x00kj\x00ko\x00ks\x00lA\x00lB\x00lE\x00lH\x00la\x00lb\x00lc\x00ld\x00le\x00lf\x00lg\x00lh\x00lj\x00ll\x00lm\x00ln\x00lo\x00lp\x00lr\x00ls\x00lt\x00lu\x00lv\x00mD\x00ma\x00mc\x00md\x00me\x00mf\x00mh\x00mi\x00ml\x00mn\x00mo\x00mp\x00ms\x00mu\x00nG\x00nL\x00nR\x00nV\x00na\x00nb\x00nc\x00nd\x00ne\x00nf\x00ng\x00nh\x00ni\x00nj\x00nl\x00nm\x00no\x00np\x00nr\x00ns\x00nt\x00nu\x00nv\x00nw\x00oS\x00oa\x00oc\x00od\x00oe\x00of\x00og\x00oh\x00oi\x00ol\x00om\x00oo\x00op\x00or\x00os\x00ot\x00ou\x00ov\x00pa\x00pc\x00pe\x00pf\x00ph\x00pi\x00pl\x00pm\x00po\x00pr\x00ps\x00pu\x00qf\x00qi\x00qo\x00qp\x00qs\x00qu\x00rA\x00rB\x00rH\x00ra\x00rb\x00rc\x00rd\x00re\x00rf\x00rh\x00ri\x00rl\x00rm\x00rn\x00ro\x00rp\x00rr\x00rs\x00rt\x00ru\x00rx\x00sa\x00sb\x00sc\x00sd\x00se\x00sf\x00sh\x00si\x00sl\x00sm\x00so\x00sp\x00sq\x00sr\x00ss\x00st\x00su\x00sw\x00sz\x00ta\x00tb\x00tc\x00td\x00te\x00tf\x00th\x00ti\x00to\x00tp\x00tr\x00ts\x00tw\x00uA\x00uH\x00ua\x00ub\x00uc\x00ud\x00uf\x00ug\x00uh\x00ul\x00um\x00uo\x00up\x00ur\x00us\x00ut\x00uu\x00uw\x00vA\x00vB\x00vD\x00va\x00vc\x00vd\x00ve\x00vf\x00vl\x00vn\x00vo\x00vp\x00vr\x00vs\x00vz\x00wc\x00we\x00wf\x00wo\x00wp\x00wr\x00ws\x00xc\x00xd\x00xf\x00xh\x00xi\x00xl\x00xm\x00xn\x00xo\x00xr\x00xs\x00xu\x00xv\x00xw\x00ya\x00yc\x00ye\x00yf\x00yi\x00yo\x00ys\x00yu\x00za\x00zc\x00zd\x00ze\x00zf\x00zh\x00zi\x00zo\x00zs\x00zw\x00", - "large_words" => array( + "key_length" => 2, + "groups" => "AE\x00AM\x00Aa\x00Ab\x00Ac\x00Af\x00Ag\x00Al\x00Am\x00An\x00Ao\x00Ap\x00Ar\x00As\x00At\x00Au\x00Ba\x00Bc\x00Be\x00Bf\x00Bo\x00Br\x00Bs\x00Bu\x00CH\x00CO\x00Ca\x00Cc\x00Cd\x00Ce\x00Cf\x00Ch\x00Ci\x00Cl\x00Co\x00Cr\x00Cs\x00Cu\x00DD\x00DJ\x00DS\x00DZ\x00Da\x00Dc\x00De\x00Df\x00Di\x00Do\x00Ds\x00EN\x00ET\x00Ea\x00Ec\x00Ed\x00Ef\x00Eg\x00El\x00Em\x00Eo\x00Ep\x00Eq\x00Es\x00Et\x00Eu\x00Ex\x00Fc\x00Ff\x00Fi\x00Fo\x00Fs\x00GJ\x00GT\x00Ga\x00Gb\x00Gc\x00Gd\x00Gf\x00Gg\x00Go\x00Gr\x00Gs\x00Gt\x00HA\x00Ha\x00Hc\x00Hf\x00Hi\x00Ho\x00Hs\x00Hu\x00IE\x00IJ\x00IO\x00Ia\x00Ic\x00Id\x00If\x00Ig\x00Im\x00In\x00Io\x00Is\x00It\x00Iu\x00Jc\x00Jf\x00Jo\x00Js\x00Ju\x00KH\x00KJ\x00Ka\x00Kc\x00Kf\x00Ko\x00Ks\x00LJ\x00LT\x00La\x00Lc\x00Le\x00Lf\x00Ll\x00Lm\x00Lo\x00Ls\x00Lt\x00Ma\x00Mc\x00Me\x00Mf\x00Mi\x00Mo\x00Ms\x00Mu\x00NJ\x00Na\x00Nc\x00Ne\x00Nf\x00No\x00Ns\x00Nt\x00Nu\x00OE\x00Oa\x00Oc\x00Od\x00Of\x00Og\x00Om\x00Oo\x00Op\x00Or\x00Os\x00Ot\x00Ou\x00Ov\x00Pa\x00Pc\x00Pf\x00Ph\x00Pi\x00Pl\x00Po\x00Pr\x00Ps\x00QU\x00Qf\x00Qo\x00Qs\x00RB\x00RE\x00Ra\x00Rc\x00Re\x00Rf\x00Rh\x00Ri\x00Ro\x00Rr\x00Rs\x00Ru\x00SH\x00SO\x00Sa\x00Sc\x00Sf\x00Sh\x00Si\x00Sm\x00So\x00Sq\x00Ss\x00St\x00Su\x00TH\x00TR\x00TS\x00Ta\x00Tc\x00Tf\x00Th\x00Ti\x00To\x00Tr\x00Ts\x00Ua\x00Ub\x00Uc\x00Ud\x00Uf\x00Ug\x00Um\x00Un\x00Uo\x00Up\x00Ur\x00Us\x00Ut\x00Uu\x00VD\x00Vb\x00Vc\x00Vd\x00Ve\x00Vf\x00Vo\x00Vs\x00Vv\x00Wc\x00We\x00Wf\x00Wo\x00Ws\x00Xf\x00Xi\x00Xo\x00Xs\x00YA\x00YI\x00YU\x00Ya\x00Yc\x00Yf\x00Yo\x00Ys\x00Yu\x00ZH\x00Za\x00Zc\x00Zd\x00Ze\x00Zf\x00Zo\x00Zs\x00aa\x00ab\x00ac\x00ae\x00af\x00ag\x00al\x00am\x00an\x00ao\x00ap\x00ar\x00as\x00at\x00au\x00aw\x00bN\x00ba\x00bb\x00bc\x00bd\x00be\x00bf\x00bi\x00bk\x00bl\x00bn\x00bo\x00bp\x00br\x00bs\x00bu\x00ca\x00cc\x00cd\x00ce\x00cf\x00ch\x00ci\x00cl\x00co\x00cr\x00cs\x00ct\x00cu\x00cw\x00cy\x00dA\x00dH\x00da\x00db\x00dc\x00dd\x00de\x00df\x00dh\x00di\x00dj\x00dl\x00do\x00dr\x00ds\x00dt\x00du\x00dw\x00dz\x00eD\x00ea\x00ec\x00ed\x00ee\x00ef\x00eg\x00el\x00em\x00en\x00eo\x00ep\x00eq\x00er\x00es\x00et\x00eu\x00ex\x00fa\x00fc\x00fe\x00ff\x00fi\x00fj\x00fl\x00fn\x00fo\x00fp\x00fr\x00fs\x00gE\x00ga\x00gb\x00gc\x00gd\x00ge\x00gf\x00gg\x00gi\x00gj\x00gl\x00gn\x00go\x00gr\x00gs\x00gt\x00gv\x00hA\x00ha\x00hb\x00hc\x00he\x00hf\x00hk\x00ho\x00hs\x00hy\x00ia\x00ic\x00ie\x00if\x00ig\x00ii\x00ij\x00im\x00in\x00io\x00ip\x00iq\x00is\x00it\x00iu\x00jc\x00jf\x00jm\x00jo\x00js\x00ju\x00ka\x00kc\x00kf\x00kg\x00kh\x00kj\x00ko\x00ks\x00lA\x00lB\x00lE\x00lH\x00la\x00lb\x00lc\x00ld\x00le\x00lf\x00lg\x00lh\x00lj\x00ll\x00lm\x00ln\x00lo\x00lp\x00lr\x00ls\x00lt\x00lu\x00lv\x00mD\x00ma\x00mc\x00md\x00me\x00mf\x00mh\x00mi\x00ml\x00mn\x00mo\x00mp\x00ms\x00mu\x00nG\x00nL\x00nR\x00nV\x00na\x00nb\x00nc\x00nd\x00ne\x00nf\x00ng\x00nh\x00ni\x00nj\x00nl\x00nm\x00no\x00np\x00nr\x00ns\x00nt\x00nu\x00nv\x00nw\x00oS\x00oa\x00oc\x00od\x00oe\x00of\x00og\x00oh\x00oi\x00ol\x00om\x00oo\x00op\x00or\x00os\x00ot\x00ou\x00ov\x00pa\x00pc\x00pe\x00pf\x00ph\x00pi\x00pl\x00pm\x00po\x00pr\x00ps\x00pu\x00qf\x00qi\x00qo\x00qp\x00qs\x00qu\x00rA\x00rB\x00rH\x00ra\x00rb\x00rc\x00rd\x00re\x00rf\x00rh\x00ri\x00rl\x00rm\x00rn\x00ro\x00rp\x00rr\x00rs\x00rt\x00ru\x00rx\x00sa\x00sb\x00sc\x00sd\x00se\x00sf\x00sh\x00si\x00sl\x00sm\x00so\x00sp\x00sq\x00sr\x00ss\x00st\x00su\x00sw\x00sz\x00ta\x00tb\x00tc\x00td\x00te\x00tf\x00th\x00ti\x00to\x00tp\x00tr\x00ts\x00tw\x00uA\x00uH\x00ua\x00ub\x00uc\x00ud\x00uf\x00ug\x00uh\x00ul\x00um\x00uo\x00up\x00ur\x00us\x00ut\x00uu\x00uw\x00vA\x00vB\x00vD\x00va\x00vc\x00vd\x00ve\x00vf\x00vl\x00vn\x00vo\x00vp\x00vr\x00vs\x00vz\x00wc\x00we\x00wf\x00wo\x00wp\x00wr\x00ws\x00xc\x00xd\x00xf\x00xh\x00xi\x00xl\x00xm\x00xn\x00xo\x00xr\x00xs\x00xu\x00xv\x00xw\x00ya\x00yc\x00ye\x00yf\x00yi\x00yo\x00ys\x00yu\x00za\x00zc\x00zd\x00ze\x00zf\x00zh\x00zi\x00zo\x00zs\x00zw\x00", + "large_words" => array( // AElig;[Æ] AElig[Æ]. "\x04lig;\x02Æ\x03lig\x02Æ", // AMP;[&] AMP[&]. @@ -1302,12 +1304,12 @@ // zwnj;[‌] zwj;[‍]. "\x03nj;\x03‌\x02j;\x03‍", ), - "small_words" => "GT\x00LT\x00gt\x00lt\x00", - "small_mappings" => array( + "small_words" => "GT\x00LT\x00gt\x00lt\x00", + "small_mappings" => array( ">", "<", ">", "<", - ), + ) ) ); diff --git a/components/HttpClient/Middleware/HttpMiddleware.php b/components/HttpClient/Middleware/HttpMiddleware.php index b86e13ee..a5835ece 100644 --- a/components/HttpClient/Middleware/HttpMiddleware.php +++ b/components/HttpClient/Middleware/HttpMiddleware.php @@ -4,13 +4,12 @@ use WordPress\HttpClient\Client; use WordPress\HttpClient\ClientState; -use WordPress\HttpClient\HttpClientException; use WordPress\HttpClient\Request; use WordPress\HttpClient\Connection; -use WordPress\HttpClient\Transport\CurlTransport; -use WordPress\HttpClient\Transport\SocketTransport; use WordPress\HttpClient\Transport\TransportInterface; +use function WordPress\Polyfill\apply_filters; + class HttpMiddleware implements MiddlewareInterface { const EVENT_GOT_HEADERS = 'EVENT_GOT_HEADERS'; diff --git a/components/HttpClient/Transport/CurlTransport.php b/components/HttpClient/Transport/CurlTransport.php index 659b0eb6..b31ec3fb 100644 --- a/components/HttpClient/Transport/CurlTransport.php +++ b/components/HttpClient/Transport/CurlTransport.php @@ -145,6 +145,7 @@ private function init_curl_handle( $request ) { } // Basic curl settings for the request curl_setopt( $ch, CURLOPT_URL, $request->url ); + error_log('curl_setopt( $ch, CURLOPT_URL, ' . $request->url . ' );'); curl_setopt( $ch, CURLOPT_FOLLOWLOCATION, false ); // Redirects are handled in the Client. curl_setopt( $ch, CURLOPT_MAXREDIRS, 0 ); diff --git a/components/Markdown/MarkdownConsumer.php b/components/Markdown/MarkdownConsumer.php index 7a8dcecb..128aced1 100644 --- a/components/Markdown/MarkdownConsumer.php +++ b/components/Markdown/MarkdownConsumer.php @@ -18,7 +18,7 @@ use WordPress\DataLiberation\DataFormatConsumer\BlocksWithMetadata; use WordPress\DataLiberation\DataFormatConsumer\DataFormatConsumer; use WordPress\DataLiberation\Importer\ImportUtils; -use WP_HTML_Tag_Processor; +use WordPress\HTML\WP_HTML_Tag_Processor; /** * Transforms markdown with frontmatter into a block markup and metadata pair. diff --git a/components/Markdown/MarkdownImporter.php b/components/Markdown/MarkdownImporter.php index 405adfea..a5d34b12 100644 --- a/components/Markdown/MarkdownImporter.php +++ b/components/Markdown/MarkdownImporter.php @@ -7,6 +7,8 @@ use WordPress\DataLiberation\Importer\StreamImporter; use WordPress\Filesystem\LocalFilesystem; +use function WordPress\Polyfill\_doing_it_wrong; + class MarkdownImporter extends StreamImporter { public static function create_for_markdown_directory( $markdown_directory, $options = array(), $cursor = null ) { diff --git a/components/Markdown/MarkdownProducer.php b/components/Markdown/MarkdownProducer.php index a1b9c511..6b8f3d9b 100644 --- a/components/Markdown/MarkdownProducer.php +++ b/components/Markdown/MarkdownProducer.php @@ -5,6 +5,8 @@ use WordPress\DataLiberation\DataFormatConsumer\BlocksWithMetadata; use WordPress\DataLiberation\DataFormatProducer\DataFormatProducer; use WordPress\DataLiberation\DataLiberationHTMLProcessor; +use function WordPress\Polyfill\parse_blocks; +use function WordPress\Polyfill\serialize_block; /** * Converts WordPress blocks and metadata to Markdown with frontmatter. @@ -283,7 +285,7 @@ function ( $cell, $width ) { $markdown = array(); $markdown[] = ''; $markdown[] = '```block'; - $markdown[] = \serialize_block( $block ); + $markdown[] = serialize_block( $block ); $markdown[] = '```'; $markdown[] = ''; return implode( "\n", $markdown ); diff --git a/components/Markdown/Tests/MarkdownConsumerTest.php b/components/Markdown/Tests/MarkdownConsumerTest.php index 1283d72f..15bc9a33 100644 --- a/components/Markdown/Tests/MarkdownConsumerTest.php +++ b/components/Markdown/Tests/MarkdownConsumerTest.php @@ -67,7 +67,7 @@ public function test_markdown_to_blocks_conversion( $markdown, $expected ) { } private function normalize_markup( $markup ) { - $processor = WP_HTML_Processor::create_fragment( $markup ); + $processor = \WordPress\HTML\WP_HTML_Processor::create_fragment( $markup ); $serialized = $processor->serialize(); $serialized = trim( str_replace( diff --git a/components/Merge/Validate/BlockMarkupMergeValidator.php b/components/Merge/Validate/BlockMarkupMergeValidator.php index ca17be17..9ff62238 100644 --- a/components/Merge/Validate/BlockMarkupMergeValidator.php +++ b/components/Merge/Validate/BlockMarkupMergeValidator.php @@ -4,7 +4,7 @@ use ReflectionClass; use WordPress\DataLiberation\BlockMarkup\BlockMarkupProcessor; -use WP_HTML_Processor; +use WordPress\HTML\WP_HTML_Processor; class BlockMarkupMergeValidator implements MergeValidator { @@ -55,7 +55,7 @@ public function validate( $html ) { private function assert_html_is_structurally_sound( $html ) { $html .= ''; - $html_processor = WP_HTML_Processor::create_fragment( $html ); + $html_processor = \WordPress\HTML\WP_HTML_Processor::create_fragment( $html ); /** * Make the is_virtual() method public to enable deeper inspection. diff --git a/components/Polyfill/wordpress.php b/components/Polyfill/wordpress.php index 5bc8773c..7084c089 100644 --- a/components/Polyfill/wordpress.php +++ b/components/Polyfill/wordpress.php @@ -2,7 +2,10 @@ /** * Polyfills WordPress core functions for running in non-WordPress environments */ +namespace WordPress\Polyfill; +// This may be loaded twice if Polyfills are included before WordPress, but that's fine. +// There are no function declarations in that file, only a global variable. if ( ! isset( $html5_named_character_references ) && file_exists( __DIR__ . '/../HTML/html5-named-character-references.php' ) @@ -10,213 +13,233 @@ require_once __DIR__ . '/../HTML/html5-named-character-references.php'; } +// @TODO: Wrap in namespaces before merging: if ( ! class_exists( 'WP_Block_Parser' ) ) { require_once __DIR__ . '/../BlockParser/class-wp-block-parser-block.php'; require_once __DIR__ . '/../BlockParser/class-wp-block-parser-frame.php'; require_once __DIR__ . '/../BlockParser/class-wp-block-parser.php'; } -if ( ! function_exists( '_doing_it_wrong' ) ) { - $GLOBALS['_doing_it_wrong_messages'] = array(); - function _doing_it_wrong( $method, $message, $version ) { - $GLOBALS['_doing_it_wrong_messages'][] = $message; +$GLOBALS['_doing_it_wrong_messages'] = array(); +function _doing_it_wrong( $method, $message, $version ) { + if ( function_exists( '\\_doing_it_wrong' ) ) { + return call_user_func_array( '\\_doing_it_wrong', func_get_args() ); } + $GLOBALS['_doing_it_wrong_messages'][] = $message; } -if ( ! class_exists( 'WP_Exception' ) ) { - class WP_Exception extends Exception { +function wp_trigger_error( $function_name, $message, $error_level = E_USER_NOTICE ) { + if ( function_exists( '\\wp_trigger_error' ) ) { + return call_user_func_array( '\\wp_trigger_error', func_get_args() ); } -} -if ( ! function_exists( 'wp_trigger_error' ) ) { - function wp_trigger_error( $function_name, $message, $error_level = E_USER_NOTICE ) { - if ( ! empty( $function_name ) ) { - $message = sprintf( '%s(): %s', $function_name, $message ); - } + if ( ! empty( $function_name ) ) { + $message = sprintf( '%s(): %s', $function_name, $message ); + } - if ( E_USER_ERROR === $error_level ) { - throw new WP_Exception( $message ); + if ( E_USER_ERROR === $error_level ) { + if ( ! class_exists( '\WP_Exception' ) ) { + class WP_Exception extends \Exception { + } } - - trigger_error( $message, $error_level ); + throw new WP_Exception( $message ); } + + trigger_error( $message, $error_level ); } -if ( ! function_exists( 'wp_kses_uri_attributes' ) ) { - function wp_kses_uri_attributes() { - return array(); +function wp_kses_uri_attributes() { + if ( function_exists( '\\wp_kses_uri_attributes' ) ) { + return call_user_func_array( '\\wp_kses_uri_attributes', func_get_args() ); } + return array(); } -if ( ! function_exists( '__' ) ) { - function __( $input ) { - return $input; +function __( $input ) { + if ( function_exists( '\\__' ) ) { + return call_user_func_array( '\\__', func_get_args() ); } + return $input; } -if ( ! function_exists( 'esc_attr' ) ) { - function esc_attr( $input ) { - return htmlspecialchars( $input ); +function esc_attr( $input ) { + if ( function_exists( '\\esc_attr' ) ) { + return call_user_func_array( '\\esc_attr', func_get_args() ); } + return htmlspecialchars( $input ); } -if ( ! function_exists( 'esc_html' ) ) { - function esc_html( $input ) { - return htmlspecialchars( $input ); +function esc_html( $input ) { + if ( function_exists( '\\esc_html' ) ) { + return call_user_func_array( '\\esc_html', func_get_args() ); } + return htmlspecialchars( $input ); } -if ( ! function_exists( 'esc_url' ) ) { - function esc_url( $url ) { - return htmlspecialchars( $url ); +function esc_url( $url ) { + if ( function_exists( '\\esc_url' ) ) { + return call_user_func_array( '\\esc_url', func_get_args() ); } + return htmlspecialchars( $url ); } -if ( ! function_exists( 'add_filter' ) ) { - function add_filter( $hook_name, $callback, $priority = 10, $accepted_args = 1 ) { - global $wp_filter; - if ( ! isset( $wp_filter ) ) { - $wp_filter = array(); - } - if ( ! isset( $wp_filter[ $hook_name ] ) ) { - $wp_filter[ $hook_name ] = array(); - } - if ( ! isset( $wp_filter[ $hook_name ][ $priority ] ) ) { - $wp_filter[ $hook_name ][ $priority ] = array(); - } - $wp_filter[ $hook_name ][ $priority ][] = array( - 'function' => $callback, - 'accepted_args' => $accepted_args, - ); +function add_filter( $hook_name, $callback, $priority = 10, $accepted_args = 1 ) { + global $wp_filter; + if ( function_exists( '\\add_filter' ) ) { + return call_user_func_array( '\\add_filter', func_get_args() ); + } - return true; + if ( ! isset( $wp_filter ) ) { + $wp_filter = array(); + } + if ( ! isset( $wp_filter[ $hook_name ] ) ) { + $wp_filter[ $hook_name ] = array(); + } + if ( ! isset( $wp_filter[ $hook_name ][ $priority ] ) ) { + $wp_filter[ $hook_name ][ $priority ] = array(); } + $wp_filter[ $hook_name ][ $priority ][] = array( + 'function' => $callback, + 'accepted_args' => $accepted_args, + ); + + return true; } -if ( ! function_exists( 'add_action' ) ) { - function add_action( $hook_name, $callback, $priority = 10, $accepted_args = 1 ) { - return add_filter( $hook_name, $callback, $priority, $accepted_args ); +function add_action( $hook_name, $callback, $priority = 10, $accepted_args = 1 ) { + if ( function_exists( '\\add_action' ) ) { + return call_user_func_array( '\\add_action', func_get_args() ); } + return add_filter( $hook_name, $callback, $priority, $accepted_args ); } -if ( ! function_exists( 'apply_filters' ) ) { - function apply_filters( $hook_name, $value ) { - global $wp_filter; - if ( ! isset( $wp_filter[ $hook_name ] ) ) { - return $value; - } - $args = func_get_args(); - array_shift( $args ); // Remove hook name - - ksort( $wp_filter[ $hook_name ] ); - foreach ( $wp_filter[ $hook_name ] as $priority => $functions ) { - foreach ( $functions as $function ) { - $args[0] = $value; - $value = call_user_func_array( $function['function'], array_slice( $args, 0, $function['accepted_args'] ) ); - } - } +function apply_filters( $hook_name, $value ) { + global $wp_filter; + if ( function_exists( '\\apply_filters' ) ) { + return call_user_func_array( '\\apply_filters', func_get_args() ); + } + if ( ! isset( $wp_filter[ $hook_name ] ) ) { return $value; } -} + $args = func_get_args(); + array_shift( $args ); // Remove hook name -if ( ! function_exists( 'do_action' ) ) { - function do_action( $hook_name ) { - global $wp_filter; - if ( ! isset( $wp_filter[ $hook_name ] ) ) { - return; - } - $args = func_get_args(); - array_shift( $args ); // Remove hook name - - ksort( $wp_filter[ $hook_name ] ); - foreach ( $wp_filter[ $hook_name ] as $priority => $functions ) { - foreach ( $functions as $function ) { - call_user_func_array( $function['function'], array_slice( $args, 0, $function['accepted_args'] ) ); - } + ksort( $wp_filter[ $hook_name ] ); + foreach ( $wp_filter[ $hook_name ] as $priority => $functions ) { + foreach ( $functions as $function ) { + $args[0] = $value; + $value = call_user_func_array( $function['function'], array_slice( $args, 0, $function['accepted_args'] ) ); } } + + return $value; } -if ( ! function_exists( 'parse_blocks' ) ) { - function parse_blocks( $input ) { - $parser = new WP_Block_Parser(); +function do_action( $hook_name ) { + global $wp_filter; + if ( function_exists( '\\do_action' ) ) { + return call_user_func_array( '\\do_action', func_get_args() ); + } - return $parser->parse( $input ); + if ( ! isset( $wp_filter[ $hook_name ] ) ) { + return; } -} + $args = func_get_args(); + array_shift( $args ); // Remove hook name -if ( ! function_exists( 'serialize_blocks' ) ) { - function serialize_blocks( $blocks ) { - return implode( '', array_map( 'serialize_block', $blocks ) ); + ksort( $wp_filter[ $hook_name ] ); + foreach ( $wp_filter[ $hook_name ] as $priority => $functions ) { + foreach ( $functions as $function ) { + call_user_func_array( $function['function'], array_slice( $args, 0, $function['accepted_args'] ) ); + } } } -if ( ! function_exists( 'serialize_block' ) ) { - function serialize_block( $block ) { - $block_content = ''; - - $index = 0; - foreach ( $block['innerContent'] as $chunk ) { - $block_content .= is_string( $chunk ) ? $chunk : serialize_block( $block['innerBlocks'][ $index ++ ] ); - } +function parse_blocks( $input ) { + if ( function_exists( '\\parse_blocks' ) ) { + return call_user_func_array( '\\parse_blocks', func_get_args() ); + } + $parser = new \WordPress\BlockParser\WP_Block_Parser(); - if ( ! is_array( $block['attrs'] ) ) { - $block['attrs'] = array(); - } + return $parser->parse( $input ); +} - return get_comment_delimited_block_content( - $block['blockName'], - $block['attrs'], - $block_content - ); +function serialize_blocks( $blocks ) { + if ( function_exists( '\\serialize_blocks' ) ) { + return call_user_func_array( '\\serialize_blocks', func_get_args() ); } + return implode( '', array_map( 'serialize_block', $blocks ) ); } -if ( ! function_exists( 'get_comment_delimited_block_content' ) ) { - function get_comment_delimited_block_content( $block_name, $block_attributes, $block_content ) { - if ( is_null( $block_name ) ) { - return $block_content; - } - - $serialized_block_name = strip_core_block_namespace( $block_name ); - $serialized_attributes = empty( $block_attributes ) ? '' : serialize_block_attributes( $block_attributes ) . ' '; +function serialize_block( $block ) { + if ( function_exists( '\\serialize_block' ) ) { + return call_user_func_array( '\\serialize_block', func_get_args() ); + } + $block_content = ''; - if ( empty( $block_content ) ) { - return sprintf( '', $serialized_block_name, $serialized_attributes ); - } + $index = 0; + foreach ( $block['innerContent'] as $chunk ) { + $block_content .= is_string( $chunk ) ? $chunk : serialize_block( $block['innerBlocks'][ $index ++ ] ); + } - return sprintf( - '%s', - $serialized_block_name, - $serialized_attributes, - $block_content, - $serialized_block_name - ); + if ( ! is_array( $block['attrs'] ) ) { + $block['attrs'] = array(); } + + return get_comment_delimited_block_content( + $block['blockName'], + $block['attrs'], + $block_content + ); } -if ( ! function_exists( 'strip_core_block_namespace' ) ) { - function strip_core_block_namespace( $block_name = null ) { - if ( is_string( $block_name ) && strncmp( $block_name, 'core/', strlen( 'core/' ) ) === 0 ) { - return substr( $block_name, 5 ); - } +function get_comment_delimited_block_content( $block_name, $block_attributes, $block_content ) { + if ( function_exists( '\\get_comment_delimited_block_content' ) ) { + return call_user_func_array( '\\get_comment_delimited_block_content', func_get_args() ); + } + if ( is_null( $block_name ) ) { + return $block_content; + } + + $serialized_block_name = strip_core_block_namespace( $block_name ); + $serialized_attributes = empty( $block_attributes ) ? '' : serialize_block_attributes( $block_attributes ) . ' '; - return $block_name; + if ( empty( $block_content ) ) { + return sprintf( '', $serialized_block_name, $serialized_attributes ); } + + return sprintf( + '%s', + $serialized_block_name, + $serialized_attributes, + $block_content, + $serialized_block_name + ); } +function strip_core_block_namespace( $block_name = null ) { + if ( function_exists( '\\strip_core_block_namespace' ) ) { + return call_user_func_array( '\\strip_core_block_namespace', func_get_args() ); + } + if ( is_string( $block_name ) && strncmp( $block_name, 'core/', strlen( 'core/' ) ) === 0 ) { + return substr( $block_name, 5 ); + } -if ( ! function_exists( 'serialize_block_attributes' ) ) { - function serialize_block_attributes( $block_attributes ) { - $encoded_attributes = json_encode( $block_attributes, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE ); - $encoded_attributes = preg_replace( '/--/', '\\u002d\\u002d', $encoded_attributes ); - $encoded_attributes = preg_replace( '//', '\\u003e', $encoded_attributes ); - $encoded_attributes = preg_replace( '/&/', '\\u0026', $encoded_attributes ); - // Regex: /\\"/ - $encoded_attributes = preg_replace( '/\\\\"/', '\\u0022', $encoded_attributes ); + return $block_name; +} - return $encoded_attributes; +function serialize_block_attributes( $block_attributes ) { + if ( function_exists( '\\serialize_block_attributes' ) ) { + return call_user_func_array( '\\serialize_block_attributes', func_get_args() ); } + $encoded_attributes = json_encode( $block_attributes, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE ); + $encoded_attributes = preg_replace( '/--/', '\\u002d\\u002d', $encoded_attributes ); + $encoded_attributes = preg_replace( '//', '\\u003e', $encoded_attributes ); + $encoded_attributes = preg_replace( '/&/', '\\u0026', $encoded_attributes ); + // Regex: /\\"/ + $encoded_attributes = preg_replace( '/\\\\"/', '\\u0022', $encoded_attributes ); + + return $encoded_attributes; } diff --git a/components/XML/Tests/XMLProcessorTest.php b/components/XML/Tests/XMLProcessorTest.php index cf20183e..3b00ca2d 100644 --- a/components/XML/Tests/XMLProcessorTest.php +++ b/components/XML/Tests/XMLProcessorTest.php @@ -1486,7 +1486,7 @@ public function __construct( $xml ) { */ public function insert_after( $new_xml ) { $this->set_bookmark( 'here' ); - $this->lexical_updates[] = new WP_HTML_Text_Replacement( + $this->lexical_updates[] = new \WordPress\HTML\WP_HTML_Text_Replacement( $this->bookmarks['here']->start + $this->bookmarks['here']->length, 0, $new_xml diff --git a/components/XML/XMLDecoder.php b/components/XML/XMLDecoder.php index a68f7bdf..524b28b8 100644 --- a/components/XML/XMLDecoder.php +++ b/components/XML/XMLDecoder.php @@ -2,7 +2,7 @@ namespace WordPress\XML; -use WP_HTML_Decoder; +use WordPress\HTML\WP_HTML_Decoder; /** * XML API: WP_XML_Decoder class diff --git a/components/XML/XMLProcessor.php b/components/XML/XMLProcessor.php index 3f70f707..639a8165 100644 --- a/components/XML/XMLProcessor.php +++ b/components/XML/XMLProcessor.php @@ -2,10 +2,12 @@ namespace WordPress\XML; -use WP_HTML_Span; -use WP_HTML_Text_Replacement; +use WordPress\HTML\WP_HTML_Span; +use WordPress\HTML\WP_HTML_Text_Replacement; use function WordPress\Encoding\utf8_codepoint_at; +use function WordPress\Polyfill\_doing_it_wrong; +use function WordPress\Polyfill\__; /** * XML API: XMLProcessor class @@ -624,7 +626,7 @@ class XMLProcessor { * // sourced from the lazily-parsed XML recognizer. * $start = $attributes['src']->start; * $length = $attributes['src']->length; - * $modifications[] = new WP_HTML_Text_Replacement( $start, $length, $new_value ); + * $modifications[] = new \WordPress\HTML\WP_HTML_Text_Replacement( $start, $length, $new_value ); * * // Correspondingly, something like this will appear in this array. * $lexical_updates = array( @@ -3491,7 +3493,7 @@ public function set_modifiable_text( $new_value ) { switch ( $this->parser_state ) { case self::STATE_TEXT_NODE: case self::STATE_COMMENT: - $this->lexical_updates[] = new WP_HTML_Text_Replacement( + $this->lexical_updates[] = new \WordPress\HTML\WP_HTML_Text_Replacement( $this->text_starts_at, $this->text_length, // @TODO: Audit this in details. Is this too naive? Or is it actually safe? @@ -3501,7 +3503,7 @@ public function set_modifiable_text( $new_value ) { return true; case self::STATE_CDATA_NODE: - $this->lexical_updates[] = new WP_HTML_Text_Replacement( + $this->lexical_updates[] = new \WordPress\HTML\WP_HTML_Text_Replacement( $this->text_starts_at, $this->text_length, // @TODO: Audit this in details. Is this too naive? Or is it actually safe? @@ -3598,7 +3600,7 @@ public function set_attribute( $namespace, $local_name, $value ) { * Result: */ $existing_attribute = $this->attributes[ $name ]; - $this->lexical_updates[ $name ] = new WP_HTML_Text_Replacement( + $this->lexical_updates[ $name ] = new \WordPress\HTML\WP_HTML_Text_Replacement( $existing_attribute->start, $existing_attribute->length, $updated_attribute @@ -3616,7 +3618,7 @@ public function set_attribute( $namespace, $local_name, $value ) { * * Result: */ - $this->lexical_updates[ $name ] = new WP_HTML_Text_Replacement( + $this->lexical_updates[ $name ] = new \WordPress\HTML\WP_HTML_Text_Replacement( $this->tag_name_starts_at + $this->tag_name_length, 0, ' ' . $updated_attribute @@ -3673,7 +3675,7 @@ public function remove_attribute( $namespace, $local_name ) { * * Result: */ - $this->lexical_updates[ $name ] = new WP_HTML_Text_Replacement( + $this->lexical_updates[ $name ] = new \WordPress\HTML\WP_HTML_Text_Replacement( $this->attributes[ $name ]->start, $this->attributes[ $name ]->length, '' @@ -4474,5 +4476,5 @@ private function bail( string $message, $reason = self::ERROR_UNSUPPORTED ) { * * @access private */ - const CONSTRUCTOR_UNLOCK_CODE = 'Use WP_HTML_Processor::create_fragment() instead of calling the class constructor directly.'; + const CONSTRUCTOR_UNLOCK_CODE = 'Use \WordPress\HTML\WP_HTML_Processor::create_fragment() instead of calling the class constructor directly.'; } diff --git a/composer.json b/composer.json index 51f88cf0..c87ad316 100644 --- a/composer.json +++ b/composer.json @@ -69,7 +69,9 @@ "WordPress\\Zip\\": "components/Zip/", "WordPress\\HttpServer\\": "components/HttpServer/", "WordPress\\CORSProxy\\": "components/CORSProxy/", - "WordPress\\Git\\": "components/Git/" + "WordPress\\Git\\": "components/Git/", + "WordPress\\HTML\\": "components/HTML/", + "WordPress\\BlockParser\\": "components/BlockParser/" } }, "scripts": { diff --git a/debug.log b/debug.log new file mode 100644 index 00000000..e69de29b diff --git a/examples/create-wp-site/import-markdown-directory.php b/examples/create-wp-site/import-markdown-directory.php index 348737a2..27c6f805 100644 --- a/examples/create-wp-site/import-markdown-directory.php +++ b/examples/create-wp-site/import-markdown-directory.php @@ -19,6 +19,8 @@ use function WordPress\DataLiberation\URL\is_child_url_of; use function WordPress\Filesystem\wp_join_unix_paths; +use function WordPress\Polyfill\add_action; +use function WordPress\Polyfill\add_filter; if ( file_exists( '/wordpress/wp-load.php' ) ) { require_once '/wordpress/wp-load.php'; diff --git a/plugins/data-liberation/plugin.php b/plugins/data-liberation/plugin.php index 038df052..69c1d63c 100644 --- a/plugins/data-liberation/plugin.php +++ b/plugins/data-liberation/plugin.php @@ -27,6 +27,7 @@ require_once __DIR__ . '/../../vendor/autoload.php'; } +include __DIR__ . '/basic-ui/admin-page.php'; /** * Don't run KSES on the attribute values during the import. diff --git a/plugins/next-gen-importer/admin-page.php b/plugins/next-gen-importer/admin-page.php new file mode 100644 index 00000000..22a94fef --- /dev/null +++ b/plugins/next-gen-importer/admin-page.php @@ -0,0 +1,910 @@ + Import + register_importer( + 'custom-importer', + 'Custom Importer', + 'Import content from a custom format using an interactive progress UI.', + 'custom_importer_admin_page' + ); +}); + +add_filter('cron_schedules', function($s) { + $s['ng_importer__every_1_minute'] = [ + 'interval' => 1, + 'display' => 'Every 1 minute' + ]; + return $s; +}); + +register_activation_hook(__FILE__, function() { + if (! wp_next_scheduled('ng_importer_next_import_step')) { + wp_schedule_event(time() - 1, 'ng_importer__every_1_minute', 'ng_importer_next_import_step'); + } +}); + +register_deactivation_hook(__FILE__, function() { + $ts = wp_next_scheduled('ng_importer_next_import_step'); + if ($ts) { + wp_unschedule_event($ts, 'ng_importer_next_import_step'); + } +}); + +/** + * Get or initialize the complete importer state + */ +function custom_importer_get_state() { + $session = ImportSession::get_active(); + if ( ! $session ) { + return array( + 'importState' => 'idle', + 'authorsInFile' => array(), + 'downloadAttachments' => false, + 'allowedDomains' => '', + 'authorMappings' => array(), + ); + } + $logs = []; + $log_stream = $session->stream_log_file(); + if($log_stream) { + // Get the first 64KB of the log file. + $bytes_to_read = $log_stream->pull(64 * 1024); + $log_content = $log_stream->consume($bytes_to_read); + $logs = explode("\n", $log_content); + if($log_stream->length() > $log_stream->tell()) { + $logs[] = "... " . ($log_stream->length() - $log_stream->tell()) . " bytes more ..."; + // @TODO: Add a button to download the entire log + } + $log_stream->close_reading(); + } + $state = array( + 'authorsInFile' => array_values($session->get_meta_by_key('authorsInFile')), + 'downloadAttachments' => $session->get_meta_by_key('downloadAttachments'), + 'allowedDomains' => $session->get_meta_by_key('allowedDomains'), + 'authorMappings' => $session->get_meta_by_key('authorMappings') ?? [], + 'logs' => $logs, + // ...$session->get_metadata(), + ); + switch ($session->get_stage()) { + case StreamImporter::STAGE_INITIAL: + case StreamImporter::STAGE_INDEX_ENTITIES: + $state['importState'] = 'indexing'; + return $state; + case StreamImporter::STAGE_CONFIGURE_IMPORT: + $state['importState'] = 'configure'; + return $state; + case StreamImporter::STAGE_FRONTLOAD_ASSETS: + $state['importState'] = 'downloading'; + $state['importProgress'] = $session->count_unfinished_frontloading_stubs(); + $state['importTotal'] = $session->count_frontloading_stubs(); + return $state; + case StreamImporter::STAGE_IMPORT_ENTITIES: + $state['importState'] = 'inserting'; + $state['importProgress'] = $session->count_imported_entities(); + $state['importTotal'] = $session->get_total_number_of_entities(); + return $state; + case StreamImporter::STAGE_FINISHED: + $state['importState'] = 'completed'; + // Stats + $state['entitiesCounts'] = $session->count_imported_entities(); + $state['frontloadingStats'] = $session->get_frontloading_stats(); + return $state; + } +} + + +// Callback to render the Importer admin page +function custom_importer_admin_page() { + if ( ! current_user_can('import') ) { + wp_die(__('You are not allowed to import.', 'custom-importer')); + } + + // Get PHP file upload limits + $max_upload_size = wp_max_upload_size(); + $max_upload_size_formatted = size_format($max_upload_size); + + // Get current state using centralized function + $current_state = custom_importer_get_state(); + + // Enqueue the interactivity store script (as an ES module) for this page + wp_enqueue_script_module( + 'custom-importer-ui', + plugin_dir_url(__FILE__) . 'importer-ui.js', + array('@wordpress/interactivity'), + '1.0.0' + ); + + // Pass initial state from PHP to JS via an inline script before the module + $initial_state = array_merge( + array( + 'maxFileSize' => $max_upload_size, + 'maxFileSizeFormatted' => $max_upload_size_formatted, + 'restUrl' => rest_url('custom-importer/v1/'), + 'restNonce' => wp_create_nonce('wp_rest'), + ), + $current_state + ); + + // @TODO: What if we have 100s of users? Do an autocompleted input field. + $wp_users = get_users(array( + 'fields' => array('ID', 'display_name', 'user_login'), + 'role__in' => array('editor', 'administrator'), + )); + + wp_interactivity_state( + 'custom-importer', + array_merge( + $initial_state, + array( + 'wordpressUsers' => array_map(function($user) { + return array('ID' => $user->ID, 'label' => $user->display_name . ' (' . $user->user_login . ')'); + }, $wp_users), + 'isSelectStage' => function () { + $state = custom_importer_get_state(); + return $state['importState'] === 'idle'; + }, + 'isUploadStage' => function () { + // Upload stage is handled by JavaScript, not server-side state + return false; + }, + 'isIndexingStage' => function () { + $state = custom_importer_get_state(); + return $state['importState'] === 'indexing'; + }, + 'isConfigureStage' => function () { + $state = custom_importer_get_state(); + return $state['importState'] === 'configure'; + }, + 'isImportStage' => function () { + $state = custom_importer_get_state(); + return in_array($state['importState'], ['downloading', 'inserting']); + }, + 'isCompletedStage' => function () { + $state = custom_importer_get_state(); + return $state['importState'] === 'completed'; + }, + + 'hasAuthorsInFile' => function () { + $state = custom_importer_get_state(); + return count($state['authorsInFile']) > 0; + }, + 'isAuthorMappingKeep' => function () { + $state = custom_importer_get_state(); + $context = wp_interactivity_get_context(); + $login = $context['author']['author_login']; + if(!isset($state['authorMappings'][$login])) { + // Default to "keep" if no mapping is found. + return true; + } + return $state['authorMappings'][$login]['type'] === 'keep'; + }, + 'isAuthorMappingNew' => function () { + $state = custom_importer_get_state(); + $context = wp_interactivity_get_context(); + $login = $context['author']['author_login']; + if(!isset($state['authorMappings'][$login])) { + return false; + } + return $state['authorMappings'][$login]['type'] === 'new'; + }, + 'isAuthorMappingExisting' => function () { + $state = custom_importer_get_state(); + $context = wp_interactivity_get_context(); + $login = $context['author']['author_login']; + if(!isset($state['authorMappings'][$login])) { + return false; + } + return $state['authorMappings'][$login]['type'] === 'existing'; + }, + 'authorMappingRadioName' => function () { + $context = wp_interactivity_get_context(); + $login = $context['author']['author_login']; + return 'author_mapping_type[' . $login . ']'; + }, + ) + ) + ); + + // Output the admin page HTML (server-rendered) + ob_start(); + ?> + +
+
+

+

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

+ +

+
+ + +
+

+ + +

+

+ + +

+

+ + +

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

+ +
+ +

+ + % +

+
+
+ + +
+

+ +
+

+

+ + +

+

+ + +

+
+ +
+
+ + +
+

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

+ +
+ +
+

+

+ +

+ +
+ +

+
+
+ + +
+

+

+

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

+ +

+
+ + +
+ +

+ +

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

+
+
    + +
+
+
+
+ + +
+

+

+ +

+

+ +

+

+

    +
  • + +
      +
    • + + +
    • +
    • + + +
    • +
    +
  • +
  • + +
      + +
    +
  • + +
+

+ +
+

+
+
    + +
+
+
+ +
+ +
+
+ +
+ 'GET', + 'callback' => 'custom_importer_get_state_rest', + 'permission_callback' => function () { + return current_user_can('import'); + } + )); + + // Upload file endpoint + register_rest_route('custom-importer/v1', '/upload', array( + 'methods' => 'POST', + 'callback' => 'custom_importer_upload_file_rest', + 'permission_callback' => function () { + return current_user_can('import'); + } + )); + + // Start import endpoint + register_rest_route('custom-importer/v1', '/start', array( + 'methods' => 'POST', + 'callback' => 'custom_importer_save_config', + 'permission_callback' => function () { + return current_user_can('import'); + } + )); + + // Consolidated next import step endpoint + register_rest_route('custom-importer/v1', '/next-step', array( + 'methods' => 'GET', + 'callback' => 'ng_importer_next_import_step', + 'permission_callback' => function () { + return current_user_can('import'); + } + )); + + // Cancel current import endpoint + register_rest_route('custom-importer/v1', '/cancel', array( + 'methods' => 'POST', + 'callback' => 'custom_importer_cancel_current_import_rest', + 'permission_callback' => function () { + return current_user_can('import'); + } + )); +}); + +// REST API handler for getting state +function custom_importer_get_state_rest() { + return rest_ensure_response(custom_importer_get_state()); +} + +// REST API handler for file upload +function custom_importer_upload_file_rest($request) { + if ( empty($_FILES['import_file']) ) { + return new WP_Error('no_file', __('No file uploaded.', 'custom-importer'), array('status' => 400)); + } + + $file = $_FILES['import_file']; + + // Validate file size + $max_size = wp_max_upload_size(); + if ( $file['size'] > $max_size ) { + return new WP_Error('file_too_large', sprintf( + __('File is too large. Maximum size is %s.', 'custom-importer'), + size_format($max_size) + ), array('status' => 400)); + } + + // Validate file type + $allowed_types = array('text/xml', 'application/xml'); + $file_type = wp_check_filetype($file['name']); + if ( + (false !== $file_type['type'] && ! in_array($file_type['type'], $allowed_types)) && + (false !== $file_type['ext'] && ! in_array($file_type['ext'], array('xml', 'wxr'))) + ) { + // @TODO: this doesn't work that well. It rejected a valid WXR file with xml extension. + return new WP_Error('invalid_file_type', __('Invalid file type. Please upload an XML or WXR file.', 'custom-importer'), array('status' => 400)); + } + + // Move uploaded file to plugin directory as last-uploaded-import-file.php + $plugin_dir = dirname(__FILE__); + $target_file = $plugin_dir . '/last-uploaded-import-file.php'; + + $uploaded_data_stream = FileReadStream::from_path($file['tmp_name']); + $target_file_stream = FileWriteStream::from_path($target_file); + $php_guard = "\n"; + $target_file_stream->append_bytes($php_guard); + try { + pipe_stream($uploaded_data_stream, $target_file_stream); + } catch (Exception $e) { + return new WP_Error('save_failed', __('Failed to save uploaded file.', 'custom-importer'), array('status' => 500)); + } finally { + $target_file_stream->close_writing(); + $uploaded_data_stream->close_reading(); + } + + $log_file = $plugin_dir . '/last-import-session-log.php'; + if(file_exists($log_file)) { + @unlink($log_file); + } + + // Create an import session for the uploaded file – to be used by the ng-import-next-step.php job. + // @TODO: Harmonize this with the interactivity API state + $session = ImportSession::create(array( + 'data_source' => 'wxr_file', + 'file_name' => $target_file, + 'log_file' => $log_file, + )); + $session->set_meta_by_key('authorsInFile', array()); + + // Update state with file details + $file_details = array( + 'name' => $file['name'], + 'size' => $file['size'], + 'uploaded_at' => time(), + 'path' => $target_file, + ); + $session->set_meta_by_key('fileDetails', $file_details); + + // Return the complete updated state + return rest_ensure_response(custom_importer_get_state()); +} + + +add_action('ng_importer_next_import_step', 'ng_importer_next_import_step'); +function ng_importer_next_import_step() { + error_log('[ng_importer_next_import_step] running cron job'); + + $lock_key = 'ng_importer_next_import_step_lock'; + if ( get_transient($lock_key) ) return; + set_transient($lock_key, 1, 25); + + try { + do_ng_importer_next_import_step(); + } finally { + delete_transient($lock_key); + } + return custom_importer_get_state(); +} + + + +// REST API handler for starting import +function custom_importer_save_config($request) { + $active_import = ng_importer_get_active(); + if ( ! $active_import ) { + return new WP_Error('no_active_import', __('No active import session.', 'custom-importer'), array('status' => 400)); + } + $importer = $active_import['importer']; + $session = $active_import['session']; + + // Check if we have a file and are in configure stage + if ($session->get_stage() !== StreamImporter::STAGE_CONFIGURE_IMPORT) { + return new WP_Error('invalid_state', __('Not in configure stage. ' . $session->get_stage(), 'custom-importer'), array('status' => 400)); + } + + $file_path = $session->get_meta_by_key('fileDetails')['path']; + if ( ! file_exists($file_path) ) { + return new WP_Error('file_not_found', __('Import file not found.', 'custom-importer'), array('status' => 404)); + } + + // Collect form inputs + $download_attach = $request->get_param('download_attachments') === '1' || $request->get_param('download_attachments') === true; + $allowed_domains = sanitize_text_field($request->get_param('allowed_domains')); + + // Process author mappings + $author_mappings_raw = $request->get_param('author_mappings'); + $author_mappings = array(); + if (is_string($author_mappings_raw)) { + $author_mappings = json_decode(stripslashes($author_mappings_raw), true); + } elseif (is_array($author_mappings_raw)) { + $author_mappings = $author_mappings_raw; + } + + $session->set_meta_by_key('downloadAttachments', $download_attach); + $session->set_meta_by_key('allowedDomains', $allowed_domains); + $session->set_meta_by_key('authorMappings', $author_mappings); + + // No-op for STAGE_CONFIGURE_IMPORT. It only tells the importer what's the + // next stage. + $importer->next_step(); + if ( ! $importer->advance_to_next_stage() ) { + return new WP_Error('advance_to_next_stage_failed', __('Failed to advance to next import stage.', 'custom-importer'), array('status' => 500)); + } + $session->set_stage( $importer->get_stage() ); + $session->set_reentrancy_cursor( $importer->get_reentrancy_cursor() ); + + return rest_ensure_response(custom_importer_get_state()); +} + +// REST API handler for canceling current import +function custom_importer_cancel_current_import_rest() { + $state = custom_importer_get_state(); + + // Delete the uploaded file if it exists + if (isset($state['fileDetails']) && !empty($state['fileDetails']['path'])) { + $file_path = $state['fileDetails']['path']; + if (file_exists($file_path)) { + unlink($file_path); + } + } + + // Reset to initial state + $session = ImportSession::get_active(); + if($session) { + $session->archive(); + } + + return rest_ensure_response(custom_importer_get_state()); +} diff --git a/plugins/next-gen-importer/importer-ui.js b/plugins/next-gen-importer/importer-ui.js new file mode 100644 index 00000000..1715e946 --- /dev/null +++ b/plugins/next-gen-importer/importer-ui.js @@ -0,0 +1,524 @@ +// importer-ui.js - Interactivity API store for the importer UI (ES Module) +import { store, getContext, getElement } from '@wordpress/interactivity'; + +let selectedFile = null; // will hold the selected file + +const { state, actions } = store('custom-importer', { + state: { + // Import state - single source of truth + importState: window.importerInitialState?.importState || 'idle', + + // File selection state + hasSelectedFile: false, + selectedFileName: '', + selectedFileSize: 0, + selectedFileSizeFormatted: '', + maxFileSize: window.importerInitialState?.maxFileSize || 0, + maxFileSizeFormatted: + window.importerInitialState?.maxFileSizeFormatted || '', + + // Upload state + uploading: false, + uploadProgress: 0, + uploadError: '', + + // File and import data + fileDetails: window.importerInitialState?.fileDetails || null, + authorsInFile: window.importerInitialState?.authorsInFile || [], + + // Import configuration state + downloadAttachments: true, + allowedDomains: '', + authorMappings: {}, + // wordpressUsers: [], + + // Import execution state + importProgress: window.importerInitialState?.importProgress || 0, + importTotal: window.importerInitialState?.importTotal || 0, + importError: window.importerInitialState?.importError || '', + importStatusMessage: + window.importerInitialState?.importStatusMessage || '', + importErrors: window.importerInitialState?.importErrors || [], + + // Computed states for stage visibility + get isSelectStage() { + return state.importState === 'idle'; + }, + get isUploadStage() { + return state.importState === 'uploading'; + }, + get isIndexingStage() { + return state.importState === 'indexing'; + }, + get isConfigureStage() { + return state.importState === 'configure'; + }, + get isImportStage() { + return ['downloading', 'inserting'].includes(state.importState); + }, + get isCompletedStage() { + return state.importState === 'completed'; + }, + get canUpload() { + return state.hasSelectedFile && !state.uploading; + }, + get hasAuthorsInFile() { + return state.authorsInFile && state.authorsInFile.length > 0; + }, + get hasImportErrors() { + return state.importErrors && state.importErrors.length > 0; + }, + get importStageLabel() { + if (state.importState === 'downloading') { + return 'Downloading images...'; + } else if (state.importState === 'inserting') { + return 'Inserting entities...'; + } else if (state.importState === 'completed') { + return 'Import completed'; + } + return 'Processing...'; + }, + get importProgressLabel() { + if (state.importState === 'downloading') { + return `Downloaded ${state.importProgress} / ${state.importTotal} images`; + } else if (state.importState === 'inserting') { + return `Processed ${state.importProgress} / ${state.importTotal} entities`; + } else if (state.importState === 'completed') { + return 'Import completed successfully'; + } + return `Progress: ${state.importProgress} / ${state.importTotal}`; + }, + + get isAuthorMappingKeep() { + const context = getContext(); + if (!context) { + return false; + } + const { author } = context; + // Default to "keep" if no mapping is found. + if(!state.authorMappings[author.author_login]) { + return true; + } + return state.authorMappings[author.author_login].type === 'keep'; + }, + get isAuthorMappingNew() { + const context = getContext(); + if (!context) { + return false; + } + const { author } = context; + return state.authorMappings[author.author_login]?.type === 'new'; + }, + get isAuthorMappingExisting() { + const context = getContext(); + if (!context) { + return false; + } + const { author } = context; + return ( + state.authorMappings[author.author_login]?.type === 'existing' + ); + }, + + get getAuthorMappingNewLogin() { + const context = getContext(); + if (!context) { + return ''; + } + const { author } = context; + return state.authorMappings[author.author_login]?.newLogin || ''; + }, + get authorMappingRadioName() { + const context = getContext(); + if (!context) { + return ''; + } + const { author } = context; + return `author_mapping_type[${author.author_login}]`; + }, + }, + + callbacks: { + /** + * Continuously ask the server to do the next import step once the import is running. + * + * Why not just rely on wp-cron? + * + * Because we want a snappy user experience when the user is interacting with the UI. + * wp-cron may not move us forward for the next 10 or 60 minutes. It runs at most once + * a minute, it could be preoccupied with other tasks, etc. We still schedule a wp-cron + * task, but we also have a dedicated endpoint that performs the next step immediately. + * It safe to run anytime and doesn't conflict with a concurrent wp-cron task. + */ + async continuouslyTriggerNextImportStep() { + // @TODO: Resolve race conditions between: + // * UI actions and periodic state updates. + + setTimeout(async () => { + while(true) { + if ( + state.importState === 'indexing' || + state.importState === 'downloading' || + state.importState === 'inserting' + ) { + try { + const response = await fetch( + `${window.importerInitialState.restUrl}state`, + { + headers: { + 'X-WP-Nonce': window.importerInitialState.restNonce, + }, + } + ); + const nextState = await response.json(); + Object.assign(state, nextState); + } catch (e) { + console.error('Error fetching state:', e); + } + } + await new Promise((resolve) => setTimeout(resolve, 1000)); + } + + await new Promise((resolve) => setTimeout(resolve, 1000)); + }, 0); + + while (true) { + if ( + state.importState === 'indexing' || + state.importState === 'downloading' || + state.importState === 'inserting' + ) { + try { + const response = await fetch( + `${window.importerInitialState.restUrl}next-step`, + { + headers: { + 'X-WP-Nonce': window.importerInitialState.restNonce, + }, + } + ); + const nextState = await response.json(); + // Object.assign(state, nextState); + } catch (e) { + console.error('Error executing the next import step:', e); + await new Promise((resolve) => setTimeout(resolve, 5000)); + } + } + + await new Promise((resolve) => setTimeout(resolve, 1000)); + } + }, + }, + + actions: { + // Trigger file input dialog on click of drop zone + triggerFileInput: () => { + const fileInput = document.getElementById('import_file'); + if (fileInput) fileInput.click(); + }, + + // Handle file input change + handleFileInputChange: (event) => { + const files = event.target.files; + if (files && files.length) { + actions.selectFile(files[0]); + } + }, + + // Handle drag over/enter events on drop zone (highlight) + handleDragOver: (event) => { + event.preventDefault(); + event.currentTarget.classList.add('drag-over'); + }, + + handleDragLeave: (event) => { + event.currentTarget.classList.remove('drag-over'); + }, + + // Handle file drop on drop zone + handleFileDrop: (event) => { + event.preventDefault(); + event.currentTarget.classList.remove('drag-over'); + const files = event.dataTransfer.files; + if (files && files.length) { + actions.selectFile(files[0]); + } + }, + + // Select a file and update state + selectFile: (file) => { + selectedFile = file; + state.hasSelectedFile = true; + state.selectedFileName = file.name; + state.selectedFileSize = file.size; + state.selectedFileSizeFormatted = actions.formatFileSize(file.size); + state.uploadError = ''; + }, + + // Format file size for display + formatFileSize: (bytes) => { + if (bytes === 0) return '0 Bytes'; + const k = 1024; + const sizes = ['Bytes', 'KB', 'MB', 'GB']; + const i = Math.floor(Math.log(bytes) / Math.log(k)); + return ( + parseFloat((bytes / Math.pow(k, i)).toFixed(2)) + ' ' + sizes[i] + ); + }, + + // Upload the selected file + uploadFile: async (event) => { + event?.preventDefault(); + if (!selectedFile || state.uploading || !state.canUpload) { + return; + } + // Immediately transition to upload stage + state.importState = 'uploading'; + state.uploading = true; + state.uploadProgress = 0; + state.uploadError = ''; + + const formData = new FormData(); + formData.append('import_file', selectedFile); + + try { + // Using XHR over fetch() to get progress events in all browsers. Safari doesn't + // support monitoring upload progress via fetch() ReadableStream. + const xhr = new XMLHttpRequest(); + xhr.upload.addEventListener('progress', (event) => { + if (event.lengthComputable) { + state.uploadProgress = Math.round( + (event.loaded / event.total) * 100 + ); + } + }); + xhr.addEventListener('load', () => { + state.uploading = false; + if (xhr.status === 200) { + try { + const response = JSON.parse(xhr.responseText); + // Check if it's a REST API error + if (response.code && response.message) { + state.uploadError = + response.message || 'Upload failed'; + state.importState = 'idle'; + return; + } + + // Update state directly with complete state from server + Object.assign(state, response); + + // Update the selected file info for the UI + if (state.fileDetails) { + state.selectedFileName = state.fileDetails.name; + state.selectedFileSize = state.fileDetails.size; + state.selectedFileSizeFormatted = + actions.formatFileSize( + state.fileDetails.size + ); + } + } catch (e) { + state.uploadError = 'Invalid server response'; + state.importState = 'idle'; + } + } else { + state.uploadError = `Upload failed with status ${xhr.status}`; + state.importState = 'idle'; + } + }); + xhr.addEventListener('error', () => { + state.uploading = false; + state.uploadError = 'Network error during upload'; + state.importState = 'idle'; + }); + + xhr.open( + 'POST', + `${window.importerInitialState.restUrl}upload` + ); + xhr.setRequestHeader( + 'X-WP-Nonce', + window.importerInitialState.restNonce + ); + xhr.send(formData); + } catch (error) { + state.uploading = false; + state.uploadError = 'Error: ' + error.message; + state.importState = 'idle'; + } + }, + + // Set author mapping new login value + setAuthorMappingNewLogin: (event) => { + const context = getContext(); + if (!context) { + return; + } + const { author } = context; + if (!state.authorMappings[author.author_login]) { + state.authorMappings[author.author_login] = {}; + } + state.authorMappings[author.author_login].newLogin = + event.target.value; + }, + + // Set author mapping type (keep, new, existing) - updated for Interactivity API + setAuthorMappingType: (event) => { + const context = getContext(); + const { author, mappingType } = context; + if (!state.authorMappings[author.author_login]) { + state.authorMappings[author.author_login] = {}; + } + state.authorMappings[author.author_login].type = mappingType; + }, + + // Set author mapping user ID for existing user + setAuthorMappingUserId: (event) => { + const { author_login } = getContext(); + if (!state.authorMappings[author_login]) { + state.authorMappings[author_login] = {}; + } + state.authorMappings[author_login].userId = event.target.value; + }, + + // Start the import process + startImport: async (event) => { + event?.preventDefault(); + + const requestBody = { + download_attachments: state.downloadAttachments ? '1' : '0', + allowed_domains: state.allowedDomains, + author_mappings: JSON.stringify(state.authorMappings), + }; + + try { + const response = await fetch( + `${window.importerInitialState.restUrl}start`, + { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + 'X-WP-Nonce': window.importerInitialState.restNonce, + }, + body: JSON.stringify(requestBody), + } + ); + + const result = await response.json(); + + // Check for REST API error + if (result.code && result.message) { + state.importError = + result.message || 'Failed to start import'; + state.importState = 'idle'; + return; + } + + // Update state directly with complete state from server + Object.assign(state, result); + } catch (error) { + state.importError = 'Error starting import: ' + error.message; + state.importState = 'idle'; + } + }, + + // Render import errors in the error log + renderImportErrors: () => { + const container = document.getElementById('import-error-list'); + if (!container || !state.importErrors.length) return; + + let html = ''; + state.importErrors.forEach((error, index) => { + const timestamp = error.timestamp + ? new Date(error.timestamp * 1000).toLocaleTimeString() + : ''; + html += ` +
+ + ${error.type || 'Error'}: ${error.message} + ${ + timestamp + ? `${timestamp}` + : '' + } +
+ `; + }); + container.innerHTML = html; + }, + + // Cancel current import/indexing process + cancelCurrentImport: () => { + console.log('Cancel button clicked'); + + // Reset to idle state and show cancellation message + state.importState = 'idle'; + state.uploading = false; + state.uploadProgress = 0; + state.hasSelectedFile = false; + state.selectFile = null; + // state.uploadError = 'Operation was canceled.'; + + // Clear indexing/import state + state.fileDetails = null; + state.importProgress = 0; + state.importTotal = 0; + state.importError = ''; + state.importStatusMessage = ''; + state.importErrors = []; + state.authorMappings = {}; + state.authorsInFile = []; + + // Keep file selection state so user can start again + // state.hasSelectedFile and selectedFile info remain intact + + // Clean up server-side asynchronously + fetch(`${window.importerInitialState.restUrl}cancel`, { + method: 'POST', + headers: { + 'X-WP-Nonce': window.importerInitialState.restNonce, + }, + }) + .then((response) => response.json()) + .then((result) => { + console.log('Cancel response:', result); + }) + .catch((error) => { + console.error('Cancel error:', error); + }); + }, + + // Toggle download attachments + setDownloadAttachments: (event) => { + state.downloadAttachments = event.target.checked; + }, + + // Set allowed domains + setAllowedDomains: (event) => { + state.allowedDomains = event.target.value; + }, + }, +}); + +// Initialize state from server if available (for page refresh scenarios) +if (window.importerInitialState?.fileDetails) { + // Ensure fileDetails object exists and format file size if not already formatted + if (state.fileDetails && !state.fileDetails.sizeFormatted) { + state.fileDetails.sizeFormatted = actions.formatFileSize( + state.fileDetails.size + ); + } + + // Set up selected file state if we have file details + if (state.fileDetails) { + state.hasSelectedFile = true; + state.selectedFileName = state.fileDetails.name; + state.selectedFileSize = state.fileDetails.size; + state.selectedFileSizeFormatted = + state.fileDetails.sizeFormatted || + actions.formatFileSize(state.fileDetails.size); + } +} + +// Make the store available globally for the dynamically generated HTML +window.customImporterStore = { state, actions }; diff --git a/plugins/next-gen-importer/last-import-session-log.php b/plugins/next-gen-importer/last-import-session-log.php new file mode 100644 index 00000000..df9db634 --- /dev/null +++ b/plugins/next-gen-importer/last-import-session-log.php @@ -0,0 +1,3 @@ + +Stage advanced from #initial to #index_entities +Stage advanced from #index_entities to #configure_import diff --git a/plugins/next-gen-importer/last-uploaded-import-file.php b/plugins/next-gen-importer/last-uploaded-import-file.php new file mode 100644 index 00000000..483fb8b8 --- /dev/null +++ b/plugins/next-gen-importer/last-uploaded-import-file.php @@ -0,0 +1,101120 @@ + + + + + + + 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/ + 156 + + _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 + + +
    +
    +
    + + + + + + + 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/ + 156 + + _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 + + +
    +
    +
    + + + + + + + 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/ + 156 + + _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 + + +
    +
    +
    + + + + + + + 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/ + 156 + + _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 + + +
    +
    +
    + + + + + + + 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/ + 156 + + _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 + + +
    +
    +
    + + + + + + + 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/ + 156 + + _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 + + +
    +
    +
    + + + + + + + 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/ + 156 + + _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 + + +
    +
    +
    + + + + + + + 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/ + 156 + + _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 + + +
    +
    +
    + + + + + + + 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/ + 156 + + _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 + + +
    +
    +
    + + + + + + + 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/ + 156 + + _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 + + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + 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:"";} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Export Datasets + http://localhost/ + Just another WordPress site + Sat, 16 Oct 2010 20:53:18 +0000 + en + 1.1 + http://localhost/ + http://localhost/ + + + 2 + john + johndoe@example.org + + + + + + + 3 + alpha + + + + + + 22 + clippable + + + + + 40 + post_tax + bieup + + + + + + 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 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Export Datasets + http://localhost/ + Just another WordPress site + Sat, 16 Oct 2010 20:53:18 +0000 + en + 1.1 + http://localhost/ + http://localhost/ + + + 2 + john + johndoe@example.org + + + + + + + 3 + alpha + + + + + + 22 + clippable + + + + + 40 + post_tax + bieup + + + + + + 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 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Export Datasets + http://localhost/ + Just another WordPress site + Sat, 16 Oct 2010 20:53:18 +0000 + en + 1.1 + http://localhost/ + http://localhost/ + + + 2 + john + johndoe@example.org + + + + + + + 3 + alpha + + + + + + 22 + clippable + + + + + 40 + post_tax + bieup + + + + + + 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/plugins/next-gen-importer/ng-import-next-step.php b/plugins/next-gen-importer/ng-import-next-step.php new file mode 100644 index 00000000..1ed2e28b --- /dev/null +++ b/plugins/next-gen-importer/ng-import-next-step.php @@ -0,0 +1,203 @@ +get_metadata(); + + $wxr_path = get_post_meta($session->get_id(), 'file_name', true); + if ( false === $wxr_path || ! file_exists( $wxr_path ) ) { + error_log('Failed to get the WXR file path: ' . $wxr_path); + throw new DataLiberationException( 'Failed to get the WXR file path' ); + } + // Get author mappings from session + $author_mappings = $session->get_meta_by_key('authorMappings') ?? []; + + $importer = StreamImporter::create( + function ( $cursor = null ) use ( $wxr_path ) { + $stream = FileReadStream::from_path( $wxr_path ); + // Skip the initial PHP guard. + // @TODO: Don't hardcode the guard string in here. + $stream->seek( strlen( "\n" ) ); + return WXREntityReader::create( $stream, $cursor ); + }, + array( + 'index_batch_size' => 1, + 'entity_sink' => new EntityImporter( array( 'user_slug_mapping' => $author_mappings ) ), + ), + $import['cursor'] ?? null + ); + $importer->set_frontloading_retries_iterator( + new RetryFrontloadingIterator( $import['post_id'] ) + ); + return ['importer' => $importer, 'session' => $session]; +} + +function do_ng_importer_next_import_step() { + $active_import = ng_importer_get_active(); + if ( ! $active_import ) { + error_log('Failed to create the importer'); + return; + } + $importer = $active_import['importer']; + $session = $active_import['session']; + + // Wait until the user explicitly provides the import configuration. + if ( $importer->get_stage() === StreamImporter::STAGE_CONFIGURE_IMPORT ) { + error_log('Waiting for the user to provide the import configuration'); + return; + } + + /** + * @TODO: Fix this error we get after a few steps: + * Notice: Function WP_XML_Processor::step_in_element was called incorrectly. A tag was not closed. Please see Debugging in WordPress for more information. (This message was added in version WP_VERSION.) in /wordpress/wp-includes/functions.php on line 6114 + */ + $soft_time_limit_seconds = 15; + $hard_time_limit_seconds = 25; + $start_time = microtime( true ); + $fetched_files = 0; + while ( true ) { + $time_taken = microtime( true ) - $start_time; + if ( $time_taken >= $soft_time_limit_seconds ) { + // If we're frontloading and don't have any files fetched yet, + // we need to give it more time. Otherwise every time we retry, + // we'll start from the beginning and never advance past the + // frontloading stage. + if ( $importer->get_stage() === StreamImporter::STAGE_FRONTLOAD_ASSETS ) { + if ( $fetched_files > 0 ) { + break; + } + } else { + break; + } + } + if ( $time_taken >= $hard_time_limit_seconds ) { + // No negotiation, we're done. + // @TODO: Make it easily configurable + // @TODO: Bump the number of download attempts for the placeholders, + // set the status to `error` in each interrupted download. + break; + } + + $authorsInFile = $session->get_meta_by_key('authorsInFile') ?? []; + if ( true !== $importer->next_step() ) { + $session->set_reentrancy_cursor( $importer->get_reentrancy_cursor() ); + + $should_advance_to_next_stage = null !== $importer->get_next_stage(); + if ( $should_advance_to_next_stage ) { + if ( StreamImporter::STAGE_FRONTLOAD_ASSETS === $importer->get_stage() ) { + $resolved_all_failures = $session->count_unfinished_frontloading_stubs() === 0; + if ( ! $resolved_all_failures ) { + // Advance anyway. + // @TODO: Give the user a chance to retry, provide different assets files etc. + $session->append_to_log_file( + sprintf( + 'Proceeding without downloading all the media files. %d could not be downloaded, %d succeeded', + $session->count_unfinished_frontloading_stubs(), + $session->count_succeeded_frontloading_stubs() + ) + ); + } + } + } + if ( ! $importer->advance_to_next_stage() ) { + break; + } + $session->set_stage( $importer->get_stage() ); + $session->set_reentrancy_cursor( $importer->get_reentrancy_cursor() ); + + if ( + $importer->get_stage() === StreamImporter::STAGE_FRONTLOAD_ASSETS + || $importer->get_stage() === StreamImporter::STAGE_IMPORT_ENTITIES + ) { + continue; + } + return; + } + + switch ( $importer->get_stage() ) { + case StreamImporter::STAGE_INDEX_ENTITIES: + // Bump the total number of entities to import. + $session->create_frontloading_stubs( $importer->get_indexed_assets_urls() ); + $session->bump_total_number_of_entities( + $importer->get_indexed_entities_counts() + ); + // @TODO: Also use email and other information from the entity. + $entity = $importer->get_current_entity(); + if($entity) { + $data = $entity->get_data(); + $authors_before = count($authorsInFile); + switch($entity->get_type()) { + case 'post': + $login = $data['post_author'] ?? ''; + if ( $login ) { + $authorsInFile[$login] = [ + 'author_display_name' => $login, + 'author_login' => $login, + ]; + } + break; + case 'comment': + // $login = $data['comment_author'] ?? ''; + // $authorsInFile[$login] = [ + // 'author_display_name' => $login, + // 'author_login' => $login, + // ]; + break; + } + // @TODO: This is fine for small imports (e.g. up to 10k authors), + // but won't scale to larger ones. + // + // To support large imports, we need to minimize writes and avoid + // batching all the authors in memory. Don't write after every + // entity – there may be a million authors and we'd just drown + // the database with writes. Instead, either: + // * Batch all the writes from the batch of indexed entities. + // There's a slight risk of data loss if there's a fatal error + // in the middle of the batch, though. Maybe we could only + // save the updated reentrancy cursor after the entire batch? + // Alternatively... + // * Insert a new record when a new author is detected. It's + // still a lot of writes, but it could be less work than + // updating the same array over and over again. Or not – we'd + // need to measure. + // + if(count($authorsInFile) !== $authors_before) { + $session->set_meta_by_key('authorsInFile', $authorsInFile); + } + } + break; + case StreamImporter::STAGE_FRONTLOAD_ASSETS: + $session->bump_frontloading_progress( + $importer->get_frontloading_progress(), + $importer->get_frontloading_events() + ); + break; + case StreamImporter::STAGE_IMPORT_ENTITIES: + $session->bump_imported_entities_counts( + $importer->get_imported_entities_counts(), + $importer->get_entity_sink_events() + ); + break; + } + + $session->set_reentrancy_cursor( $importer->get_reentrancy_cursor() ); + } +} diff --git a/plugins/next-gen-importer/plugin.php b/plugins/next-gen-importer/plugin.php new file mode 100644 index 00000000..fa9aaa78 --- /dev/null +++ b/plugins/next-gen-importer/plugin.php @@ -0,0 +1,24 @@ +get_row( $wpdb->prepare( "SELECT option_value FROM $wpdb->options WHERE option_name = %s LIMIT 1", '_transient_doing_cron' ) ); + if ( is_object( $row ) ) { + $value = $row->option_value; + } + } + + return $value; +} + +$crons = wp_get_ready_cron_jobs(); +if ( empty( $crons ) ) { + die(); +} + +$gmt_time = microtime( true ); + +// The cron lock: a unix timestamp from when the cron was spawned. +$doing_cron_transient = get_transient( 'doing_cron' ); + +// Use global $doing_wp_cron lock, otherwise use the GET lock. If no lock, try to grab a new lock. +if ( empty( $doing_wp_cron ) ) { + if ( empty( $_GET['doing_wp_cron'] ) ) { + // Called from external script/job. Try setting a lock. + if ( $doing_cron_transient && ( $doing_cron_transient + WP_CRON_LOCK_TIMEOUT > $gmt_time ) ) { + error_log('Not running cron because another cron is still holding the lock ' . (WP_CRON_LOCK_TIMEOUT - ($gmt_time - $doing_cron_transient)) . ' seconds left'); + return; + } + $doing_wp_cron = sprintf( '%.22F', microtime( true ) ); + $doing_cron_transient = $doing_wp_cron; + set_transient( 'doing_cron', $doing_wp_cron ); + } else { + $doing_wp_cron = $_GET['doing_wp_cron']; + } +} + + +/* + * The cron lock (a unix timestamp set when the cron was spawned), + * must match $doing_wp_cron (the "key"). + */ +if ( $doing_cron_transient !== $doing_wp_cron ) { + error_log(print_r(['doing_cron_transient !== $doing_wp_cron', $doing_cron_transient !== $doing_wp_cron, 'doing_cron_transient' => $doing_cron_transient, 'doing_wp_cron' => $doing_wp_cron], true)); + return; +} +error_log('Running cron!'); + +foreach ( $crons as $timestamp => $cronhooks ) { + if ( $timestamp > $gmt_time ) { + break; + } + + foreach ( $cronhooks as $hook => $keys ) { + + foreach ( $keys as $k => $v ) { + + $schedule = $v['schedule']; + + if ( $schedule ) { + $result = wp_reschedule_event( $timestamp, $schedule, $hook, $v['args'], true ); + + if ( is_wp_error( $result ) ) { + error_log( + sprintf( + /* translators: 1: Hook name, 2: Error code, 3: Error message, 4: Event data. */ + __( 'Cron reschedule event error for hook: %1$s, Error code: %2$s, Error message: %3$s, Data: %4$s' ), + $hook, + $result->get_error_code(), + $result->get_error_message(), + wp_json_encode( $v ) + ) + ); + + /** + * Fires if an error happens when rescheduling a cron event. + * + * @since 6.1.0 + * + * @param WP_Error $result The WP_Error object. + * @param string $hook Action hook to execute when the event is run. + * @param array $v Event data. + */ + do_action( 'cron_reschedule_event_error', $result, $hook, $v ); + } + } + + $result = wp_unschedule_event( $timestamp, $hook, $v['args'], true ); + + if ( is_wp_error( $result ) ) { + error_log( + sprintf( + /* translators: 1: Hook name, 2: Error code, 3: Error message, 4: Event data. */ + __( 'Cron unschedule event error for hook: %1$s, Error code: %2$s, Error message: %3$s, Data: %4$s' ), + $hook, + $result->get_error_code(), + $result->get_error_message(), + wp_json_encode( $v ) + ) + ); + + /** + * Fires if an error happens when unscheduling a cron event. + * + * @since 6.1.0 + * + * @param WP_Error $result The WP_Error object. + * @param string $hook Action hook to execute when the event is run. + * @param array $v Event data. + */ + do_action( 'cron_unschedule_event_error', $result, $hook, $v ); + } + + /** + * Fires scheduled events. + * + * @ignore + * @since 2.1.0 + * + * @param string $hook Name of the hook that was scheduled to be fired. + * @param array $args The arguments to be passed to the hook. + */ + do_action_ref_array( $hook, $v['args'] ); + + // If the hook ran too long and another cron process stole the lock, quit. + if ( _get_cron_lock() !== $doing_wp_cron ) { + return; + } + } + } +} + +if ( _get_cron_lock() === $doing_wp_cron ) { + delete_transient( 'doing_cron' ); +} + +die(); \ No newline at end of file