对于自定义表单字段,如果输入字段为空,我不想显示字段标签。另外如何减少两个结果输出之间的空间?添加了Populated get check自定义选项卡。创建并保存自定义字段数据字段 通过
调用数据$source = get_post_meta( $post->ID, '_inputtext', true );
$result = '<div class="custom-data">';
if( ! empty( $output) )
$result .= '<p>'. __('<span style="color:#96588a; " text-align: left;">Sell In:</span> ').'<span style="color:#96588a;">'.$source .'</span></p>';
但是,当偶数为true时显示标签,第二次不显示为必填字段。
答案 0 :(得分:0)
作为我的底线,你需要检查 $ source varibale。不是吗?
if(!empty($source)){
// then do the rest
}