woocommerce_flush_rewrite_rules
Flush the rewrite rules after install or update.
Использование
add_action( 'woocommerce_flush_rewrite_rules', 'wp_kama_woocommerce_flush_rewrite_rules_action' ); /** * Function for `woocommerce_flush_rewrite_rules` action-hook. * * @return void */ function wp_kama_woocommerce_flush_rewrite_rules_action(){ // action... }
Список изменений
С версии 2.7.0 | Введена. |
Где вызывается хук
woocommerce_flush_rewrite_rules
woocommerce/includes/class-wc-install.php 501
do_action( 'woocommerce_flush_rewrite_rules' );
woocommerce/includes/wc-core-functions.php 1195
do_action( 'woocommerce_flush_rewrite_rules' );
Где используется хук в WooCommerce
woocommerce/includes/class-wc-post-types.php 32
add_action( 'woocommerce_flush_rewrite_rules', array( __CLASS__, 'flush_rewrite_rules' ) );