Changeset 24351 for trunk/wp-content/themes/twentythirteen/functions.php
- Timestamp:
- 05/24/2013 09:24:08 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/twentythirteen/functions.php
r24342 r24351 180 180 * 181 181 * @param string $mce_css CSS path to load in TinyMCE. 182 * @return string 182 * @return string The filtered CSS paths list. 183 183 */ 184 184 function twentythirteen_mce_css( $mce_css ) { … … 238 238 * @param string $title Default title text for current view. 239 239 * @param string $sep Optional separator. 240 * @return string Filtered title.240 * @return string The filtered title. 241 241 */ 242 242 function twentythirteen_wp_title( $title, $sep ) { … … 405 405 * 406 406 * @param boolean $echo Whether to echo the date. Default true. 407 * @return string 407 * @return string The HTML-formatted post date. 408 408 */ 409 409 function twentythirteen_entry_date( $echo = true ) { … … 427 427 * Returns the URL from the post. 428 428 * 429 * @uses get_the_ link() to get the URL in the post meta (if it exists) or429 * @uses get_the_post_format_url() to get the URL in the post meta (if it exists) or 430 430 * the first link found in the post content. 431 431 * … … 433 433 * 434 434 * @since Twenty Thirteen 1.0 435 * @return string URL 435 * 436 * @return string The Link format URL. 436 437 */ 437 438 function twentythirteen_get_link_url() { … … 447 448 * 448 449 * @param array $atts Combined and filtered attribute list. 449 * @return array 450 * @return array The filtered attribute list. 450 451 */ 451 452 function twentythirteen_gallery_atts( $atts ) { … … 458 459 459 460 /** 460 * Extends the default WordPress body class to denote: 461 * Extends the default WordPress body classes. 462 * 463 * Adds body classes to denote: 461 464 * 1. Custom fonts enabled. 462 465 * 2. Single or multiple authors. … … 466 469 * @since Twenty Thirteen 1.0 467 470 * 468 * @param array $classes Existingclass values.469 * @return array Filtered class values.471 * @param array $classes A list of existing body class values. 472 * @return array The filtered body class list. 470 473 */ 471 474 function twentythirteen_body_class( $classes ) { … … 508 511 * @since Twenty Thirteen 1.0 509 512 * 510 * @param array $atts Attribute list.511 * @return array Filtered attribute list.513 * @param array $atts The attribute list. 514 * @return array The filtered attribute list. 512 515 */ 513 516 function twentythirteen_video_width( $atts ) {
Note: See TracChangeset
for help on using the changeset viewer.