action_scheduler_post_type_args filter-hook . WC 1.0
Usage
add_filter( 'action_scheduler_post_type_args', 'filter_function_name_7149' ); function filter_function_name_7149( $args ){ // filter... return $args; }
- $args
- -
Where the hook is called
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);
Where in WP core the hook is used WooCommerce
woocommerce/includes/admin/class-wc-admin.php 34
add_filter( 'action_scheduler_post_type_args', array( $this, 'disable_webhook_post_export' ) );