我不知道dorigen是什么-但你找不到你的</h3>
因为你的if/else条件。我不明白为什么还需要其他的。代替
else { ?> </h3><?php } ?>
与
</h3>
在这两个地方都使用它。
也就是说,如果您只想在设置meta值时显示整个post meta div,那么您应该这样做(未测试):
<?php
$firstCF = get_post_meta( $post->ID, \'firstCF\', true );
$secondCF = get_post_meta( $post->ID, \'secondCF\', true );
if ( $firstCF || $secondCF ) {
?>
<div class="post-meta">
<h3>
<?php if ( $dorigen ) { ?>
My text: <?php echo $firstCF; ?></br></br>
<?php } ?> </h3>
<h3>
<?php if ( $dorigen ) { ?>
Other Text: <?php echo $secondCF; ?></br></br>
<?php } ?> </h3>
</div>
我把多利根的东西忘在里面了,虽然我不知道它是干什么用的。