flush_rewrite_rules( bool $hard = true )
Remove rewrite rules and then recreate rewrite rules.
Parameters
- $hard
-
(Optional) Whether to update .htaccess (hard flush) or just update rewrite_rules transient (soft flush). Default is true (hard).
Default value: true
Source
File: wp-includes/rewrite.php
function flush_rewrite_rules( $hard = true ) {
global $wp_rewrite;
$wp_rewrite->flush_rules( $hard );
}
Changelog
Version | Description |
---|---|
WP-3.0.0 | Introduced. |