Use $wp_query->get_queried_object(). Also move wp_head() to end of <head>, see #9015.
git-svn-id: https://develop.svn.wordpress.org/trunk@13152 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
a498c11da0
commit
f67f4d7405
@ -126,7 +126,7 @@ function twentyten_tag_list() {
|
||||
}
|
||||
function twentyten_term_list($taxonomy, $glue = ', ', $text = '', $also_text = '') {
|
||||
global $wp_query, $post;
|
||||
$current_term = $wp_query->queried_object;
|
||||
$current_term = $wp_query->get_queried_object();
|
||||
$terms = wp_get_object_terms($post->ID, $taxonomy);
|
||||
// If we're viewing a Taxonomy page..
|
||||
if ( isset($current_term->taxonomy) && $taxonomy == $current_term->taxonomy ) {
|
||||
|
@ -24,10 +24,8 @@
|
||||
<link rel="stylesheet" type="text/css" media="print" href="<?php bloginfo('stylesheet_directory'); ?>/print.css" />
|
||||
|
||||
<?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?>
|
||||
|
||||
<?php wp_head(); ?>
|
||||
|
||||
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
|
||||
<?php wp_head(); ?>
|
||||
</head>
|
||||
|
||||
<body <?php body_class(); ?>>
|
||||
|
Loading…
Reference in New Issue
Block a user