diff --git a/wp-content/themes/twentyten/404.php b/wp-content/themes/twentyten/404.php
index 6cc489cdb9564ee5d786bdf995bf58c28c65c145..914ef01089a6deece2842cfe99d66802a013c141 100644
--- a/wp-content/themes/twentyten/404.php
+++ b/wp-content/themes/twentyten/404.php
@@ -27,4 +27,4 @@ get_header(); ?>
 		document.getElementById('s') && document.getElementById('s').focus();
 	</script>
 
-<?php get_footer(); ?>
\ No newline at end of file
+<?php get_footer(); ?>
diff --git a/wp-content/themes/twentyten/archive.php b/wp-content/themes/twentyten/archive.php
index 138b088ee8b7d1c303430977c29ac2292bd53908..bf0a0c4acf9ff57dfaca2fc737f4f9e6561b28cc 100644
--- a/wp-content/themes/twentyten/archive.php
+++ b/wp-content/themes/twentyten/archive.php
@@ -5,7 +5,7 @@
  * Used to display archive-type pages if nothing more specific matches a query.
  * For example, puts together date-based pages if no date.php file exists.
  *
- * @link https://codex.wordpress.org/Template_Hierarchy
+ * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
  *
  * @package WordPress
  * @subpackage Twenty_Ten
@@ -25,8 +25,9 @@ get_header(); ?>
 	 * We reset this later so we can run the loop
 	 * properly with a call to rewind_posts().
 	 */
-	if ( have_posts() )
-		the_post();
+if ( have_posts() ) {
+	the_post();
+}
 ?>
 
 			<h1 class="page-title">
diff --git a/wp-content/themes/twentyten/author.php b/wp-content/themes/twentyten/author.php
index 2b221b57f2095984b89207ea5a7f1533c32f4f23..afb8240f89c3bb808023caf17c927ecb86782ff1 100644
--- a/wp-content/themes/twentyten/author.php
+++ b/wp-content/themes/twentyten/author.php
@@ -21,15 +21,17 @@ get_header(); ?>
 	 * We reset this later so we can run the loop
 	 * properly with a call to rewind_posts().
 	 */
-	if ( have_posts() )
-		the_post();
+if ( have_posts() ) {
+	the_post();
+}
 ?>
 
 				<h1 class="page-title author"><?php printf( __( 'Author Archives: %s', 'twentyten' ), '<span class="vcard"><a class="url fn n" href="' . esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ) . '" title="' . esc_attr( get_the_author() ) . '" rel="me">' . get_the_author() . '</a></span>' ); ?></h1>
 
 <?php
 // If a user has filled out their description, show a bio on their entries.
-if ( get_the_author_meta( 'description' ) ) : ?>
+if ( get_the_author_meta( 'description' ) ) :
+	?>
 					<div id="entry-author-info">
 						<div id="author-avatar">
 							<?php
diff --git a/wp-content/themes/twentyten/category.php b/wp-content/themes/twentyten/category.php
index 50ffbf3ec6fb2fe3bf8f2f08d3065cd7d5bc91e6..00714e85df2aaa2f7d322381221c2b8198d3ac66 100644
--- a/wp-content/themes/twentyten/category.php
+++ b/wp-content/themes/twentyten/category.php
@@ -12,13 +12,16 @@ get_header(); ?>
 		<div id="container">
 			<div id="content" role="main">
 
-				<h1 class="page-title"><?php
+				<h1 class="page-title">
+				<?php
 					printf( __( 'Category Archives: %s', 'twentyten' ), '<span>' . single_cat_title( '', false ) . '</span>' );
-				?></h1>
+				?>
+				</h1>
 				<?php
 					$category_description = category_description();
-					if ( ! empty( $category_description ) )
-						echo '<div class="archive-meta">' . $category_description . '</div>';
+				if ( ! empty( $category_description ) ) {
+					echo '<div class="archive-meta">' . $category_description . '</div>';
+				}
 
 				/*
 				 * Run the loop for the category page to output the posts.
diff --git a/wp-content/themes/twentyten/comments.php b/wp-content/themes/twentyten/comments.php
index 6825a510bab16137bd9bd48dd5849a350efc93f8..900685632349b976729016dbed40041a195ed509 100644
--- a/wp-content/themes/twentyten/comments.php
+++ b/wp-content/themes/twentyten/comments.php
@@ -17,7 +17,7 @@
 <?php if ( post_password_required() ) : ?>
 				<p class="nopassword"><?php _e( 'This post is password protected. Enter the password to view any comments.', 'twentyten' ); ?></p>
 			</div><!-- #comments -->
-<?php
+	<?php
 		/*
 		 * Stop the rest of comments.php from being processed,
 		 * but don't kill the script entirely -- we still have
@@ -32,17 +32,31 @@
 ?>
 
 <?php if ( have_comments() ) : ?>
-			<h3 id="comments-title"><?php
-			printf( _n( 'One Response to %2$s', '%1$s Responses to %2$s', get_comments_number(), 'twentyten' ),
-			number_format_i18n( get_comments_number() ), '<em>' . get_the_title() . '</em>' );
-			?></h3>
+			<h3 id="comments-title">
+			<?php
+			if ( 1 === get_comments_number() ) {
+				printf(
+					/* translators: %s: The post title. */
+					__( 'One Response to %s', 'twentyten' ),
+					'<em>' . get_the_title() . '</em>'
+				);
+			} else {
+				/* translators: %1$s: The number of comments. %2$s: The post title. */
+				printf(
+					_n( '%1$s Response to %2$s', '%1$s Responses to %2$s', get_comments_number(), 'twentyten' ),
+					number_format_i18n( get_comments_number() ),
+					'<em>' . get_the_title() . '</em>'
+				);
+			}
+			?>
+			</h3>
 
-<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?>
+	<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?>
 			<div class="navigation">
 				<div class="nav-previous"><?php previous_comments_link( __( '<span class="meta-nav">&larr;</span> Older Comments', 'twentyten' ) ); ?></div>
 				<div class="nav-next"><?php next_comments_link( __( 'Newer Comments <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?></div>
 			</div> <!-- .navigation -->
-<?php endif; // check for comment navigation ?>
+	<?php endif; // check for comment navigation ?>
 
 			<ol class="commentlist">
 				<?php
@@ -57,21 +71,22 @@
 				?>
 			</ol>
 
-<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?>
+	<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?>
 			<div class="navigation">
 				<div class="nav-previous"><?php previous_comments_link( __( '<span class="meta-nav">&larr;</span> Older Comments', 'twentyten' ) ); ?></div>
 				<div class="nav-next"><?php next_comments_link( __( 'Newer Comments <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?></div>
 			</div><!-- .navigation -->
-<?php endif; // check for comment navigation ?>
+	<?php endif; // check for comment navigation ?>
 
 	<?php
 	/*
 	 * If there are no comments and comments are closed, let's leave a little note, shall we?
 	 * But we only want the note on posts and pages that had comments in the first place.
 	 */
-	if ( ! comments_open() && get_comments_number() ) : ?>
-		<p class="nocomments"><?php _e( 'Comments are closed.' , 'twentyten' ); ?></p>
-	<?php endif;  ?>
+	if ( ! comments_open() && get_comments_number() ) :
+		?>
+		<p class="nocomments"><?php _e( 'Comments are closed.', 'twentyten' ); ?></p>
+	<?php endif; ?>
 
 <?php endif; // end have_comments() ?>
 
diff --git a/wp-content/themes/twentyten/footer.php b/wp-content/themes/twentyten/footer.php
index 5bf404116f58fdf66443d9b2c799030fb539111a..4763e99abd33c6a12bca964a8101c71c670671b7 100644
--- a/wp-content/themes/twentyten/footer.php
+++ b/wp-content/themes/twentyten/footer.php
@@ -41,7 +41,8 @@
 				 *
 				 * @since Twenty Ten 1.0
 				 */
-				do_action( 'twentyten_credits' ); ?>
+				do_action( 'twentyten_credits' );
+				?>
 				<a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentyten' ) ); ?>" class="imprint" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentyten' ); ?>">
 					<?php printf( __( 'Proudly powered by %s.', 'twentyten' ), 'WordPress' ); ?>
 				</a>
diff --git a/wp-content/themes/twentyten/functions.php b/wp-content/themes/twentyten/functions.php
index 2cb561e124204bf0d20fcbe651cc6e8b0648ba76..2de25d382eafc56b8f198a4b5c3568c7fb3c96f8 100644
--- a/wp-content/themes/twentyten/functions.php
+++ b/wp-content/themes/twentyten/functions.php
@@ -9,11 +9,13 @@
  * The first function, twentyten_setup(), sets up the theme by registering support
  * for various features in WordPress, such as post thumbnails, navigation menus, and the like.
  *
- * When using a child theme (see https://codex.wordpress.org/Theme_Development and
- * https://codex.wordpress.org/Child_Themes), you can override certain functions
- * (those wrapped in a function_exists() call) by defining them first in your child theme's
- * functions.php file. The child theme's functions.php file is included before the parent
- * theme's file, so the child theme functions would be used.
+ * When using a child theme you can override certain functions (those wrapped
+ * in a function_exists() call) by defining them first in your child theme's
+ * functions.php file. The child theme's functions.php file is included before
+ * the parent theme's file, so the child theme functions would be used.
+ *
+ * @link https://codex.wordpress.org/Theme_Development
+ * @link https://developer.wordpress.org/themes/advanced-topics/child-themes/
  *
  * Functions that are not pluggable (not wrapped in function_exists()) are instead attached
  * to a filter or action hook. The hook can be removed by using remove_action() or
@@ -44,230 +46,241 @@
  * Used to set the width of images and content. Should be equal to the width the theme
  * is designed for, generally via the style.css stylesheet.
  */
-if ( ! isset( $content_width ) )
+if ( ! isset( $content_width ) ) {
 	$content_width = 640;
+}
 
 /* Tell WordPress to run twentyten_setup() when the 'after_setup_theme' hook is run. */
 add_action( 'after_setup_theme', 'twentyten_setup' );
 
-if ( ! function_exists( 'twentyten_setup' ) ):
-/**
- * Set up theme defaults and registers support for various WordPress features.
- *
- * Note that this function is hooked into the after_setup_theme hook, which runs
- * before the init hook. The init hook is too late for some features, such as indicating
- * support post thumbnails.
- *
- * To override twentyten_setup() in a child theme, add your own twentyten_setup to your child theme's
- * functions.php file.
- *
- * @uses add_theme_support()        To add support for post thumbnails, custom headers and backgrounds, and automatic feed links.
- * @uses register_nav_menus()       To add support for navigation menus.
- * @uses add_editor_style()         To style the visual editor.
- * @uses load_theme_textdomain()    For translation/localization support.
- * @uses register_default_headers() To register the default custom header images provided with the theme.
- * @uses set_post_thumbnail_size()  To set a custom post thumbnail size.
- *
- * @since Twenty Ten 1.0
- */
-function twentyten_setup() {
+if ( ! function_exists( 'twentyten_setup' ) ) :
+	/**
+	 * Set up theme defaults and registers support for various WordPress features.
+	 *
+	 * Note that this function is hooked into the after_setup_theme hook, which runs
+	 * before the init hook. The init hook is too late for some features, such as indicating
+	 * support post thumbnails.
+	 *
+	 * To override twentyten_setup() in a child theme, add your own twentyten_setup to your child theme's
+	 * functions.php file.
+	 *
+	 * @uses add_theme_support()        To add support for post thumbnails, custom headers and backgrounds, and automatic feed links.
+	 * @uses register_nav_menus()       To add support for navigation menus.
+	 * @uses add_editor_style()         To style the visual editor.
+	 * @uses load_theme_textdomain()    For translation/localization support.
+	 * @uses register_default_headers() To register the default custom header images provided with the theme.
+	 * @uses set_post_thumbnail_size()  To set a custom post thumbnail size.
+	 *
+	 * @since Twenty Ten 1.0
+	 */
+	function twentyten_setup() {
 
-	// This theme styles the visual editor with editor-style.css to match the theme style.
-	add_editor_style();
+		// This theme styles the visual editor with editor-style.css to match the theme style.
+		add_editor_style();
 
-	// Load regular editor styles into the new block-based editor.
-	add_theme_support( 'editor-styles' );
+		// Load regular editor styles into the new block-based editor.
+		add_theme_support( 'editor-styles' );
 
-	// Load default block styles.
-	add_theme_support( 'wp-block-styles' );
+		// Load default block styles.
+		add_theme_support( 'wp-block-styles' );
 
 		// Add support for custom color scheme.
-	add_theme_support( 'editor-color-palette', array(
-		array(
-			'name'  => __( 'Blue', 'twentyten' ),
-			'slug'  => 'blue',
-			'color' => '#0066cc',
-		),
-		array(
-			'name'  => __( 'Black', 'twentyten' ),
-			'slug'  => 'black',
-			'color' => '#000',
-		),
-		array(
-			'name'  => __( 'Medium Gray', 'twentyten' ),
-			'slug'  => 'medium-gray',
-			'color' => '#666',
-		),
-		array(
-			'name'  => __( 'Light Gray', 'twentyten' ),
-			'slug'  => 'light-gray',
-			'color' => '#f1f1f1',
-		),
-		array(
-			'name'  => __( 'White', 'twentyten' ),
-			'slug'  => 'white',
-			'color' => '#fff',
-		),
-	) );
+		add_theme_support(
+			'editor-color-palette',
+			array(
+				array(
+					'name'  => __( 'Blue', 'twentyten' ),
+					'slug'  => 'blue',
+					'color' => '#0066cc',
+				),
+				array(
+					'name'  => __( 'Black', 'twentyten' ),
+					'slug'  => 'black',
+					'color' => '#000',
+				),
+				array(
+					'name'  => __( 'Medium Gray', 'twentyten' ),
+					'slug'  => 'medium-gray',
+					'color' => '#666',
+				),
+				array(
+					'name'  => __( 'Light Gray', 'twentyten' ),
+					'slug'  => 'light-gray',
+					'color' => '#f1f1f1',
+				),
+				array(
+					'name'  => __( 'White', 'twentyten' ),
+					'slug'  => 'white',
+					'color' => '#fff',
+				),
+			)
+		);
+
+		// Post Format support. You can also use the legacy "gallery" or "asides" (note the plural) categories.
+		add_theme_support( 'post-formats', array( 'aside', 'gallery' ) );
+
+		// This theme uses post thumbnails
+		add_theme_support( 'post-thumbnails' );
+
+		// Add default posts and comments RSS feed links to head
+		add_theme_support( 'automatic-feed-links' );
 
-	// Post Format support. You can also use the legacy "gallery" or "asides" (note the plural) categories.
-	add_theme_support( 'post-formats', array( 'aside', 'gallery' ) );
-
-	// This theme uses post thumbnails
-	add_theme_support( 'post-thumbnails' );
-
-	// Add default posts and comments RSS feed links to head
-	add_theme_support( 'automatic-feed-links' );
-
-	/*
-	 * Make theme available for translation.
-	 * Translations can be filed in the /languages/ directory
-	 */
-	load_theme_textdomain( 'twentyten', get_template_directory() . '/languages' );
-
-	// This theme uses wp_nav_menu() in one location.
-	register_nav_menus( array(
-		'primary' => __( 'Primary Navigation', 'twentyten' ),
-	) );
-
-	// This theme allows users to set a custom background.
-	add_theme_support( 'custom-background', array(
-		// Let WordPress know what our default background color is.
-		'default-color' => 'f1f1f1',
-	) );
-
-	// The custom header business starts here.
-
-	$custom_header_support = array(
 		/*
-		 * The default image to use.
-		 * The %s is a placeholder for the theme template directory URI.
-		 */
-		'default-image' => '%s/images/headers/path.jpg',
-		// The height and width of our custom header.
-		/**
-		 * Filter the Twenty Ten default header image width.
-		 *
-		 * @since Twenty Ten 1.0
-		 *
-		 * @param int The default header image width in pixels. Default 940.
-		 */
-		'width' => apply_filters( 'twentyten_header_image_width', 940 ),
-		/**
-		 * Filter the Twenty Ten defaul header image height.
-		 *
-		 * @since Twenty Ten 1.0
-		 *
-		 * @param int The default header image height in pixels. Default 198.
+		 * Make theme available for translation.
+		 * Translations can be filed in the /languages/ directory
 		 */
-		'height' => apply_filters( 'twentyten_header_image_height', 198 ),
-		// Support flexible heights.
-		'flex-height' => true,
-		// Don't support text inside the header image.
-		'header-text' => false,
-		// Callback for styling the header preview in the admin.
-		'admin-head-callback' => 'twentyten_admin_header_style',
-	);
+		load_theme_textdomain( 'twentyten', get_template_directory() . '/languages' );
+
+		// This theme uses wp_nav_menu() in one location.
+		register_nav_menus(
+			array(
+				'primary' => __( 'Primary Navigation', 'twentyten' ),
+			)
+		);
+
+		// This theme allows users to set a custom background.
+		add_theme_support(
+			'custom-background',
+			array(
+				// Let WordPress know what our default background color is.
+				'default-color' => 'f1f1f1',
+			)
+		);
+
+		// The custom header business starts here.
+
+		$custom_header_support = array(
+			/*
+			 * The default image to use.
+			 * The %s is a placeholder for the theme template directory URI.
+			 */
+			'default-image'       => '%s/images/headers/path.jpg',
+			// The height and width of our custom header.
+			/**
+			 * Filter the Twenty Ten default header image width.
+			 *
+			 * @since Twenty Ten 1.0
+			 *
+			 * @param int The default header image width in pixels. Default 940.
+			 */
+			'width'               => apply_filters( 'twentyten_header_image_width', 940 ),
+			/**
+			 * Filter the Twenty Ten defaul header image height.
+			 *
+			 * @since Twenty Ten 1.0
+			 *
+			 * @param int The default header image height in pixels. Default 198.
+			 */
+			   'height'           => apply_filters( 'twentyten_header_image_height', 198 ),
+			// Support flexible heights.
+			'flex-height'         => true,
+			// Don't support text inside the header image.
+			'header-text'         => false,
+			// Callback for styling the header preview in the admin.
+			'admin-head-callback' => 'twentyten_admin_header_style',
+		);
+
+		add_theme_support( 'custom-header', $custom_header_support );
+
+		if ( ! function_exists( 'get_custom_header' ) ) {
+			// This is all for compatibility with versions of WordPress prior to 3.4.
+			define( 'HEADER_TEXTCOLOR', '' );
+			define( 'NO_HEADER_TEXT', true );
+			define( 'HEADER_IMAGE', $custom_header_support['default-image'] );
+			define( 'HEADER_IMAGE_WIDTH', $custom_header_support['width'] );
+			define( 'HEADER_IMAGE_HEIGHT', $custom_header_support['height'] );
+			add_custom_image_header( '', $custom_header_support['admin-head-callback'] );
+			add_custom_background();
+		}
 
-	add_theme_support( 'custom-header', $custom_header_support );
-
-	if ( ! function_exists( 'get_custom_header' ) ) {
-		// This is all for compatibility with versions of WordPress prior to 3.4.
-		define( 'HEADER_TEXTCOLOR', '' );
-		define( 'NO_HEADER_TEXT', true );
-		define( 'HEADER_IMAGE', $custom_header_support['default-image'] );
-		define( 'HEADER_IMAGE_WIDTH', $custom_header_support['width'] );
-		define( 'HEADER_IMAGE_HEIGHT', $custom_header_support['height'] );
-		add_custom_image_header( '', $custom_header_support['admin-head-callback'] );
-		add_custom_background();
+		/*
+		 * We'll be using post thumbnails for custom header images on posts and pages.
+		 * We want them to be 940 pixels wide by 198 pixels tall.
+		 * Larger images will be auto-cropped to fit, smaller ones will be ignored. See header.php.
+		 */
+		set_post_thumbnail_size( $custom_header_support['width'], $custom_header_support['height'], true );
+
+		// ... and thus ends the custom header business.
+
+		// Default custom headers packaged with the theme. %s is a placeholder for the theme template directory URI.
+		register_default_headers(
+			array(
+				'berries'       => array(
+					'url'           => '%s/images/headers/berries.jpg',
+					'thumbnail_url' => '%s/images/headers/berries-thumbnail.jpg',
+					/* translators: header image description */
+					'description'   => __( 'Berries', 'twentyten' ),
+				),
+				'cherryblossom' => array(
+					'url'           => '%s/images/headers/cherryblossoms.jpg',
+					'thumbnail_url' => '%s/images/headers/cherryblossoms-thumbnail.jpg',
+					/* translators: header image description */
+					'description'   => __( 'Cherry Blossoms', 'twentyten' ),
+				),
+				'concave'       => array(
+					'url'           => '%s/images/headers/concave.jpg',
+					'thumbnail_url' => '%s/images/headers/concave-thumbnail.jpg',
+					/* translators: header image description */
+					'description'   => __( 'Concave', 'twentyten' ),
+				),
+				'fern'          => array(
+					'url'           => '%s/images/headers/fern.jpg',
+					'thumbnail_url' => '%s/images/headers/fern-thumbnail.jpg',
+					/* translators: header image description */
+					'description'   => __( 'Fern', 'twentyten' ),
+				),
+				'forestfloor'   => array(
+					'url'           => '%s/images/headers/forestfloor.jpg',
+					'thumbnail_url' => '%s/images/headers/forestfloor-thumbnail.jpg',
+					/* translators: header image description */
+					'description'   => __( 'Forest Floor', 'twentyten' ),
+				),
+				'inkwell'       => array(
+					'url'           => '%s/images/headers/inkwell.jpg',
+					'thumbnail_url' => '%s/images/headers/inkwell-thumbnail.jpg',
+					/* translators: header image description */
+					'description'   => __( 'Inkwell', 'twentyten' ),
+				),
+				'path'          => array(
+					'url'           => '%s/images/headers/path.jpg',
+					'thumbnail_url' => '%s/images/headers/path-thumbnail.jpg',
+					/* translators: header image description */
+					'description'   => __( 'Path', 'twentyten' ),
+				),
+				'sunset'        => array(
+					'url'           => '%s/images/headers/sunset.jpg',
+					'thumbnail_url' => '%s/images/headers/sunset-thumbnail.jpg',
+					/* translators: header image description */
+					'description'   => __( 'Sunset', 'twentyten' ),
+				),
+			)
+		);
 	}
-
-	/*
-	 * We'll be using post thumbnails for custom header images on posts and pages.
-	 * We want them to be 940 pixels wide by 198 pixels tall.
-	 * Larger images will be auto-cropped to fit, smaller ones will be ignored. See header.php.
-	 */
-	set_post_thumbnail_size( $custom_header_support['width'], $custom_header_support['height'], true );
-
-	// ... and thus ends the custom header business.
-
-	// Default custom headers packaged with the theme. %s is a placeholder for the theme template directory URI.
-	register_default_headers( array(
-		'berries' => array(
-			'url' => '%s/images/headers/berries.jpg',
-			'thumbnail_url' => '%s/images/headers/berries-thumbnail.jpg',
-			/* translators: header image description */
-			'description' => __( 'Berries', 'twentyten' )
-		),
-		'cherryblossom' => array(
-			'url' => '%s/images/headers/cherryblossoms.jpg',
-			'thumbnail_url' => '%s/images/headers/cherryblossoms-thumbnail.jpg',
-			/* translators: header image description */
-			'description' => __( 'Cherry Blossoms', 'twentyten' )
-		),
-		'concave' => array(
-			'url' => '%s/images/headers/concave.jpg',
-			'thumbnail_url' => '%s/images/headers/concave-thumbnail.jpg',
-			/* translators: header image description */
-			'description' => __( 'Concave', 'twentyten' )
-		),
-		'fern' => array(
-			'url' => '%s/images/headers/fern.jpg',
-			'thumbnail_url' => '%s/images/headers/fern-thumbnail.jpg',
-			/* translators: header image description */
-			'description' => __( 'Fern', 'twentyten' )
-		),
-		'forestfloor' => array(
-			'url' => '%s/images/headers/forestfloor.jpg',
-			'thumbnail_url' => '%s/images/headers/forestfloor-thumbnail.jpg',
-			/* translators: header image description */
-			'description' => __( 'Forest Floor', 'twentyten' )
-		),
-		'inkwell' => array(
-			'url' => '%s/images/headers/inkwell.jpg',
-			'thumbnail_url' => '%s/images/headers/inkwell-thumbnail.jpg',
-			/* translators: header image description */
-			'description' => __( 'Inkwell', 'twentyten' )
-		),
-		'path' => array(
-			'url' => '%s/images/headers/path.jpg',
-			'thumbnail_url' => '%s/images/headers/path-thumbnail.jpg',
-			/* translators: header image description */
-			'description' => __( 'Path', 'twentyten' )
-		),
-		'sunset' => array(
-			'url' => '%s/images/headers/sunset.jpg',
-			'thumbnail_url' => '%s/images/headers/sunset-thumbnail.jpg',
-			/* translators: header image description */
-			'description' => __( 'Sunset', 'twentyten' )
-		)
-	) );
-}
 endif;
 
 if ( ! function_exists( 'twentyten_admin_header_style' ) ) :
-/**
- * Style the header image displayed on the Appearance > Header admin panel.
- *
- * Referenced via add_custom_image_header() in twentyten_setup().
- *
- * @since Twenty Ten 1.0
- */
-function twentyten_admin_header_style() {
-?>
-<style type="text/css" id="twentyten-admin-header-css">
-/* Shows the same border as on front end */
-#headimg {
+	/**
+	 * Style the header image displayed on the Appearance > Header admin panel.
+	 *
+	 * Referenced via add_custom_image_header() in twentyten_setup().
+	 *
+	 * @since Twenty Ten 1.0
+	 */
+	function twentyten_admin_header_style() {
+		?>
+	<style type="text/css" id="twentyten-admin-header-css">
+	/* Shows the same border as on front end */
+	#headimg {
 	border-bottom: 1px solid #000;
 	border-top: 4px solid #000;
-}
-/* If header-text was supported, you would style the text with these selectors:
+	}
+	/* If header-text was supported, you would style the text with these selectors:
 	#headimg #name { }
 	#headimg #desc { }
-*/
-</style>
-<?php
-}
+	*/
+	</style>
+		<?php
+	}
 endif;
 
 /**
@@ -281,8 +294,9 @@ endif;
  * @param array $args An optional array of arguments. @see wp_page_menu()
  */
 function twentyten_page_menu_args( $args ) {
-	if ( ! isset( $args['show_home'] ) )
+	if ( ! isset( $args['show_home'] ) ) {
 		$args['show_home'] = true;
+	}
 	return $args;
 }
 add_filter( 'wp_page_menu_args', 'twentyten_page_menu_args' );
@@ -304,16 +318,16 @@ function twentyten_excerpt_length( $length ) {
 add_filter( 'excerpt_length', 'twentyten_excerpt_length' );
 
 if ( ! function_exists( 'twentyten_continue_reading_link' ) ) :
-/**
- * Return a "Continue Reading" link for excerpts.
- *
- * @since Twenty Ten 1.0
- *
- * @return string "Continue Reading" link.
- */
-function twentyten_continue_reading_link() {
-	return ' <a href="'. get_permalink() . '">' . __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyten' ) . '</a>';
-}
+	/**
+	 * Return a "Continue Reading" link for excerpts.
+	 *
+	 * @since Twenty Ten 1.0
+	 *
+	 * @return string "Continue Reading" link.
+	 */
+	function twentyten_continue_reading_link() {
+		return ' <a href="' . get_permalink() . '">' . __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyten' ) . '</a>';
+	}
 endif;
 
 /**
@@ -381,36 +395,37 @@ function twentyten_remove_gallery_css( $css ) {
 	return preg_replace( "#<style type='text/css'>(.*?)</style>#s", '', $css );
 }
 // Backwards compatibility with WordPress 3.0.
-if ( version_compare( $GLOBALS['wp_version'], '3.1', '<' ) )
+if ( version_compare( $GLOBALS['wp_version'], '3.1', '<' ) ) {
 	add_filter( 'gallery_style', 'twentyten_remove_gallery_css' );
+}
 
 if ( ! function_exists( 'twentyten_comment' ) ) :
-/**
- * Template for comments and pingbacks.
- *
- * To override this walker in a child theme without modifying the comments template
- * simply create your own twentyten_comment(), and that function will be used instead.
- *
- * Used as a callback by wp_list_comments() for displaying the comments.
- *
- * @since Twenty Ten 1.0
- *
- * @param object $comment The comment object.
- * @param array  $args    An array of arguments. @see get_comment_reply_link()
- * @param int    $depth   The depth of the comment.
- */
-function twentyten_comment( $comment, $args, $depth ) {
-	$GLOBALS['comment'] = $comment;
-	switch ( $comment->comment_type ) :
-		case '' :
-	?>
-	<li <?php comment_class(); ?> id="li-comment-<?php comment_ID(); ?>">
+	/**
+	 * Template for comments and pingbacks.
+	 *
+	 * To override this walker in a child theme without modifying the comments template
+	 * simply create your own twentyten_comment(), and that function will be used instead.
+	 *
+	 * Used as a callback by wp_list_comments() for displaying the comments.
+	 *
+	 * @since Twenty Ten 1.0
+	 *
+	 * @param object $comment The comment object.
+	 * @param array  $args    An array of arguments. @see get_comment_reply_link()
+	 * @param int    $depth   The depth of the comment.
+	 */
+	function twentyten_comment( $comment, $args, $depth ) {
+		$GLOBALS['comment'] = $comment;
+		switch ( $comment->comment_type ) :
+			case '':
+				?>
+		<li <?php comment_class(); ?> id="li-comment-<?php comment_ID(); ?>">
 		<div id="comment-<?php comment_ID(); ?>">
 			<div class="comment-author vcard">
 				<?php echo get_avatar( $comment, 40 ); ?>
 				<?php printf( __( '%s <span class="says">says:</span>', 'twentyten' ), sprintf( '<cite class="fn">%s</cite>', get_comment_author_link() ) ); ?>
 			</div><!-- .comment-author .vcard -->
-			<?php if ( $comment->comment_approved == '0' ) : ?>
+				<?php if ( $comment->comment_approved == '0' ) : ?>
 				<em class="comment-awaiting-moderation"><?php _e( 'Your comment is awaiting moderation.', 'twentyten' ); ?></em>
 				<br />
 			<?php endif; ?>
@@ -418,28 +433,42 @@ function twentyten_comment( $comment, $args, $depth ) {
 			<div class="comment-meta commentmetadata"><a href="<?php echo esc_url( get_comment_link( $comment->comment_ID ) ); ?>">
 				<?php
 					/* translators: 1: date, 2: time */
-					printf( __( '%1$s at %2$s', 'twentyten' ), get_comment_date(),  get_comment_time() ); ?></a><?php edit_comment_link( __( '(Edit)', 'twentyten' ), ' ' );
+					printf( __( '%1$s at %2$s', 'twentyten' ), get_comment_date(), get_comment_time() );
 				?>
-			</div><!-- .comment-meta .commentmetadata -->
+					</a>
+					<?php
+					edit_comment_link( __( '(Edit)', 'twentyten' ), ' ' );
+					?>
+				</div><!-- .comment-meta .commentmetadata -->
 
-			<div class="comment-body"><?php comment_text(); ?></div>
+				<div class="comment-body"><?php comment_text(); ?></div>
 
-			<div class="reply">
-				<?php comment_reply_link( array_merge( $args, array( 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?>
-			</div><!-- .reply -->
-		</div><!-- #comment-##  -->
+				<div class="reply">
+				<?php
+				comment_reply_link(
+					array_merge(
+						$args,
+						array(
+							'depth'     => $depth,
+							'max_depth' => $args['max_depth'],
+						)
+					)
+				);
+				?>
+				</div><!-- .reply -->
+			</div><!-- #comment-##  -->
 
-	<?php
-			break;
-		case 'pingback'  :
-		case 'trackback' :
-	?>
-	<li class="post pingback">
+				<?php
+				break;
+			case 'pingback':
+			case 'trackback':
+				?>
+		<li class="post pingback">
 		<p><?php _e( 'Pingback:', 'twentyten' ); ?> <?php comment_author_link(); ?><?php edit_comment_link( __( '(Edit)', 'twentyten' ), ' ' ); ?></p>
-	<?php
-			break;
-	endswitch;
-}
+				<?php
+				break;
+		endswitch;
+	}
 endif;
 
 /**
@@ -454,70 +483,82 @@ endif;
  */
 function twentyten_widgets_init() {
 	// Area 1, located at the top of the sidebar.
-	register_sidebar( array(
-		'name' => __( 'Primary Widget Area', 'twentyten' ),
-		'id' => 'primary-widget-area',
-		'description' => __( 'Add widgets here to appear in your sidebar.', 'twentyten' ),
-		'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
-		'after_widget' => '</li>',
-		'before_title' => '<h3 class="widget-title">',
-		'after_title' => '</h3>',
-	) );
+	register_sidebar(
+		array(
+			'name'          => __( 'Primary Widget Area', 'twentyten' ),
+			'id'            => 'primary-widget-area',
+			'description'   => __( 'Add widgets here to appear in your sidebar.', 'twentyten' ),
+			'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
+			'after_widget'  => '</li>',
+			'before_title'  => '<h3 class="widget-title">',
+			'after_title'   => '</h3>',
+		)
+	);
 
 	// Area 2, located below the Primary Widget Area in the sidebar. Empty by default.
-	register_sidebar( array(
-		'name' => __( 'Secondary Widget Area', 'twentyten' ),
-		'id' => 'secondary-widget-area',
-		'description' => __( 'An optional secondary widget area, displays below the primary widget area in your sidebar.', 'twentyten' ),
-		'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
-		'after_widget' => '</li>',
-		'before_title' => '<h3 class="widget-title">',
-		'after_title' => '</h3>',
-	) );
+	register_sidebar(
+		array(
+			'name'          => __( 'Secondary Widget Area', 'twentyten' ),
+			'id'            => 'secondary-widget-area',
+			'description'   => __( 'An optional secondary widget area, displays below the primary widget area in your sidebar.', 'twentyten' ),
+			'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
+			'after_widget'  => '</li>',
+			'before_title'  => '<h3 class="widget-title">',
+			'after_title'   => '</h3>',
+		)
+	);
 
 	// Area 3, located in the footer. Empty by default.
-	register_sidebar( array(
-		'name' => __( 'First Footer Widget Area', 'twentyten' ),
-		'id' => 'first-footer-widget-area',
-		'description' => __( 'An optional widget area for your site footer.', 'twentyten' ),
-		'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
-		'after_widget' => '</li>',
-		'before_title' => '<h3 class="widget-title">',
-		'after_title' => '</h3>',
-	) );
+	register_sidebar(
+		array(
+			'name'          => __( 'First Footer Widget Area', 'twentyten' ),
+			'id'            => 'first-footer-widget-area',
+			'description'   => __( 'An optional widget area for your site footer.', 'twentyten' ),
+			'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
+			'after_widget'  => '</li>',
+			'before_title'  => '<h3 class="widget-title">',
+			'after_title'   => '</h3>',
+		)
+	);
 
 	// Area 4, located in the footer. Empty by default.
-	register_sidebar( array(
-		'name' => __( 'Second Footer Widget Area', 'twentyten' ),
-		'id' => 'second-footer-widget-area',
-		'description' => __( 'An optional widget area for your site footer.', 'twentyten' ),
-		'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
-		'after_widget' => '</li>',
-		'before_title' => '<h3 class="widget-title">',
-		'after_title' => '</h3>',
-	) );
+	register_sidebar(
+		array(
+			'name'          => __( 'Second Footer Widget Area', 'twentyten' ),
+			'id'            => 'second-footer-widget-area',
+			'description'   => __( 'An optional widget area for your site footer.', 'twentyten' ),
+			'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
+			'after_widget'  => '</li>',
+			'before_title'  => '<h3 class="widget-title">',
+			'after_title'   => '</h3>',
+		)
+	);
 
 	// Area 5, located in the footer. Empty by default.
-	register_sidebar( array(
-		'name' => __( 'Third Footer Widget Area', 'twentyten' ),
-		'id' => 'third-footer-widget-area',
-		'description' => __( 'An optional widget area for your site footer.', 'twentyten' ),
-		'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
-		'after_widget' => '</li>',
-		'before_title' => '<h3 class="widget-title">',
-		'after_title' => '</h3>',
-	) );
+	register_sidebar(
+		array(
+			'name'          => __( 'Third Footer Widget Area', 'twentyten' ),
+			'id'            => 'third-footer-widget-area',
+			'description'   => __( 'An optional widget area for your site footer.', 'twentyten' ),
+			'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
+			'after_widget'  => '</li>',
+			'before_title'  => '<h3 class="widget-title">',
+			'after_title'   => '</h3>',
+		)
+	);
 
 	// Area 6, located in the footer. Empty by default.
-	register_sidebar( array(
-		'name' => __( 'Fourth Footer Widget Area', 'twentyten' ),
-		'id' => 'fourth-footer-widget-area',
-		'description' => __( 'An optional widget area for your site footer.', 'twentyten' ),
-		'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
-		'after_widget' => '</li>',
-		'before_title' => '<h3 class="widget-title">',
-		'after_title' => '</h3>',
-	) );
+	register_sidebar(
+		array(
+			'name'          => __( 'Fourth Footer Widget Area', 'twentyten' ),
+			'id'            => 'fourth-footer-widget-area',
+			'description'   => __( 'An optional widget area for your site footer.', 'twentyten' ),
+			'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
+			'after_widget'  => '</li>',
+			'before_title'  => '<h3 class="widget-title">',
+			'after_title'   => '</h3>',
+		)
+	);
 }
 /** Register sidebars by running twentyten_widgets_init() on the widgets_init hook. */
 add_action( 'widgets_init', 'twentyten_widgets_init' );
@@ -540,53 +581,56 @@ function twentyten_remove_recent_comments_style() {
 add_action( 'widgets_init', 'twentyten_remove_recent_comments_style' );
 
 if ( ! function_exists( 'twentyten_posted_on' ) ) :
-/**
- * Print HTML with meta information for the current post-date/time and author.
- *
- * @since Twenty Ten 1.0
- */
-function twentyten_posted_on() {
-	printf( __( '<span class="%1$s">Posted on</span> %2$s <span class="meta-sep">by</span> %3$s', 'twentyten' ),
-		'meta-prep meta-prep-author',
-		sprintf( '<a href="%1$s" title="%2$s" rel="bookmark"><span class="entry-date">%3$s</span></a>',
-			get_permalink(),
-			esc_attr( get_the_time() ),
-			get_the_date()
-		),
-		sprintf( '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s">%3$s</a></span>',
-			get_author_posts_url( get_the_author_meta( 'ID' ) ),
-			esc_attr( sprintf( __( 'View all posts by %s', 'twentyten' ), get_the_author() ) ),
-			get_the_author()
-		)
-	);
-}
+	/**
+	 * Print HTML with meta information for the current post-date/time and author.
+	 *
+	 * @since Twenty Ten 1.0
+	 */
+	function twentyten_posted_on() {
+		printf(
+			__( '<span class="%1$s">Posted on</span> %2$s <span class="meta-sep">by</span> %3$s', 'twentyten' ),
+			'meta-prep meta-prep-author',
+			sprintf(
+				'<a href="%1$s" title="%2$s" rel="bookmark"><span class="entry-date">%3$s</span></a>',
+				get_permalink(),
+				esc_attr( get_the_time() ),
+				get_the_date()
+			),
+			sprintf(
+				'<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s">%3$s</a></span>',
+				get_author_posts_url( get_the_author_meta( 'ID' ) ),
+				esc_attr( sprintf( __( 'View all posts by %s', 'twentyten' ), get_the_author() ) ),
+				get_the_author()
+			)
+		);
+	}
 endif;
 
 if ( ! function_exists( 'twentyten_posted_in' ) ) :
-/**
- * Print HTML with meta information for the current post (category, tags and permalink).
- *
- * @since Twenty Ten 1.0
- */
-function twentyten_posted_in() {
-	// Retrieves tag list of current post, separated by commas.
-	$tag_list = get_the_tag_list( '', ', ' );
-	if ( $tag_list && ! is_wp_error( $tag_list ) ) {
-		$posted_in = __( 'This entry was posted in %1$s and tagged %2$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyten' );
-	} elseif ( is_object_in_taxonomy( get_post_type(), 'category' ) ) {
-		$posted_in = __( 'This entry was posted in %1$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyten' );
-	} else {
-		$posted_in = __( 'Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyten' );
+	/**
+	 * Print HTML with meta information for the current post (category, tags and permalink).
+	 *
+	 * @since Twenty Ten 1.0
+	 */
+	function twentyten_posted_in() {
+		// Retrieves tag list of current post, separated by commas.
+		$tag_list = get_the_tag_list( '', ', ' );
+		if ( $tag_list && ! is_wp_error( $tag_list ) ) {
+			$posted_in = __( 'This entry was posted in %1$s and tagged %2$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyten' );
+		} elseif ( is_object_in_taxonomy( get_post_type(), 'category' ) ) {
+			$posted_in = __( 'This entry was posted in %1$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyten' );
+		} else {
+			$posted_in = __( 'Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyten' );
+		}
+		// Prints the string, replacing the placeholders.
+		printf(
+			$posted_in,
+			get_the_category_list( ', ' ),
+			$tag_list,
+			get_permalink(),
+			the_title_attribute( 'echo=0' )
+		);
 	}
-	// Prints the string, replacing the placeholders.
-	printf(
-		$posted_in,
-		get_the_category_list( ', ' ),
-		$tag_list,
-		get_permalink(),
-		the_title_attribute( 'echo=0' )
-	);
-}
 endif;
 
 /**
@@ -604,26 +648,30 @@ function twentyten_get_gallery_images() {
 
 	if ( function_exists( 'get_post_galleries' ) ) {
 		$galleries = get_post_galleries( get_the_ID(), false );
-		if ( isset( $galleries[0]['ids'] ) )
+		if ( isset( $galleries[0]['ids'] ) ) {
 			$images = explode( ',', $galleries[0]['ids'] );
+		}
 	} else {
 		$pattern = get_shortcode_regex();
 		preg_match( "/$pattern/s", get_the_content(), $match );
 		$atts = shortcode_parse_atts( $match[3] );
-		if ( isset( $atts['ids'] ) )
+		if ( isset( $atts['ids'] ) ) {
 			$images = explode( ',', $atts['ids'] );
+		}
 	}
 
 	if ( ! $images ) {
-		$images = get_posts( array(
-			'fields'         => 'ids',
-			'numberposts'    => 999,
-			'order'          => 'ASC',
-			'orderby'        => 'menu_order',
-			'post_mime_type' => 'image',
-			'post_parent'    => get_the_ID(),
-			'post_type'      => 'attachment',
-		) );
+		$images = get_posts(
+			array(
+				'fields'         => 'ids',
+				'numberposts'    => 999,
+				'order'          => 'ASC',
+				'orderby'        => 'menu_order',
+				'post_mime_type' => 'image',
+				'post_parent'    => get_the_ID(),
+				'post_type'      => 'attachment',
+			)
+		);
 	}
 
 	return $images;
@@ -670,4 +718,20 @@ function twentyten_block_editor_styles() {
 }
 add_action( 'enqueue_block_editor_assets', 'twentyten_block_editor_styles' );
 
-
+if ( ! function_exists( 'wp_body_open' ) ) :
+	/**
+	 * Fire the wp_body_open action.
+	 *
+	 * Added for backwards compatibility to support pre 5.2.0 WordPress versions.
+	 *
+	 * @since Twenty Ten 2.9
+	 */
+	function wp_body_open() {
+		/**
+		 * Triggered after the opening <body> tag.
+		 *
+		 * @since Twenty Ten 2.9
+		 */
+		do_action( 'wp_body_open' );
+	}
+endif;
diff --git a/wp-content/themes/twentyten/header.php b/wp-content/themes/twentyten/header.php
index 1ff063b8f06af3901ca20a583502068435bbc604..23a186340aee9d7a6c2c035ac9850d7dc081bbaf 100644
--- a/wp-content/themes/twentyten/header.php
+++ b/wp-content/themes/twentyten/header.php
@@ -12,7 +12,8 @@
 <html <?php language_attributes(); ?>>
 <head>
 <meta charset="<?php bloginfo( 'charset' ); ?>" />
-<title><?php
+<title>
+<?php
 	/*
 	 * Print the <title> tag based on what is being viewed.
 	 */
@@ -25,24 +26,28 @@
 
 	// Add the blog description for the home/front page.
 	$site_description = get_bloginfo( 'description', 'display' );
-	if ( $site_description && ( is_home() || is_front_page() ) )
-		echo " | $site_description";
+if ( $site_description && ( is_home() || is_front_page() ) ) {
+	echo " | $site_description";
+}
 
 	// Add a page number if necessary:
-	if ( ( $paged >= 2 || $page >= 2 ) && ! is_404() )
-		echo esc_html( ' | ' . sprintf( __( 'Page %s', 'twentyten' ), max( $paged, $page ) ) );
+if ( ( $paged >= 2 || $page >= 2 ) && ! is_404() ) {
+	echo esc_html( ' | ' . sprintf( __( 'Page %s', 'twentyten' ), max( $paged, $page ) ) );
+}
 
-	?></title>
+?>
+	</title>
 <link rel="profile" href="http://gmpg.org/xfn/11" />
 <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
-<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
+<link rel="pingback" href="<?php echo esc_url( get_bloginfo( 'pingback_url' ) ); ?>">
 <?php
 	/*
 	 * We add some JavaScript to pages with the comment form
 	 * to support sites with threaded comments (when in use).
 	 */
-	if ( is_singular() && get_option( 'thread_comments' ) )
-		wp_enqueue_script( 'comment-reply' );
+if ( is_singular() && get_option( 'thread_comments' ) ) {
+	wp_enqueue_script( 'comment-reply' );
+}
 
 	/*
 	 * Always have wp_head() just before the closing </head>
@@ -55,6 +60,7 @@
 </head>
 
 <body <?php body_class(); ?>>
+<?php wp_body_open(); ?>
 <div id="wrapper" class="hfeed">
 	<div id="header">
 		<div id="masthead">
@@ -69,23 +75,23 @@
 
 				<?php
 					// Compatibility with versions of WordPress prior to 3.4.
-					if ( function_exists( 'get_custom_header' ) ) {
-						/*
-						 * We need to figure out what the minimum width should be for our featured image.
-						 * This result would be the suggested width if the theme were to implement flexible widths.
-						 */
-						$header_image_width = get_theme_support( 'custom-header', 'width' );
-					} else {
-						$header_image_width = HEADER_IMAGE_WIDTH;
-					}
+				if ( function_exists( 'get_custom_header' ) ) {
+					/*
+					 * We need to figure out what the minimum width should be for our featured image.
+					 * This result would be the suggested width if the theme were to implement flexible widths.
+					 */
+					$header_image_width = get_theme_support( 'custom-header', 'width' );
+				} else {
+					$header_image_width = HEADER_IMAGE_WIDTH;
+				}
 
 					// Check if this is a post or page, if it has a thumbnail, and if it's a big one
-					if ( is_singular() && current_theme_supports( 'post-thumbnails' ) &&
+				if ( is_singular() && current_theme_supports( 'post-thumbnails' ) &&
 							has_post_thumbnail( $post->ID ) &&
 							( /* $src, $width, $height */ $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'post-thumbnail' ) ) &&
 							$image[1] >= $header_image_width ) :
-						// Houston, we have a new header image!
-						echo get_the_post_thumbnail( $post->ID );
+					// Houston, we have a new header image!
+					echo get_the_post_thumbnail( $post->ID );
 					elseif ( get_header_image() ) :
 						// Compatibility with versions of WordPress prior to 3.4.
 						if ( function_exists( 'get_custom_header' ) ) {
@@ -95,16 +101,23 @@
 							$header_image_width  = HEADER_IMAGE_WIDTH;
 							$header_image_height = HEADER_IMAGE_HEIGHT;
 						}
-					?>
+						?>
 						<img src="<?php header_image(); ?>" width="<?php echo esc_attr( $header_image_width ); ?>" height="<?php echo esc_attr( $header_image_height ); ?>" alt="" />
 					<?php endif; ?>
 			</div><!-- #branding -->
 
 			<div id="access" role="navigation">
-			  <?php /* Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff */ ?>
+				<?php /* Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff */ ?>
 				<div class="skip-link screen-reader-text"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'twentyten' ); ?>"><?php _e( 'Skip to content', 'twentyten' ); ?></a></div>
 				<?php /* Our navigation menu. If one isn't filled out, wp_nav_menu falls back to wp_page_menu. The menu assiged to the primary position is the one used. If none is assigned, the menu with the lowest ID is used. */ ?>
-				<?php wp_nav_menu( array( 'container_class' => 'menu-header', 'theme_location' => 'primary' ) ); ?>
+				<?php
+				wp_nav_menu(
+					array(
+						'container_class' => 'menu-header',
+						'theme_location'  => 'primary',
+					)
+				);
+				?>
 			</div><!-- #access -->
 		</div><!-- #masthead -->
 	</div><!-- #header -->
diff --git a/wp-content/themes/twentyten/index.php b/wp-content/themes/twentyten/index.php
index 4271ac388d031dfb102a237fdbc505eaac4e3f73..feaf4479922bdedf199901c7f37d0f94f0223e90 100644
--- a/wp-content/themes/twentyten/index.php
+++ b/wp-content/themes/twentyten/index.php
@@ -6,7 +6,7 @@
  * and one of the two required files for a theme (the other being style.css).
  * It is used to display a page when nothing more specific matches a query.
  * E.g., it puts together the home page when no home.php file exists.
- * Learn more: https://codex.wordpress.org/Template_Hierarchy
+ * Learn more: https://developer.wordpress.org/themes/basics/template-hierarchy/
  *
  * @package WordPress
  * @subpackage Twenty_Ten
diff --git a/wp-content/themes/twentyten/languages/twentyten.pot b/wp-content/themes/twentyten/languages/twentyten.pot
index 1cd8be260142205839b140f29515175ed925652f..e9fd3b8b5030d871aef1a36c07691d53256f9738 100644
--- a/wp-content/themes/twentyten/languages/twentyten.pot
+++ b/wp-content/themes/twentyten/languages/twentyten.pot
@@ -1,14 +1,14 @@
-# Copyright (C) 2018 the WordPress team
+# Copyright (C) 2019 the WordPress team
 # This file is distributed under the GNU General Public License v2 or later.
 msgid ""
 msgstr ""
-"Project-Id-Version: Twenty Ten 2.7\n"
+"Project-Id-Version: Twenty Ten 2.9\n"
 "Report-Msgid-Bugs-To: https://wordpress.org/support/theme/twentyten\n"
-"POT-Creation-Date: 2018-12-18 17:42:13+00:00\n"
+"POT-Creation-Date: 2019-05-07 18:20:08+00:00\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
+"PO-Revision-Date: 2019-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
 
@@ -20,41 +20,41 @@ msgstr ""
 msgid "Apologies, but the page you requested could not be found. Perhaps searching will help."
 msgstr ""
 
-#: archive.php:34
+#: archive.php:35
 msgid "Daily Archives: <span>%s</span>"
 msgstr ""
 
-#: archive.php:36
+#: archive.php:37
 msgid "Monthly Archives: <span>%s</span>"
 msgstr ""
 
-#: archive.php:36
+#: archive.php:37
 msgctxt "monthly archives date format"
 msgid "F Y"
 msgstr ""
 
-#: archive.php:38
+#: archive.php:39
 msgid "Yearly Archives: <span>%s</span>"
 msgstr ""
 
-#: archive.php:38
+#: archive.php:39
 msgctxt "yearly archives date format"
 msgid "Y"
 msgstr ""
 
-#: archive.php:40
+#: archive.php:41
 msgid "Blog Archives"
 msgstr ""
 
-#: author.php:28
+#: author.php:29
 msgid "Author Archives: %s"
 msgstr ""
 
-#: author.php:47 loop-single.php:46
+#: author.php:49 loop-single.php:57
 msgid "About %s"
 msgstr ""
 
-#: category.php:16
+#: category.php:17
 msgid "Category Archives: %s"
 msgstr ""
 
@@ -62,252 +62,260 @@ msgstr ""
 msgid "This post is password protected. Enter the password to view any comments."
 msgstr ""
 
-#: comments.php:36
-msgid "One Response to %2$s"
+#. translators: %s: The post title.
+
+#: comments.php:40
+msgid "One Response to %s"
+msgstr ""
+
+#. translators: %1$s: The number of comments. %2$s: The post title.
+
+#: comments.php:46
+msgid "%1$s Response to %2$s"
 msgid_plural "%1$s Responses to %2$s"
 msgstr[0] ""
 msgstr[1] ""
 
-#: comments.php:42 comments.php:62
+#: comments.php:56 comments.php:76
 msgid "<span class=\"meta-nav\">&larr;</span> Older Comments"
 msgstr ""
 
-#: comments.php:43 comments.php:63
+#: comments.php:57 comments.php:77
 msgid "Newer Comments <span class=\"meta-nav\">&rarr;</span>"
 msgstr ""
 
-#: comments.php:73
+#: comments.php:88
 msgid "Comments are closed."
 msgstr ""
 
-#: footer.php:45
+#: footer.php:46
 msgid "https://wordpress.org/"
 msgstr ""
 
-#: footer.php:45
+#: footer.php:46
 msgid "Semantic Personal Publishing Platform"
 msgstr ""
 
-#: footer.php:46
+#: footer.php:47
 msgid "Proudly powered by %s."
 msgstr ""
 
-#: functions.php:87
+#: functions.php:92
 msgid "Blue"
 msgstr ""
 
-#: functions.php:92
+#: functions.php:97
 msgid "Black"
 msgstr ""
 
-#: functions.php:97
+#: functions.php:102
 msgid "Medium Gray"
 msgstr ""
 
-#: functions.php:102
+#: functions.php:107
 msgid "Light Gray"
 msgstr ""
 
-#: functions.php:107
+#: functions.php:112
 msgid "White"
 msgstr ""
 
-#: functions.php:130
+#: functions.php:137
 msgid "Primary Navigation"
 msgstr ""
 
 #. translators: header image description
 
-#: functions.php:200
+#: functions.php:212
 msgid "Berries"
 msgstr ""
 
 #. translators: header image description
 
-#: functions.php:206
+#: functions.php:218
 msgid "Cherry Blossoms"
 msgstr ""
 
 #. translators: header image description
 
-#: functions.php:212
+#: functions.php:224
 msgid "Concave"
 msgstr ""
 
 #. translators: header image description
 
-#: functions.php:218
+#: functions.php:230
 msgid "Fern"
 msgstr ""
 
 #. translators: header image description
 
-#: functions.php:224
+#: functions.php:236
 msgid "Forest Floor"
 msgstr ""
 
 #. translators: header image description
 
-#: functions.php:230
+#: functions.php:242
 msgid "Inkwell"
 msgstr ""
 
 #. translators: header image description
 
-#: functions.php:236
+#: functions.php:248
 msgid "Path"
 msgstr ""
 
 #. translators: header image description
 
-#: functions.php:242
+#: functions.php:254
 msgid "Sunset"
 msgstr ""
 
-#: functions.php:315 loop-attachment.php:119 loop.php:116 loop.php:144
+#: functions.php:329 loop-attachment.php:151 loop.php:124 loop.php:152
 msgid "Continue reading <span class=\"meta-nav\">&rarr;</span>"
 msgstr ""
 
-#: functions.php:411
+#: functions.php:426
 msgid "%s <span class=\"says\">says:</span>"
 msgstr ""
 
-#: functions.php:414
+#: functions.php:429
 msgid "Your comment is awaiting moderation."
 msgstr ""
 
 #. translators: 1: date, 2: time
 
-#: functions.php:421
+#: functions.php:436
 msgid "%1$s at %2$s"
 msgstr ""
 
-#: functions.php:421 functions.php:438
+#: functions.php:440 functions.php:467
 msgid "(Edit)"
 msgstr ""
 
-#: functions.php:438
+#: functions.php:467
 msgid "Pingback:"
 msgstr ""
 
-#: functions.php:458
+#: functions.php:488
 msgid "Primary Widget Area"
 msgstr ""
 
-#: functions.php:460
+#: functions.php:490
 msgid "Add widgets here to appear in your sidebar."
 msgstr ""
 
-#: functions.php:469
+#: functions.php:501
 msgid "Secondary Widget Area"
 msgstr ""
 
-#: functions.php:471
+#: functions.php:503
 msgid "An optional secondary widget area, displays below the primary widget area in your sidebar."
 msgstr ""
 
-#: functions.php:480
+#: functions.php:514
 msgid "First Footer Widget Area"
 msgstr ""
 
-#: functions.php:482 functions.php:493 functions.php:504 functions.php:515
+#: functions.php:516 functions.php:529 functions.php:542 functions.php:555
 msgid "An optional widget area for your site footer."
 msgstr ""
 
-#: functions.php:491
+#: functions.php:527
 msgid "Second Footer Widget Area"
 msgstr ""
 
-#: functions.php:502
+#: functions.php:540
 msgid "Third Footer Widget Area"
 msgstr ""
 
-#: functions.php:513
+#: functions.php:553
 msgid "Fourth Footer Widget Area"
 msgstr ""
 
-#: functions.php:549
+#: functions.php:591
 msgid "<span class=\"%1$s\">Posted on</span> %2$s <span class=\"meta-sep\">by</span> %3$s"
 msgstr ""
 
-#: functions.php:558 loop-attachment.php:36
+#: functions.php:602 loop-attachment.php:44
 msgid "View all posts by %s"
 msgstr ""
 
-#: functions.php:575
+#: functions.php:619
 msgid "This entry was posted in %1$s and tagged %2$s. Bookmark the <a href=\"%3$s\" title=\"Permalink to %4$s\" rel=\"bookmark\">permalink</a>."
 msgstr ""
 
-#: functions.php:577
+#: functions.php:621
 msgid "This entry was posted in %1$s. Bookmark the <a href=\"%3$s\" title=\"Permalink to %4$s\" rel=\"bookmark\">permalink</a>."
 msgstr ""
 
-#: functions.php:579
+#: functions.php:623
 msgid "Bookmark the <a href=\"%3$s\" title=\"Permalink to %4$s\" rel=\"bookmark\">permalink</a>."
 msgstr ""
 
-#: header.php:33
+#: header.php:35
 msgid "Page %s"
 msgstr ""
 
-#: header.php:105
+#: header.php:111
 msgid "Skip to content"
 msgstr ""
 
-#: loop-attachment.php:21
+#: loop-attachment.php:25
 msgid "Return to %s"
 msgstr ""
 
 #. translators: %s - title of parent post
 
-#: loop-attachment.php:23
+#: loop-attachment.php:28
 msgid "<span class=\"meta-nav\">&larr;</span> %s"
 msgstr ""
 
-#: loop-attachment.php:32
+#: loop-attachment.php:39
 msgid "<span class=\"%1$s\">By</span> %2$s"
 msgstr ""
 
-#: loop-attachment.php:43
+#: loop-attachment.php:52
 msgid "<span class=\"%1$s\">Published</span> %2$s"
 msgstr ""
 
-#: loop-attachment.php:53
+#: loop-attachment.php:64
 msgid "Full size is %s pixels"
 msgstr ""
 
-#: loop-attachment.php:56
+#: loop-attachment.php:68
 msgid "Link to full-size image"
 msgstr ""
 
-#: loop-attachment.php:63 loop-attachment.php:126 loop-page.php:30
-#: loop-single.php:59 loop.php:101 loop.php:124 loop.php:166
+#: loop-attachment.php:75 loop-attachment.php:165 loop-page.php:41
+#: loop-single.php:70 loop.php:109 loop.php:132 loop.php:181
 msgid "Edit"
 msgstr ""
 
-#: loop-attachment.php:120 loop-page.php:29 loop-single.php:34 loop.php:145
+#: loop-attachment.php:155 loop-page.php:36 loop-single.php:41 loop.php:156
 msgid "Pages:"
 msgstr ""
 
-#: loop-single.php:21 loop-single.php:64
+#: loop-single.php:25 loop-single.php:75
 msgctxt "Previous post link"
 msgid "&larr;"
 msgstr ""
 
-#: loop-single.php:22 loop-single.php:65
+#: loop-single.php:26 loop-single.php:76
 msgctxt "Next post link"
 msgid "&rarr;"
 msgstr ""
 
-#: loop-single.php:50
+#: loop-single.php:61
 msgid "View all posts by %s <span class=\"meta-nav\">&rarr;</span>"
 msgstr ""
 
-#: loop.php:25 loop.php:179
+#: loop.php:25 loop.php:194
 msgid "<span class=\"meta-nav\">&larr;</span> Older posts"
 msgstr ""
 
-#: loop.php:26 loop.php:180
+#: loop.php:26 loop.php:195
 msgid "Newer posts <span class=\"meta-nav\">&rarr;</span>"
 msgstr ""
 
@@ -315,55 +323,55 @@ msgstr ""
 msgid "Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post."
 msgstr ""
 
-#: loop.php:62 loop.php:96
+#: loop.php:65 loop.php:104
 msgctxt "gallery category slug"
 msgid "gallery"
 msgstr ""
 
-#: loop.php:83
+#: loop.php:89
 msgid "This gallery contains <a %1$s>%2$s photo</a>."
 msgid_plural "This gallery contains <a %1$s>%2$s photos</a>."
 msgstr[0] ""
 msgstr[1] ""
 
-#: loop.php:84
+#: loop.php:90
 msgid "Permalink to %s"
 msgstr ""
 
-#: loop.php:94
+#: loop.php:102
 msgid "View Galleries"
 msgstr ""
 
-#: loop.php:94 loop.php:97
+#: loop.php:102 loop.php:105
 msgid "More Galleries"
 msgstr ""
 
-#: loop.php:97
+#: loop.php:105
 msgid "View posts in the Gallery category"
 msgstr ""
 
-#: loop.php:100 loop.php:123 loop.php:165
+#: loop.php:108 loop.php:131 loop.php:180
 msgid "Leave a comment"
 msgstr ""
 
-#: loop.php:100 loop.php:123 loop.php:165
+#: loop.php:108 loop.php:131 loop.php:180
 msgid "1 Comment"
 msgstr ""
 
-#: loop.php:100 loop.php:123 loop.php:165
+#: loop.php:108 loop.php:131 loop.php:180
 msgid "% Comments"
 msgstr ""
 
-#: loop.php:107
+#: loop.php:115
 msgctxt "asides category slug"
 msgid "asides"
 msgstr ""
 
-#: loop.php:152
+#: loop.php:167
 msgid "<span class=\"%1$s\">Posted in</span> %2$s"
 msgstr ""
 
-#: loop.php:161
+#: loop.php:176
 msgid "<span class=\"%1$s\">Tagged</span> %2$s"
 msgstr ""
 
@@ -379,15 +387,15 @@ msgstr ""
 msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords."
 msgstr ""
 
-#: sidebar.php:28
+#: sidebar.php:29
 msgid "Archives"
 msgstr ""
 
-#: sidebar.php:35
+#: sidebar.php:36
 msgid "Meta"
 msgstr ""
 
-#: tag.php:16
+#: tag.php:17
 msgid "Tag Archives: %s"
 msgstr ""
 #. Theme Name of the plugin/theme
diff --git a/wp-content/themes/twentyten/loop-attachment.php b/wp-content/themes/twentyten/loop-attachment.php
index a2dfae6e241dd9e7819fec152dcd7a328d8e0e23..72ae5110707d366f454ee27a2209f9857196fafa 100644
--- a/wp-content/themes/twentyten/loop-attachment.php
+++ b/wp-content/themes/twentyten/loop-attachment.php
@@ -15,34 +15,44 @@
  */
 ?>
 
-<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
+<?php
+if ( have_posts() ) {
+	while ( have_posts() ) :
+		the_post();
+		?>
 
 				<?php if ( ! empty( $post->post_parent ) ) : ?>
-					<p class="page-title"><a href="<?php echo esc_url( get_permalink( $post->post_parent ) ); ?>" title="<?php echo esc_attr( sprintf( __( 'Return to %s', 'twentyten' ), strip_tags( get_the_title( $post->post_parent ) ) ) ); ?>" rel="gallery"><?php
-						/* translators: %s - title of parent post */
-						printf( __( '<span class="meta-nav">&larr;</span> %s', 'twentyten' ), get_the_title( $post->post_parent ) );
-					?></a></p>
+					<p class="page-title"><a href="<?php echo esc_url( get_permalink( $post->post_parent ) ); ?>" title="<?php echo esc_attr( sprintf( __( 'Return to %s', 'twentyten' ), strip_tags( get_the_title( $post->post_parent ) ) ) ); ?>" rel="gallery">
+																<?php
+																/* translators: %s - title of parent post */
+																printf( __( '<span class="meta-nav">&larr;</span> %s', 'twentyten' ), get_the_title( $post->post_parent ) );
+																?>
+					</a></p>
 				<?php endif; ?>
 
-				<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+					<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
 					<h2 class="entry-title"><?php the_title(); ?></h2>
 
 					<div class="entry-meta">
 						<?php
-							printf( __( '<span class="%1$s">By</span> %2$s', 'twentyten' ),
+							printf(
+								__( '<span class="%1$s">By</span> %2$s', 'twentyten' ),
 								'meta-prep meta-prep-author',
-								sprintf( '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s" rel="author">%3$s</a></span>',
+								sprintf(
+									'<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s" rel="author">%3$s</a></span>',
 									get_author_posts_url( get_the_author_meta( 'ID' ) ),
 									esc_attr( sprintf( __( 'View all posts by %s', 'twentyten' ), get_the_author() ) ),
 									get_the_author()
 								)
 							);
 						?>
-						<span class="meta-sep">|</span>
-						<?php
-							printf( __( '<span class="%1$s">Published</span> %2$s', 'twentyten' ),
+							<span class="meta-sep">|</span>
+							<?php
+							printf(
+								__( '<span class="%1$s">Published</span> %2$s', 'twentyten' ),
 								'meta-prep meta-prep-entry-date',
-								sprintf( '<span class="entry-date"><abbr class="published" title="%1$s">%2$s</abbr></span>',
+								sprintf(
+									'<span class="entry-date"><abbr class="published" title="%1$s">%2$s</abbr></span>',
 									esc_attr( get_the_time() ),
 									get_the_date()
 								)
@@ -50,8 +60,10 @@
 							if ( wp_attachment_is_image() ) {
 								echo ' <span class="meta-sep">|</span> ';
 								$metadata = wp_get_attachment_metadata();
-								printf( __( 'Full size is %s pixels', 'twentyten' ),
-									sprintf( '<a href="%1$s" title="%2$s">%3$s &times; %4$s</a>',
+								printf(
+									__( 'Full size is %s pixels', 'twentyten' ),
+									sprintf(
+										'<a href="%1$s" title="%2$s">%3$s &times; %4$s</a>',
 										esc_url( wp_get_attachment_url() ),
 										esc_attr( __( 'Link to full-size image', 'twentyten' ) ),
 										$metadata['width'],
@@ -59,65 +71,92 @@
 									)
 								);
 							}
-						?>
-						<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>
-					</div><!-- .entry-meta -->
+							?>
+							<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>
+						</div><!-- .entry-meta -->
 
-					<div class="entry-content">
+						<div class="entry-content">
 						<div class="entry-attachment">
-<?php if ( wp_attachment_is_image() ) :
-	$attachments = array_values( get_children( array( 'post_parent' => $post->post_parent, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order ID' ) ) );
-	foreach ( $attachments as $k => $attachment ) {
-		if ( $attachment->ID == $post->ID )
-			break;
-	}
+		<?php
+		if ( wp_attachment_is_image() ) :
+			$attachments = array_values(
+				get_children(
+					array(
+						'post_parent'    => $post->post_parent,
+						'post_status'    => 'inherit',
+						'post_type'      => 'attachment',
+						'post_mime_type' => 'image',
+						'order'          => 'ASC',
+						'orderby'        => 'menu_order ID',
+					)
+				)
+			);
+			foreach ( $attachments as $k => $attachment ) {
+				if ( $attachment->ID == $post->ID ) {
+					break;
+				}
+			}
 
-	// If there is more than 1 image attachment in a gallery
-	if ( count( $attachments ) > 1 ) {
-		$k++;
-		if ( isset( $attachments[ $k ] ) )
-			// get the URL of the next image attachment
-			$next_attachment_url = get_attachment_link( $attachments[ $k ]->ID );
-		else
-			// or get the URL of the first image attachment
-			$next_attachment_url = get_attachment_link( $attachments[0]->ID );
-	} else {
-		// or, if there's only 1 image attachment, get the URL of the image
-		$next_attachment_url = wp_get_attachment_url();
-	}
-?>
-						<p class="attachment"><a href="<?php echo esc_url( $next_attachment_url ); ?>" title="<?php the_title_attribute(); ?>" rel="attachment"><?php
-							/**
-							 * Filter the Twenty Ten default attachment width.
-							 *
-							 * @since Twenty Ten 1.0
-							 *
-							 * @param int The default attachment width in pixels. Default 900.
-							 */
-							$attachment_width  = apply_filters( 'twentyten_attachment_size', 900 );
-							/**
-							 * Filter the Twenty Ten default attachment height.
-							 *
-							 * @since Twenty Ten 1.0
-							 *
-							 * @param int The default attachment height in pixels. Default 900.
-							 */
-							$attachment_height = apply_filters( 'twentyten_attachment_height', 900 );
-							echo wp_get_attachment_image( $post->ID, array( $attachment_width, $attachment_height ) ); // filterable image width with, essentially, no limit for image height.
-						?></a></p>
+			// If there is more than 1 image attachment in a gallery
+			if ( count( $attachments ) > 1 ) {
+				$k++;
+				if ( isset( $attachments[ $k ] ) ) {
+					// get the URL of the next image attachment
+					$next_attachment_url = get_attachment_link( $attachments[ $k ]->ID );
+				} else {          // or get the URL of the first image attachment
+					$next_attachment_url = get_attachment_link( $attachments[0]->ID );
+				}
+			} else {
+				// or, if there's only 1 image attachment, get the URL of the image
+				$next_attachment_url = wp_get_attachment_url();
+			}
+			?>
+						<p class="attachment"><a href="<?php echo esc_url( $next_attachment_url ); ?>" title="<?php the_title_attribute(); ?>" rel="attachment">
+																	<?php
+																	/**
+																	 * Filter the Twenty Ten default attachment width.
+																	 *
+																	 * @since Twenty Ten 1.0
+																	 *
+																	 * @param int The default attachment width in pixels. Default 900.
+																	 */
+																	$attachment_width = apply_filters( 'twentyten_attachment_size', 900 );
+																	/**
+																	 * Filter the Twenty Ten default attachment height.
+																	 *
+																	 * @since Twenty Ten 1.0
+																	 *
+																	 * @param int The default attachment height in pixels. Default 900.
+																	 */
+																	$attachment_height = apply_filters( 'twentyten_attachment_height', 900 );
+																	echo wp_get_attachment_image( $post->ID, array( $attachment_width, $attachment_height ) ); // filterable image width with, essentially, no limit for image height.
+																	?>
+							</a></p>
 
-						<div id="nav-below" class="navigation">
+							<div id="nav-below" class="navigation">
 							<div class="nav-previous"><?php previous_image_link( false ); ?></div>
 							<div class="nav-next"><?php next_image_link( false ); ?></div>
 						</div><!-- #nav-below -->
-<?php else : ?>
-						<a href="<?php echo esc_url( wp_get_attachment_url() ); ?>" title="<?php the_title_attribute(); ?>" rel="attachment"><?php echo esc_html( basename( get_permalink() ) ); ?></a>
-<?php endif; ?>
+		<?php else : ?>
+						<a href="<?php echo esc_url( wp_get_attachment_url() ); ?>" title="<?php the_title_attribute(); ?>" rel="attachment"><?php echo esc_html( wp_basename( get_permalink() ) ); ?></a>
+	<?php endif; ?>
 						</div><!-- .entry-attachment -->
-						<div class="entry-caption"><?php if ( ! empty( $post->post_excerpt ) ) the_excerpt(); ?></div>
+						<div class="entry-caption">
+						<?php
+						if ( ! empty( $post->post_excerpt ) ) {
+							the_excerpt();}
+						?>
+</div>
 
-<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?>
-<?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?>
+		<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?>
+		<?php
+		wp_link_pages(
+			array(
+				'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ),
+				'after'  => '</div>',
+			)
+		);
+		?>
 
 					</div><!-- .entry-content -->
 
@@ -125,8 +164,9 @@
 						<?php twentyten_posted_in(); ?>
 						<?php edit_post_link( __( 'Edit', 'twentyten' ), ' <span class="edit-link">', '</span>' ); ?>
 					</div><!-- .entry-utility -->
-				</div><!-- #post-## -->
+				</div><!-- #post-<?php the_ID(); ?> -->
 
-<?php comments_template(); ?>
+		<?php comments_template(); ?>
 
-<?php endwhile; // end of the loop. ?>
+<?php endwhile;
+}; // end of the loop. ?>
diff --git a/wp-content/themes/twentyten/loop-page.php b/wp-content/themes/twentyten/loop-page.php
index 989881f74a4e26c947cfd1dbdb616c32dfce6f95..988512baae4fe6df7b83a3fd2c90a34d89defbf3 100644
--- a/wp-content/themes/twentyten/loop-page.php
+++ b/wp-content/themes/twentyten/loop-page.php
@@ -15,7 +15,11 @@
  */
 ?>
 
-<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
+<?php
+if ( have_posts() ) {
+	while ( have_posts() ) :
+		the_post();
+		?>
 
 				<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
 					<?php if ( is_front_page() ) { ?>
@@ -26,11 +30,19 @@
 
 					<div class="entry-content">
 						<?php the_content(); ?>
-						<?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?>
+						<?php
+						wp_link_pages(
+							array(
+								'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ),
+								'after'  => '</div>',
+							)
+						);
+						?>
 						<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="edit-link">', '</span>' ); ?>
 					</div><!-- .entry-content -->
-				</div><!-- #post-## -->
+				</div><!-- #post-<?php the_ID(); ?> -->
 
 				<?php comments_template( '', true ); ?>
 
-<?php endwhile; // end of the loop. ?>
+<?php endwhile;
+}; // end of the loop. ?>
diff --git a/wp-content/themes/twentyten/loop-single.php b/wp-content/themes/twentyten/loop-single.php
index 68dd08f6f8e5a17e61b546b44e40ac24254e155a..cff6a0bd6fa6c8f65b73b020ed0f113a4a1aefc6 100644
--- a/wp-content/themes/twentyten/loop-single.php
+++ b/wp-content/themes/twentyten/loop-single.php
@@ -15,7 +15,11 @@
  */
 ?>
 
-<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
+<?php
+if ( have_posts() ) {
+	while ( have_posts() ) :
+		the_post();
+		?>
 
 				<div id="nav-above" class="navigation">
 					<div class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '&larr;', 'Previous post link', 'twentyten' ) . '</span> %title' ); ?></div>
@@ -31,18 +35,25 @@
 
 					<div class="entry-content">
 						<?php the_content(); ?>
-						<?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?>
+						<?php
+						wp_link_pages(
+							array(
+								'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ),
+								'after'  => '</div>',
+							)
+						);
+						?>
 					</div><!-- .entry-content -->
 
-<?php if ( get_the_author_meta( 'description' ) ) : // If a user has filled out their description, show a bio on their entries  ?>
+		<?php if ( get_the_author_meta( 'description' ) ) : // If a user has filled out their description, show a bio on their entries ?>
 					<div id="entry-author-info">
 						<div id="author-avatar">
 							<?php
 							/** This filter is documented in author.php */
 							echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'twentyten_author_bio_avatar_size', 60 ) );
 							?>
-						</div><!-- #author-avatar -->
-						<div id="author-description">
+							</div><!-- #author-avatar -->
+							<div id="author-description">
 							<h2><?php printf( __( 'About %s', 'twentyten' ), get_the_author() ); ?></h2>
 							<?php the_author_meta( 'description' ); ?>
 							<div id="author-link">
@@ -50,21 +61,22 @@
 									<?php printf( __( 'View all posts by %s <span class="meta-nav">&rarr;</span>', 'twentyten' ), get_the_author() ); ?>
 								</a>
 							</div><!-- #author-link	-->
-						</div><!-- #author-description -->
-					</div><!-- #entry-author-info -->
-<?php endif; ?>
+							</div><!-- #author-description -->
+						</div><!-- #entry-author-info -->
+	<?php endif; ?>
 
-					<div class="entry-utility">
-						<?php twentyten_posted_in(); ?>
-						<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="edit-link">', '</span>' ); ?>
-					</div><!-- .entry-utility -->
-				</div><!-- #post-## -->
+						<div class="entry-utility">
+							<?php twentyten_posted_in(); ?>
+							<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="edit-link">', '</span>' ); ?>
+						</div><!-- .entry-utility -->
+					</div><!-- #post-<?php the_ID(); ?> -->
 
-				<div id="nav-below" class="navigation">
-					<div class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '&larr;', 'Previous post link', 'twentyten' ) . '</span> %title' ); ?></div>
-					<div class="nav-next"><?php next_post_link( '%link', '%title <span class="meta-nav">' . _x( '&rarr;', 'Next post link', 'twentyten' ) . '</span>' ); ?></div>
-				</div><!-- #nav-below -->
+					<div id="nav-below" class="navigation">
+						<div class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '&larr;', 'Previous post link', 'twentyten' ) . '</span> %title' ); ?></div>
+						<div class="nav-next"><?php next_post_link( '%link', '%title <span class="meta-nav">' . _x( '&rarr;', 'Next post link', 'twentyten' ) . '</span>' ); ?></div>
+					</div><!-- #nav-below -->
 
-				<?php comments_template( '', true ); ?>
+					<?php comments_template( '', true ); ?>
 
-<?php endwhile; // end of the loop. ?>
+	<?php endwhile;
+}; // end of the loop. ?>
diff --git a/wp-content/themes/twentyten/loop.php b/wp-content/themes/twentyten/loop.php
index 9f3088544fa4ee230efad6852f9993d8f6fd0abb..8b205a804b6efad4a9e6d02fa956c81897988de6 100644
--- a/wp-content/themes/twentyten/loop.php
+++ b/wp-content/themes/twentyten/loop.php
@@ -55,9 +55,12 @@
 	 * Without further ado, the loop:
 	 */
 ?>
-<?php while ( have_posts() ) : the_post(); ?>
+<?php
+while ( have_posts() ) :
+	the_post();
+	?>
 
-<?php /* How to display posts of the Gallery format. The gallery category is the old way. */ ?>
+	<?php /* How to display posts of the Gallery format. The gallery category is the old way. */ ?>
 
 	<?php if ( ( function_exists( 'get_post_format' ) && 'gallery' == get_post_format( $post->ID ) ) || in_category( _x( 'gallery', 'gallery category slug', 'twentyten' ) ) ) : ?>
 		<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
@@ -68,22 +71,27 @@
 			</div><!-- .entry-meta -->
 
 			<div class="entry-content">
-<?php if ( post_password_required() ) : ?>
+		<?php if ( post_password_required() ) : ?>
 				<?php the_content(); ?>
 <?php else : ?>
 				<?php
 					$images = twentyten_get_gallery_images();
-					if ( $images ) :
-						$total_images = count( $images );
-						$image = reset( $images );
-				?>
-						<div class="gallery-thumb">
-							<a class="size-thumbnail" href="<?php the_permalink(); ?>"><?php echo wp_get_attachment_image( $image, 'thumbnail' ); ?></a>
-						</div><!-- .gallery-thumb -->
-						<p><em><?php printf( _n( 'This gallery contains <a %1$s>%2$s photo</a>.', 'This gallery contains <a %1$s>%2$s photos</a>.', $total_images, 'twentyten' ),
-								'href="' . esc_url( get_permalink() ) . '" title="' . esc_attr( sprintf( __( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ) ) . '" rel="bookmark"',
-								number_format_i18n( $total_images )
-							); ?></em></p>
+				if ( $images ) :
+					$total_images = count( $images );
+					$image        = reset( $images );
+					?>
+					<div class="gallery-thumb">
+						<a class="size-thumbnail" href="<?php the_permalink(); ?>"><?php echo wp_get_attachment_image( $image, 'thumbnail' ); ?></a>
+					</div><!-- .gallery-thumb -->
+					<p><em>
+					<?php
+						printf(
+							_n( 'This gallery contains <a %1$s>%2$s photo</a>.', 'This gallery contains <a %1$s>%2$s photos</a>.', $total_images, 'twentyten' ),
+							'href="' . esc_url( get_permalink() ) . '" title="' . esc_attr( sprintf( __( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ) ) . '" rel="bookmark"',
+							number_format_i18n( $total_images )
+						);
+					?>
+							</em></p>
 				<?php endif; // end twentyten_get_gallery_images() check ?>
 						<?php the_excerpt(); ?>
 <?php endif; ?>
@@ -100,11 +108,11 @@
 				<span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span>
 				<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>
 			</div><!-- .entry-utility -->
-		</div><!-- #post-## -->
+		</div><!-- #post-<?php the_ID(); ?> -->
 
-<?php /* How to display posts of the Aside format. The asides category is the old way. */ ?>
+		<?php /* How to display posts of the Aside format. The asides category is the old way. */ ?>
 
-	<?php elseif ( ( function_exists( 'get_post_format' ) && 'aside' == get_post_format( $post->ID ) ) || in_category( _x( 'asides', 'asides category slug', 'twentyten' ) )  ) : ?>
+	<?php elseif ( ( function_exists( 'get_post_format' ) && 'aside' == get_post_format( $post->ID ) ) || in_category( _x( 'asides', 'asides category slug', 'twentyten' ) ) ) : ?>
 		<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
 
 		<?php if ( is_archive() || is_search() ) : // Display excerpts for archives and search. ?>
@@ -123,9 +131,9 @@
 				<span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span>
 				<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>
 			</div><!-- .entry-utility -->
-		</div><!-- #post-## -->
+		</div><!-- #post-<?php the_ID(); ?> -->
 
-<?php /* How to display all other posts. */ ?>
+		<?php /* How to display all other posts. */ ?>
 
 	<?php else : ?>
 		<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
@@ -135,14 +143,21 @@
 				<?php twentyten_posted_on(); ?>
 			</div><!-- .entry-meta -->
 
-	<?php if ( is_archive() || is_search() ) : // Only display excerpts for archives and search. ?>
+		<?php if ( is_archive() || is_search() ) : // Only display excerpts for archives and search. ?>
 			<div class="entry-summary">
 				<?php the_excerpt(); ?>
 			</div><!-- .entry-summary -->
 	<?php else : ?>
 			<div class="entry-content">
 				<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?>
-				<?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?>
+				<?php
+				wp_link_pages(
+					array(
+						'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ),
+						'after'  => '</div>',
+					)
+				);
+				?>
 			</div><!-- .entry-content -->
 	<?php endif; ?>
 
@@ -155,17 +170,17 @@
 				<?php endif; ?>
 				<?php
 					$tags_list = get_the_tag_list( '', ', ' );
-					if ( $tags_list ):
-				?>
-					<span class="tag-links">
-						<?php printf( __( '<span class="%1$s">Tagged</span> %2$s', 'twentyten' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list ); ?>
-					</span>
-					<span class="meta-sep">|</span>
+				if ( $tags_list ) :
+					?>
+				<span class="tag-links">
+					<?php printf( __( '<span class="%1$s">Tagged</span> %2$s', 'twentyten' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list ); ?>
+				</span>
+				<span class="meta-sep">|</span>
 				<?php endif; ?>
 				<span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span>
 				<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>
 			</div><!-- .entry-utility -->
-		</div><!-- #post-## -->
+		</div><!-- #post-<?php the_ID(); ?> -->
 
 		<?php comments_template( '', true ); ?>
 
@@ -174,7 +189,7 @@
 <?php endwhile; // End the loop. Whew. ?>
 
 <?php /* Display navigation to next/previous pages when applicable */ ?>
-<?php if (  $wp_query->max_num_pages > 1 ) : ?>
+<?php if ( $wp_query->max_num_pages > 1 ) : ?>
 				<div id="nav-below" class="navigation">
 					<div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&larr;</span> Older posts', 'twentyten' ) ); ?></div>
 					<div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?></div>
diff --git a/wp-content/themes/twentyten/readme.txt b/wp-content/themes/twentyten/readme.txt
index 02f1661f8a06957670c59e702a724d0565cfffb0..75dfde80c761883bc10cd9477c485a5489bdea74 100644
--- a/wp-content/themes/twentyten/readme.txt
+++ b/wp-content/themes/twentyten/readme.txt
@@ -1,8 +1,9 @@
 === Twenty Ten ===
-Contributors: the WordPress team
+Contributors: wordpressdotorg
 Requires at least: WordPress 3.0
 Tested up to: WordPress 5.0
-Stable tag: 2.7
+Requires PHP: 5.2.4
+Stable tag: 2.9
 License: GPLv2 or later
 License URI: http://www.gnu.org/licenses/gpl-2.0.html
 Tags: blog, two-columns, custom-header, custom-background, threaded-comments, sticky-post, translation-ready, microformats, rtl-language-support, editor-style, custom-menu, flexible-header, featured-images, footer-widgets, featured-image-header
@@ -37,6 +38,16 @@ GNU General Public License for more details.
 
 == Changelog ==
 
+= 2.9 =
+* Released: May 7, 2019
+
+https://codex.wordpress.org/Twenty_Ten_Theme_Changelog#Version_2.9
+
+= 2.8 =
+* Released: February 21, 2019
+
+https://codex.wordpress.org/Twenty_Ten_Theme_Changelog#Version_2.8
+
 = 2.7 =
 * Released: December 19, 2018
 
diff --git a/wp-content/themes/twentyten/sidebar-footer.php b/wp-content/themes/twentyten/sidebar-footer.php
index c055ad1cd8bd45a7457685ce0af4423bbd63f116..b4480ee51ae42e9540563ae3d57504ffdb746d82 100644
--- a/wp-content/themes/twentyten/sidebar-footer.php
+++ b/wp-content/themes/twentyten/sidebar-footer.php
@@ -15,12 +15,13 @@
 	 *
 	 * If none of the sidebars have widgets, then let's bail early.
 	 */
-	if (   ! is_active_sidebar( 'first-footer-widget-area'  )
+if ( ! is_active_sidebar( 'first-footer-widget-area' )
 		&& ! is_active_sidebar( 'second-footer-widget-area' )
-		&& ! is_active_sidebar( 'third-footer-widget-area'  )
+		&& ! is_active_sidebar( 'third-footer-widget-area' )
 		&& ! is_active_sidebar( 'fourth-footer-widget-area' )
-	)
-		return;
+	) {
+	return;
+}
 	// If we get this far, we have widgets. Let do this.
 ?>
 
diff --git a/wp-content/themes/twentyten/sidebar.php b/wp-content/themes/twentyten/sidebar.php
index 75ec6a12b3c7958b76ea167781b980aa9e975d0e..40018d2f47d4a71a32cd62dc2004eafc60d7aec4 100644
--- a/wp-content/themes/twentyten/sidebar.php
+++ b/wp-content/themes/twentyten/sidebar.php
@@ -18,7 +18,8 @@
 	 * then the sidebar simply doesn't exist, so we'll hard-code in
 	 * some default sidebar stuff just in case.
 	 */
-	if ( ! dynamic_sidebar( 'primary-widget-area' ) ) : ?>
+if ( ! dynamic_sidebar( 'primary-widget-area' ) ) :
+	?>
 
 			<li id="search" class="widget-container widget_search">
 				<?php get_search_form(); ?>
@@ -46,7 +47,8 @@
 
 <?php
 	// A second sidebar for widgets, just because.
-	if ( is_active_sidebar( 'secondary-widget-area' ) ) : ?>
+if ( is_active_sidebar( 'secondary-widget-area' ) ) :
+	?>
 
 		<div id="secondary" class="widget-area" role="complementary">
 			<ul class="xoxo">
diff --git a/wp-content/themes/twentyten/style.css b/wp-content/themes/twentyten/style.css
index ea6a796853c2de1bd75408d31a480cc6a891a7d2..454ec741beac5a2e5fb4bc7e04c9d2b063c460c5 100644
--- a/wp-content/themes/twentyten/style.css
+++ b/wp-content/themes/twentyten/style.css
@@ -4,7 +4,7 @@ Theme URI: https://wordpress.org/themes/twentyten/
 Description: The 2010 theme for WordPress is stylish, customizable, simple, and readable -- make it yours with a custom menu, header image, and background. Twenty Ten supports six widgetized areas (two in the sidebar, four in the footer) and featured images (thumbnails for gallery posts and custom header images for posts and pages). It includes stylesheets for print and the admin Visual Editor, special styles for posts in the "Asides" and "Gallery" categories, and has an optional one-column page template that removes the sidebar.
 Author: the WordPress team
 Author URI: https://wordpress.org/
-Version: 2.7
+Version: 2.9
 License: GNU General Public License v2 or later
 License URI: http://www.gnu.org/licenses/gpl-2.0.html
 Tags: blog, two-columns, custom-header, custom-background, threaded-comments, sticky-post, translation-ready, microformats, rtl-language-support, editor-style, custom-menu, flexible-header, featured-images, footer-widgets, featured-image-header
diff --git a/wp-content/themes/twentyten/tag.php b/wp-content/themes/twentyten/tag.php
index 01ae6cd36c340915273e38d5ec07c28b7f1b3a97..e6fed3014f3f0890ce6f1b1778f9e9d853d886db 100644
--- a/wp-content/themes/twentyten/tag.php
+++ b/wp-content/themes/twentyten/tag.php
@@ -12,9 +12,11 @@ get_header(); ?>
 		<div id="container">
 			<div id="content" role="main">
 
-				<h1 class="page-title"><?php
+				<h1 class="page-title">
+				<?php
 					printf( __( 'Tag Archives: %s', 'twentyten' ), '<span>' . single_tag_title( '', false ) . '</span>' );
-				?></h1>
+				?>
+				</h1>
 
 <?php
 /*