Changeset 13152
- Timestamp:
- 02/14/2010 11:52:27 AM (15 years ago)
- Location:
- trunk/wp-content/themes/twentyten
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/twentyten/functions.php
r13147 r13152 127 127 function twentyten_term_list($taxonomy, $glue = ', ', $text = '', $also_text = '') { 128 128 global $wp_query, $post; 129 $current_term = $wp_query-> queried_object;129 $current_term = $wp_query->get_queried_object(); 130 130 $terms = wp_get_object_terms($post->ID, $taxonomy); 131 131 // If we're viewing a Taxonomy page.. -
trunk/wp-content/themes/twentyten/header.php
r13144 r13152 25 25 26 26 <?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?> 27 27 <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" /> 28 28 <?php wp_head(); ?> 29 30 <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />31 29 </head> 32 30
Note: See TracChangeset
for help on using the changeset viewer.