the_delivery_date / フィルターフック

usces_the_delivery_date() が出力する配送希望日のセレクトフィールドを書き換える

説明

usces_the_delivery_date() が出力する、配送希望日のセレクトフィールドを書き換えます。

使い方

add_filter( 'the_delivery_date', 'my_filter_the_delivery_date' );
function my_filter_the_delivery_date( $html ) {
    //処理
    return $html;
}

パラメータ

$html
(HTML)配送希望日セレクトフィールド

用例

ソースファイル

usc-e-shop/functions/template_func.php

関連資料

  • usces_the_delivery_date()