woocommerce_reports_screen_ids
phpcs:disable WooCommerce.Commenting.CommentHooks.MissingHookComment
Использование
add_filter( 'woocommerce_reports_screen_ids', 'wp_kama_woocommerce_reports_screen_ids_filter' ); /** * Function for `woocommerce_reports_screen_ids` filter-hook. * * @param $array * * @return */ function wp_kama_woocommerce_reports_screen_ids_filter( $array ){ // filter... return $array; }
- $array
- -
Где вызывается хук
woocommerce_reports_screen_ids
woocommerce/includes/admin/class-wc-admin-assets.php 475
if ( in_array( $screen_id, apply_filters( 'woocommerce_reports_screen_ids', array( $wc_screen_id . '_page_wc-reports', 'toplevel_page_wc-reports', 'dashboard' ) ) ) ) {