action_scheduler_admin_notice_html хук-фильтрWC 1.0

Использование

add_filter( 'action_scheduler_admin_notice_html', 'wp_kama_action_scheduler_admin_notice_html_filter', 10, 3 );

/**
 * Function for `action_scheduler_admin_notice_html` filter-hook.
 * 
 * @param  $action_message_html 
 * @param  $action              
 * @param  $notification        
 *
 * @return 
 */
function wp_kama_action_scheduler_admin_notice_html_filter( $action_message_html, $action, $notification ){

	// filter...
	return $action_message_html;
}
$action_message_html
-
$action
-
$notification
-

Где вызывается хук

ActionScheduler_ListTable::display_admin_notices()
action_scheduler_admin_notice_html
woocommerce/packages/action-scheduler/classes/ActionScheduler_ListTable.php 438
$action_message_html = apply_filters( 'action_scheduler_admin_notice_html', $action_message_html, $action, $notification );

Где используется хук в WooCommerce

Использование не найдено.