woocommerce_system_status_environment_rows
Filters the environment rows to show in the WooCommerce status report.
Usage
add_filter( 'woocommerce_system_status_environment_rows', 'wp_kama_woocommerce_system_status_environment_rows_filter' ); /** * Function for `woocommerce_system_status_environment_rows` filter-hook. * * @param $array * * @return */ function wp_kama_woocommerce_system_status_environment_rows_filter( $array ){ // filter... return $array; }
- $array
- -
Where the hook is called
woocommerce_system_status_environment_rows
woocommerce/includes/admin/views/html-admin-page-status-report.php 429
$rows = apply_filters( 'woocommerce_system_status_environment_rows', array() );