我正在尝试编写一个 if else 条件,如果它来自一个名为 home 的类别,则显示一个帖子,但如果不是,则显示默认帖子。
我不确定 wordpress 究竟使用什么语法来输出类别中的帖子或显示默认类别中的帖子。
如果有人能给我一些指导,我将非常感激。
这是我到目前为止所得到的,我不确定我需要在 if 和 else 执行括号中输出什么。
目前,我已经从各个帖子类型中获得了最新的帖子来显示,并且需要添加一些基本上覆盖如果帖子在类别中的帖子被选中。
<?php
$query = new WP_Query('post_type=testimonial&catergory_name=home&showposts=1&paged=' . $paged);
$postcount = 0;
?>
<?php if ($query->have_posts()) : ?>
<?php while ($query->have_posts()) : $query->the_post(); ?>
<?php $postcount++; ?>
<li>
<A HREF="<?php the_permalink(); ?>"></A>
<a href="<?php the_permalink(); ?>">
//start of my ifelse conditional
<?php if (catergory_name=home == true) {
} else { }
<?php
if (has_post_thumbnail()) {
// check if the post has a Post Thumbnail assigned to it.
the_post_thumbnail('thumb-casestudy');
}else {
?>
<img src="<?php bloginfo('template_url'); ?>/assets/images/default.jpg" alt="<?php the_title(); ?>"/>
<?php } ?>
</a>
<h4><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h4>
<p class="hm_text"><?php
//the_excerpt();
echo get_post_meta($query->post->ID, 'wpld_cf_home_page_text', true)
?></p>
</li>
<?php endwhile; ?>
<?php else : ?>
<?php endif; ?>
<?php wp_reset_query(); ?>