action_scheduler_post_type_args
Использование
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
- -
Где вызывается хук
action_scheduler_post_type_args
woocommerce/packages/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php 46
$args = apply_filters('action_scheduler_post_type_args', $args);
Где используется хук в WooCommerce
woocommerce/includes/admin/class-wc-admin.php 33
add_filter( 'action_scheduler_post_type_args', array( $this, 'disable_webhook_post_export' ) );