麻烦在wordpress中为循环编写if-else条件

时间:2013-04-23 16:03:58

标签: php wordpress

我正在尝试编写一个if else条件,如果它来自一个名为home的catergory,则显示一个帖子,但如果不是则显示默认值。

我不确定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(); ?>

1 个答案:

答案 0 :(得分:1)

问题可能是因为你的else条件之后你没有关闭php标签,但是你开始另一个打开php标签。

//start of my ifelse conditional
<?php if (catergory_name=home == true) {

} else { }
?> <---- NEED TO CLOSE THIS CLAUSE
<?php
if (has_post_thumbnail()) {
// check if the post has a Post Thumbnail assigned to it.
the_post_thumbnail('thumb-casestudy');
}else {
?>