这是未经编辑的原始代码,用于检查主题选项中是否已选择摘录内容或完整内容。
<?php if ( isset( $woo_options['woo_post_content'] ) && $woo_options['woo_post_content'] == 'content' ) { the_content( __( 'Continue Reading →', '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 →', 'woothemes' ) ); } else { the_excerpt(); }} ?>
答案 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 →', 'woothemes' ) );
} else {
the_excerpt();
}
?>