- Timestamp:
- 07/01/2019 08:22:31 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentysixteen/inc/template-tags.php
r45256 r45581 210 210 */ 211 211 function twentysixteen_categorized_blog() { 212 if ( false === ( $all_the_cool_cats = get_transient( 'twentysixteen_categories' ) ) ) { 212 $all_the_cool_cats = get_transient( 'twentysixteen_categories' ); 213 if ( false === $all_the_cool_cats ) { 213 214 // Create an array of all the categories that are attached to posts. 214 215 $all_the_cool_cats = get_categories(
Note: See TracChangeset
for help on using the changeset viewer.