首先,正如我在评论中提到的,这里有一个语法错误,其中有一个不需要的}
:
$meta = get_post_meta( $post->ID, \'clpr_coupon_code\', true );} // <- that }
(更新的答案之前的代码已删除,因为它们不适用于您。)所以如果你想在$clpr_options->coupon_code_hide
是否评估为true
那场比赛clpr_coupon_code
为空;尝试以下操作:
<?php if ( $clpr_options->coupon_code_hide ) {
$class .= \' coupon-hidden\';
$meta = get_post_meta( $post->ID, \'clpr_coupon_code\', true );
// If clpr_coupon_code is empty.
if ( ! $meta ) {
$button_text = \'Angebot anzeigen\';
// If clpr_coupon_code is not empty.
} else {
$button_text = fl_get_option( \'fl_lbl_show_coupon\' );
$button_text = \'<i class="icon-lock"></i>\' . $button_text;
}
}
?>