- Timestamp:
- 09/20/2013 07:33:23 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentythirteen/inc/custom-header.php
r25129 r25522 1 1 <?php 2 2 /** 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 5 6 * 6 7 * @package WordPress … … 10 11 11 12 /** 12 * Set sup the WordPress core custom header arguments and settings.13 * Set up the WordPress core custom header arguments and settings. 13 14 * 14 15 * @uses add_theme_support() to register support for 3.4 and up. … … 19 20 * 20 21 * @since Twenty Thirteen 1.0 22 * 23 * @return void 21 24 */ 22 25 function twentythirteen_custom_header_setup() { … … 38 41 add_theme_support( 'custom-header', $args ); 39 42 40 /* 43 /** 41 44 * Default custom headers packaged with the theme. 42 45 * %s is a placeholder for the theme template directory URI. … … 63 66 64 67 /** 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 68 73 */ 69 74 function twentythirteen_custom_header_fonts() { … … 77 82 78 83 /** 79 * Style sthe header text displayed on the blog.84 * Style the header text displayed on the blog. 80 85 * 81 86 * get_header_textcolor() options: Hide text (returns 'blank'), or any hex value. 82 87 * 83 88 * @since Twenty Thirteen 1.0 89 * 90 * @return void 84 91 */ 85 92 function twentythirteen_header_style() { … … 135 142 136 143 /** 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 140 149 */ 141 150 function twentythirteen_admin_header_style() { … … 199 208 200 209 /** 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 * 202 212 * This callback overrides the default markup displayed there. 203 213 * 204 214 * @since Twenty Thirteen 1.0 215 * 216 * @return void 205 217 */ 206 218 function twentythirteen_admin_header_image() {
Note: See TracChangeset
for help on using the changeset viewer.