好的,这是我的问题。我希望能够使用 get_header_image 和 Nivo Slider 在自定义标题之间切换。有一次我有这个工作,将代码合并到 If...Elseif...Else 语句中。现在我无法复制它。当前代码同时显示标题图像及其下方的滑块。任何帮助将不胜感激。
<?php
// Check if this is a post or page, if it has a thumbnail, and if it's a big one
if(
is_singular()
&& current_theme_supports('post-thumbnails')
&& has_post_thumbnail( $post->ID )
&&( /* $src, $width, $height */ $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'post-thumbnail' ) )
&& $image[1] >= HEADER_IMAGE_WIDTH
) :
// Houston, we have a new header image!
echo get_the_post_thumbnail( $post->ID );
elseif ( get_header_image() ) :
?>
<img src="<?php header_image(); ?>" width="<?php echo HEADER_IMAGE_WIDTH; ?>" height="<?php echo HEADER_IMAGE_HEIGHT; ?>" alt="" />
<?php
endif;
?>
<div id="slider">
<?php
$tmp = $wp_query;
$wp_query = new WP_Query( array ('post_type'=>'page','post__in'=>array(1814)));
if(have_posts()) :
while(have_posts()) :
the_post();
?>
<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('nivothumb'); ?></a>
<?php
endwhile;
endif;
$wp_query = $tmp;
?>
</div><!-- close #slider -->