Make WordPress Core


Ignore:
Timestamp:
10/11/2013 10:01:14 PM (12 years ago)
Author:
lancewillett
Message:

Twenty Fourteen: first pass for updating code comments to reflect WP inline docs standards, see #25257.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentyfourteen/inc/template-tags.php

    r25743 r25769  
    11<?php
    22/**
    3  * Custom template tags for this theme.
     3 * Custom template tags for Twenty Fourteen
    44 *
    55 * @package WordPress
    66 * @subpackage Twenty_Fourteen
     7 * @since Twenty Fourteen 1.0
    78 */
    89
    910if ( ! function_exists( 'twentyfourteen_paging_nav' ) ) :
    1011/**
    11  * Displays navigation to next/previous set of posts when applicable.
     12 * Display navigation to next/previous set of posts when applicable.
     13 *
     14 * @since Twenty Fourteen 1.0
    1215 *
    1316 * @return void
     
    5962if ( ! function_exists( 'twentyfourteen_post_nav' ) ) :
    6063/**
    61  * Displays navigation to next/previous post when applicable.
    62 *
    63 * @return void
    64 */
     64 * Display navigation to next/previous post when applicable.
     65 *
     66 * @since Twenty Fourteen 1.0
     67 *
     68 * @return void
     69 */
    6570function twentyfourteen_post_nav() {
    6671    // Don't print empty markup if there's nowhere to navigate.
     
    8792if ( ! function_exists( 'twentyfourteen_posted_on' ) ) :
    8893/**
    89  * Prints HTML with meta information for the current post-date/time and author.
     94 * Print HTML with meta information for the current post-date/time and author.
     95 *
     96 * @since Twenty Fourteen 1.0
    9097 *
    9198 * @return void
     
    106113
    107114/**
    108  * Returns true if a blog has more than 1 category
     115 * Find out if blog has more than one category.
    109116 *
    110  * @return boolean
     117 * @since Twenty Fourteen 1.0
     118 *
     119 * @return boolean true if blog has more than 1 category
    111120 */
    112121function twentyfourteen_categorized_blog() {
     
    135144 * Flush out the transients used in twentyfourteen_categorized_blog
    136145 *
     146 * @since Twenty Fourteen 1.0
     147 *
     148 * @return void
    137149 */
    138150function twentyfourteen_category_transient_flusher() {
     
    144156
    145157/**
    146  * Displays featured image with appropriate html tag.
     158 * Display featured image with appropriate HTML tag.
     159 *
     160 * @since Twenty Fourteen 1.0
    147161 *
    148162 * @return void
Note: See TracChangeset for help on using the changeset viewer.