]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-content/themes/twentytwelve/inc/custom-header.php
WordPress 3.9-scripts
[autoinstalls/wordpress.git] / wp-content / themes / twentytwelve / inc / custom-header.php
index 595bf98f5a7edcdf48645173f5757b9e9eea2bc4..1657effaf4bb1a6a8ee46f89e988d85b37f7c62d 100644 (file)
@@ -1,6 +1,7 @@
 <?php
 /**
- * Implements an optional custom header for Twenty Twelve.
+ * Implement an optional custom header for Twenty Twelve
+ *
  * See http://codex.wordpress.org/Custom_Headers
  *
  * @package WordPress
@@ -9,7 +10,7 @@
  */
 
 /**
- * Sets up the WordPress core custom header arguments and settings.
+ * Set up the WordPress core custom header arguments and settings.
  *
  * @uses add_theme_support() to register support for 3.4 and up.
  * @uses twentytwelve_header_style() to style front-end.
@@ -47,11 +48,9 @@ function twentytwelve_custom_header_setup() {
 add_action( 'after_setup_theme', 'twentytwelve_custom_header_setup' );
 
 /**
- * Loads our special font CSS file.
+ * Load our special font CSS file.
  *
  * @since Twenty Twelve 1.2
- *
- * @return void
  */
 function twentytwelve_custom_header_fonts() {
        $font_url = twentytwelve_get_font_url();
@@ -61,7 +60,7 @@ function twentytwelve_custom_header_fonts() {
 add_action( 'admin_print_styles-appearance_page_custom-header', 'twentytwelve_custom_header_fonts' );
 
 /**
- * Styles the header text displayed on the blog.
+ * Style the header text displayed on the blog.
  *
  * get_header_textcolor() options: 515151 is default, hide text (returns 'blank'), or any hex value.
  *
@@ -101,7 +100,7 @@ function twentytwelve_header_style() {
 }
 
 /**
- * Styles the header image displayed on the Appearance > Header admin panel.
+ * Style the header image displayed on the Appearance > Header admin panel.
  *
  * @since Twenty Twelve 1.0
  */
@@ -141,7 +140,8 @@ function twentytwelve_admin_header_style() {
 }
 
 /**
- * Outputs markup to be displayed on the Appearance > Header admin panel.
+ * Output markup to be displayed on the Appearance > Header admin panel.
+ *
  * This callback overrides the default markup displayed there.
  *
  * @since Twenty Twelve 1.0