Wordpress get_header_image 和 Nivo 滑块切换 - PHP If Else 语句?
好的,这是我的问题。我希望能够使用 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 -->
Okay so here's my issue. I want to be able to toggle between a custom header using get_header_image and Nivo Slider. At one point I had this working, having merged the code into a If...Elseif...Else statement. Now I can't replicate it. The current code display both the header image and the slider beneath it. Any help would be greatly appreciated.
<?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 -->
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)