If WP_Rewrite::flush_rules() is called on 'init' or earlier, wait until 'wp_loaded' before actually flushing the rules, to make sure all the rules registered on 'init' are included.
props joostdevalk. see #30501. git-svn-id: https://develop.svn.wordpress.org/trunk@31104 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
c96947757a
commit
9d67bfe82d
@ -2036,6 +2036,12 @@ class WP_Rewrite {
|
|||||||
* @param bool $hard Whether to update .htaccess (hard flush) or just update rewrite_rules option (soft flush). Default is true (hard).
|
* @param bool $hard Whether to update .htaccess (hard flush) or just update rewrite_rules option (soft flush). Default is true (hard).
|
||||||
*/
|
*/
|
||||||
public function flush_rules($hard = true) {
|
public function flush_rules($hard = true) {
|
||||||
|
// Prevent this action from running before everyone has registered their rewrites
|
||||||
|
if ( ! did_action( 'wp_loaded' ) ) {
|
||||||
|
add_action( 'wp_loaded', array( $this, 'flush_rules' ) );
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
delete_option('rewrite_rules');
|
delete_option('rewrite_rules');
|
||||||
$this->wp_rewrite_rules();
|
$this->wp_rewrite_rules();
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user