需要帮助格式化Wordpress网站的PHP条件语句

时间:2015-02-26 22:54:44

标签: php conditional-statements

这是未经编辑的原始代码,用于检查主题选项中是否已选择摘录内容或完整内容。

<?php if ( isset( $woo_options['woo_post_content'] ) && $woo_options['woo_post_content'] == 'content' ) { the_content( __( 'Continue Reading &rarr;', 'woothemes' ) ); } else { the_excerpt(); } ?>

我想在此声明的开头添加<?php if (is_home() ) { <?php the_content(); ?>,以便主页始终显示完整的帖子。

我尝试过以下操作,但它无效:

<?php if (is_home()) { ?> <?php the_content(); ?> elseif ( isset( $woo_options['woo_post_content'] ) && $woo_options['woo_post_content'] == 'content' ) { the_content( __( 'Continue Reading &rarr;', 'woothemes' ) ); } else { the_excerpt(); }} ?>

1 个答案:

答案 0 :(得分:0)

我可以看到你只是添加了一些额外的PHP引用:

<?php 
if (is_home()) { the_content(); 
} elseif ( isset( $woo_options['woo_post_content'] )  && $woo_options['woo_post_content'] == 'content' ) { 
  the_content( __( 'Continue Reading &rarr;', 'woothemes' ) );
} else { 
    the_excerpt(); 
} 
?>