Make WordPress Core


Ignore:
Timestamp:
09/20/2013 07:33:23 PM (11 years ago)
Author:
lancewillett
Message:

Twenty Thirteen: update code comments to reflect WP inline docs standards. Props DrewAPicture, see #25256.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentythirteen/inc/custom-header.php

    r25129 r25522  
    11<?php
    22/**
    3  * Implements a custom header for Twenty Thirteen.
    4  * See http://codex.wordpress.org/Custom_Headers
     3 * Implement a custom header for Twenty Thirteen
     4 *
     5 * @link http://codex.wordpress.org/Custom_Headers
    56 *
    67 * @package WordPress
     
    1011
    1112/**
    12  * Sets up the WordPress core custom header arguments and settings.
     13 * Set up the WordPress core custom header arguments and settings.
    1314 *
    1415 * @uses add_theme_support() to register support for 3.4 and up.
     
    1920 *
    2021 * @since Twenty Thirteen 1.0
     22 *
     23 * @return void
    2124 */
    2225function twentythirteen_custom_header_setup() {
     
    3841    add_theme_support( 'custom-header', $args );
    3942
    40     /*
     43    /**
    4144     * Default custom headers packaged with the theme.
    4245     * %s is a placeholder for the theme template directory URI.
     
    6366
    6467/**
    65  * Loads our special font CSS files.
    66  *
    67  * @since Twenty Thirteen 1.0
     68 * Load our special font CSS files.
     69 *
     70 * @since Twenty Thirteen 1.0
     71 *
     72 * @return void
    6873 */
    6974function twentythirteen_custom_header_fonts() {
     
    7782
    7883/**
    79  * Styles the header text displayed on the blog.
     84 * Style the header text displayed on the blog.
    8085 *
    8186 * get_header_textcolor() options: Hide text (returns 'blank'), or any hex value.
    8287 *
    8388 * @since Twenty Thirteen 1.0
     89 *
     90 * @return void
    8491 */
    8592function twentythirteen_header_style() {
     
    135142
    136143/**
    137  * Styles the header image displayed on the Appearance > Header admin panel.
    138  *
    139  * @since Twenty Thirteen 1.0
     144 * Style the header image displayed on the Appearance > Header admin panel.
     145 *
     146 * @since Twenty Thirteen 1.0
     147 *
     148 * @return void
    140149 */
    141150function twentythirteen_admin_header_style() {
     
    199208
    200209/**
    201  * Outputs markup to be displayed on the Appearance > Header admin panel.
     210 * Output markup to be displayed on the Appearance > Header admin panel.
     211 *
    202212 * This callback overrides the default markup displayed there.
    203213 *
    204214 * @since Twenty Thirteen 1.0
     215 *
     216 * @return void
    205217 */
    206218function twentythirteen_admin_header_image() {
Note: See TracChangeset for help on using the changeset viewer.