Changeset 6530 for trunk/wp-admin/themes.php
- Timestamp:
- 12/31/2007 06:39:43 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/themes.php
r6334 r6530 41 41 <p><?php printf(__('All of this theme’s files are located in <code>%2$s</code>.'), $ct->title, $ct->template_dir, $ct->stylesheet_dir); ?></p> 42 42 <?php } ?> 43 <?php if ( $ct->tags ) : ?> 44 <p><?php _e('Tags:'); ?> <?php echo join(', ', $ct->tags); ?></p> 45 <?php endif; ?> 43 46 </div> 44 47 … … 63 66 $screenshot = $themes[$theme_name]['Screenshot']; 64 67 $stylesheet_dir = $themes[$theme_name]['Stylesheet Dir']; 68 $tags = $themes[$theme_name]['Tags']; 65 69 $activate_link = wp_nonce_url("themes.php?action=activate&template=".urlencode($template)."&stylesheet=".urlencode($stylesheet), 'switch-theme_' . $template); 66 70 ?> … … 75 79 76 80 <p><?php echo $description; ?></p> 81 <?php if ( $tags ) : ?> 82 <p><?php _e('Tags:'); ?> <?php echo join(', ', $tags); ?></p> 83 <?php endif; ?> 77 84 </div> 78 85 <?php } // end foreach theme_names ?>
Note: See TracChangeset
for help on using the changeset viewer.