woocommerce_enable_auto_update_db
Allow WooCommerce to auto-update without prompting the user.
Usage
add_filter( 'woocommerce_enable_auto_update_db', 'wp_kama_woocommerce_enable_auto_update_db_filter' );
/**
* Function for `woocommerce_enable_auto_update_db` filter-hook.
*
* @param $true
*
* @return
*/
function wp_kama_woocommerce_enable_auto_update_db_filter( $true ){
// filter...
return $true;
}
- $true
- -
Changelog
| Since 3.2.0 | Introduced. |
Where the hook is called
woocommerce_enable_auto_update_db
woocommerce/includes/class-wc-install.php 857
return (bool) apply_filters( 'woocommerce_enable_auto_update_db', true );