1. Home
  2. /
  3. Docs
  4. /
  5. OrderNotify 訂單推播外掛...
  6. /
  7. 開發人員文件
  8. /
  9. filter – wc_notify_...

filter – wc_notify_trigger_event_options

新增觸發通知區塊中事件選項的 Filter,帶有一個選項參數,可以在事件的下拉選單中增加新的觸發條件,程式碼範例:

<?php

/**
 * 新增 Fluent Form 的觸發條件選項
 */
add_filter(
	'wc_notify_trigger_event_options',
	function( $options ) {
		$options['by_fluent_form'] = __( 'After Fluent Form submitted', 'wc-notify' );
		return $options;
	}
)

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *

這個網站採用 Akismet 服務減少垃圾留言。進一步了解 Akismet 如何處理網站訪客的留言資料