- Timestamp:
- 11/25/2014 08:56:33 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyfifteen/inc/template-tags.php
r30372 r30569 1 1 <?php 2 2 /** 3 * Custom template tags for this theme.3 * Custom template tags for Twenty Fifteen 4 4 * 5 5 * Eventually, some of the functionality here could be replaced by core features. … … 127 127 128 128 /** 129 * Returns true if a blog has more than 1category.130 * 131 * @since Twenty Fifteen 1.0 132 * 133 * @return bool 129 * Determine whether blog/site has more than one category. 130 * 131 * @since Twenty Fifteen 1.0 132 * 133 * @return bool True of there is more than one category, false otherwise. 134 134 */ 135 135 function twentyfifteen_categorized_blog() { … … 160 160 161 161 /** 162 * Flush out the transients used in twentyfifteen_categorized_blog.162 * Flush out the transients used in {@see twentyfifteen_categorized_blog()}. 163 163 * 164 164 * @since Twenty Fifteen 1.0 … … 211 211 * 212 212 * @since Twenty Fifteen 1.0 213 * @uses get_url_in_content() 213 * 214 * @see get_url_in_content() 214 215 * 215 216 * @return string The Link format URL. … … 224 225 if ( ! function_exists( 'twentyfifteen_excerpt_more' ) && ! is_admin() ) : 225 226 /** 226 * Replaces "[...]" (appended to automatically generated excerpts) with ... and a Continue reading link. 227 * 228 * @since Twenty Fifteen 1.0 229 * 227 * Replaces "[...]" (appended to automatically generated excerpts) with ... and a 'Continue reading' link. 228 * 229 * @since Twenty Fifteen 1.0 230 * 231 * @return string 'Continue reading' link prepended with an ellipsis. 230 232 */ 231 233 function twentyfifteen_excerpt_more( $more ) {
Note: See TracChangeset
for help on using the changeset viewer.