我的旋转木马正在工作:http://worldwayssocialmarketing.org/louisiana/ 我正在尝试编写代码来放置特色图像,标题,以及WordPress中标记为“home-banner”类别的页面。 如果没有缩略图,我还想从我的img文件夹中放置一个默认图像。
这不起作用:
<?php if( is_category('home-banner') ){ ?>
<div class="homecards">
<div class="owl-item grayscale" style="width: 80%; height:300px;">
<?php if ( has_post_thumbnail() ) {
the_post_thumbnail();
} else { ?>
<img src="<?php bloginfo('template_directory'); ?>/img/default-image.jpg" alt="<?php the_title(); ?>" />
<?php } ?></div>
<h2><?php the_title(); ?></h2>
<p><?php the_excerpt(); ?></p>
</div>
<?php } ?>
答案 0 :(得分:0)
没关系......我想通了: - )
<?php query_posts( 'category_name=home-banner' ); ?>
<?php while ( have_posts() ) : the_post(); ?>
<div class="homecards">
<div class="homecardimg">
<?php if ( has_post_thumbnail() ) {
the_post_thumbnail();
} else { ?>
<img src="<?php bloginfo('template_directory'); ?>/img/default-image.jpg" alt="<?php the_title(); ?>" />
<?php } ?>
</div>
<h2><?php the_title(); ?></h2><br>
<p><?php the_excerpt(); ?></p>
</div>
<?php endwhile; ?>