WC_Post_Types::maybe_flush_rewrite_rules() public WC 3.3.0
Flush rules if the event is queued.
{} Это метод класса: WC_Post_Types{}
Хуков нет.
Возвращает
Null. Ничего.
Использование
$result = WC_Post_Types::maybe_flush_rewrite_rules();
Список изменений
С версии 3.3.0 | Введена. |
Код WC_Post_Types::maybe_flush_rewrite_rules() WC Post Types::maybe flush rewrite rules WC 5.0.0
public static function maybe_flush_rewrite_rules() {
if ( 'yes' === get_option( 'woocommerce_queue_flush_rewrite_rules' ) ) {
update_option( 'woocommerce_queue_flush_rewrite_rules', 'no' );
self::flush_rewrite_rules();
}
}