- Timestamp:
- 10/11/2013 10:01:14 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyfourteen/inc/template-tags.php
r25743 r25769 1 1 <?php 2 2 /** 3 * Custom template tags for this theme.3 * Custom template tags for Twenty Fourteen 4 4 * 5 5 * @package WordPress 6 6 * @subpackage Twenty_Fourteen 7 * @since Twenty Fourteen 1.0 7 8 */ 8 9 9 10 if ( ! function_exists( 'twentyfourteen_paging_nav' ) ) : 10 11 /** 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 12 15 * 13 16 * @return void … … 59 62 if ( ! function_exists( 'twentyfourteen_post_nav' ) ) : 60 63 /** 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 */ 65 70 function twentyfourteen_post_nav() { 66 71 // Don't print empty markup if there's nowhere to navigate. … … 87 92 if ( ! function_exists( 'twentyfourteen_posted_on' ) ) : 88 93 /** 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 90 97 * 91 98 * @return void … … 106 113 107 114 /** 108 * Returns true if a blog has more than 1 category115 * Find out if blog has more than one category. 109 116 * 110 * @return boolean 117 * @since Twenty Fourteen 1.0 118 * 119 * @return boolean true if blog has more than 1 category 111 120 */ 112 121 function twentyfourteen_categorized_blog() { … … 135 144 * Flush out the transients used in twentyfourteen_categorized_blog 136 145 * 146 * @since Twenty Fourteen 1.0 147 * 148 * @return void 137 149 */ 138 150 function twentyfourteen_category_transient_flusher() { … … 144 156 145 157 /** 146 * Displays featured image with appropriate html tag. 158 * Display featured image with appropriate HTML tag. 159 * 160 * @since Twenty Fourteen 1.0 147 161 * 148 162 * @return void
Note: See TracChangeset
for help on using the changeset viewer.