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

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

add_filter( 'action_scheduler_post_type_args', 'wp_kama_action_scheduler_post_type_args_filter' );

/**
 * Function for `action_scheduler_post_type_args` filter-hook.
 * 
 * @param  $args 
 *
 * @return 
 */
function wp_kama_action_scheduler_post_type_args_filter( $args ){

	// filter...
	return $args;
}
$args
-

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

ActionScheduler_wpPostStore_PostTypeRegistrar::post_type_args()
action_scheduler_post_type_args

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

woocommerce/includes/admin/class-wc-admin.php 33
add_filter( 'action_scheduler_post_type_args', array( $this, 'disable_webhook_post_export' ) );