action_scheduler_admin_notice_html
Использование
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
- -
Где вызывается хук
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 );