我和flush_rewrite_rules
功能,但基于usage notes 提及人nmr 我想你也许可以这样做,
add_action( \'save_post\', \'my_save_post_function\' );
function my_save_post_function( $post_id ) {
$maybe_some_extra_logic = true; // if applicable
if ( $maybe_some_extra_logic && ! has_action( \'shutdown\', \'my_flush_rewrite_rules\' ) ) {
add_action( \'shutdown\', \'my_flush_rewrite_rules\', 9999 ); // set suitable priority
}
}
function my_flush_rewrite_rules() {
flush_rewrite_rules();
}