woocommerce_enable_admin_help_tab
Filter to enable/disable admin help tab.
Usage
add_filter( 'woocommerce_enable_admin_help_tab', 'wp_kama_woocommerce_enable_admin_help_tab_filter' );
/**
* Function for `woocommerce_enable_admin_help_tab` filter-hook.
*
* @param $true
*
* @return
*/
function wp_kama_woocommerce_enable_admin_help_tab_filter( $true ){
// filter...
return $true;
}
- $true
- -
Changelog
| Since 3.6.0 | Introduced. |
Where the hook is called
woocommerce_enable_admin_help_tab
woocommerce/includes/admin/class-wc-admin.php 89
if ( apply_filters( 'woocommerce_enable_admin_help_tab', true ) ) {