Skip to content

Instantly share code, notes, and snippets.

@joebasurto
Last active June 15, 2019 06:54
Show Gist options
  • Save joebasurto/bb40916d3840ccada446c389188983dc to your computer and use it in GitHub Desktop.
Save joebasurto/bb40916d3840ccada446c389188983dc to your computer and use it in GitHub Desktop.
Wordpress - Rewrite Flush
<?php
// Flush Rewrites
register_activation_hook( __FILE__, 'myplugin_flush_rewrites' );
function myplugin_flush_rewrites() {
// call your rewrite rules registration function here (it should also be hooked into 'init')
myplugin_custom_rewrite_rules_registration();
flush_rewrite_rules();
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment