woocommerce_install_skip_create_files filter-hookWC 3.2.0

Bypass if filesystem is read-only and/or non-standard upload system is used.

Usage

add_filter( 'woocommerce_install_skip_create_files', 'wp_kama_woocommerce_install_skip_create_files_filter' );

/**
 * Function for `woocommerce_install_skip_create_files` filter-hook.
 * 
 * @param  $false 
 *
 * @return 
 */
function wp_kama_woocommerce_install_skip_create_files_filter( $false ){

	// filter...
	return $false;
}
$false
-

Changelog

Since 3.2.0 Introduced.

Where the hook is called

WC_Install::create_files()
woocommerce_install_skip_create_files
woocommerce/includes/class-wc-install.php 1865
if ( apply_filters( 'woocommerce_install_skip_create_files', false ) ) {

Where the hook is used in WooCommerce

Usage not found.