- Timestamp:
- 12/03/2013 05:05:53 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyfourteen/inc/template-tags.php
r26260 r26556 37 37 $format .= $GLOBALS['wp_rewrite']->using_permalinks() ? user_trailingslashit( 'page/%#%', 'paged' ) : '?paged=%#%'; 38 38 39 $links = paginate_links( array( 39 // Set up paginated links. 40 $links = paginate_links( array( 40 41 'base' => $pagenum_link, 41 42 'format' => $format, … … 110 111 } 111 112 113 // Set up and print post meta information. 112 114 printf( __( '<span class="entry-date"><a href="%1$s" rel="bookmark"><time class="entry-date" datetime="%2$s">%3$s</time></a></span> <span class="byline"><span class="author vcard"><a class="url fn n" href="%4$s" rel="author">%5$s</a></span></span>', 'twentyfourteen' ), 113 115 esc_url( get_permalink() ), … … 150 152 151 153 /** 152 * Flush out the transients used in twentyfourteen_categorized_blog 154 * Flush out the transients used in twentyfourteen_categorized_blog. 153 155 * 154 156 * @since Twenty Fourteen 1.0 … … 164 166 165 167 /** 166 * Displays an optional post thumbnail, with an anchor element 167 * when on index views, and a div element when on a single view. 168 * Display an optional post thumbnail on a single view. 169 * 170 * Adds an anchor element to the post thumbnail, when on 171 * index views, and a div element when on a single view. 168 172 * 169 173 * @since Twenty Fourteen 1.0
Note: See TracChangeset
for help on using the changeset viewer.