flush_rewrite_rules( bool $hard = true )

Remove rewrite rules and then recreate rewrite rules.


Description


Parameters

$hard

(bool) (Optional) Whether to update .htaccess (hard flush) or just update rewrite_rules transient (soft flush). Default is true (hard).

Default value: true


Top ↑

Source

File: wp-includes/rewrite.php

function flush_rewrite_rules( $hard = true ) {
	global $wp_rewrite;

	if ( is_callable( array( $wp_rewrite, 'flush_rules' ) ) ) {
		$wp_rewrite->flush_rules( $hard );
	}
}

Top ↑

Changelog

Version Description
3.0.0 Introduced.