action_scheduler_post_type_args
Usage
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
- -
Where the hook is called
action_scheduler_post_type_args
woocommerce/packages/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php 50
$args = apply_filters( 'action_scheduler_post_type_args', $args );
Where the hook is used in WooCommerce
woocommerce/includes/admin/class-wc-admin.php 35
add_filter( 'action_scheduler_post_type_args', array( $this, 'disable_webhook_post_export' ) );