説明
納品書等PDFの備考欄を変更します。
使い方
add_filter( 'usces_filter_pdf_note', 'my_filter_pdf_note', 10, 3 ); function my_filter_pdf_note( $note_text, $data, $type ) { $note_text = ''; return $note_text; }
パラメータ
- $note_text
- (文字列)備考欄に出力する内容
- $data
- (配列)受注データ
- $type
- (文字列)PDFの種類
戻り値
- $note_text
- (文字列)
用例
ソースファイル
usc-e-shop/includes/order_print.php