删除空PHP上的操作

时间:2017-01-20 06:01:16

标签: php wordpress woocommerce

我确定这是一个简单的问题,但我是初学者。我已经弄明白了如何显示我的ACF信息(woohooo)但如果该字段为空白则需要删除回声。我不知道如何添加它。

add_action( 'woocommerce_single_product_summary', "ACF_product_content", 5 );
    function ACF_product_content(){
        if (function_exists('the_field')){
        echo '<h2 class="dd-tiff">Delivery Date: ';
        the_field('ti-date');
        echo '</h2>';

      }

    }

2 个答案:

答案 0 :(得分:2)

add_action( 'woocommerce_single_product_summary', "ACF_product_content", 5 );
function ACF_product_content(){

    if (function_exists('the_field')){
    $ti_date = get_field('ti-date');
    if($ti_date){
        echo '<h2 class="dd-tiff">Delivery Date: ';
        the_field('ti-date');
        echo '</h2>';
     }

  }

}

试试此代码

答案 1 :(得分:0)

certutil -view -restrict