flush_rewrites()

Summary

No summary available.

Source

File: uninstall.php

function flush_rewrites() {
	\unregister_post_type( Product::NAME );
	foreach ( get_taxonomy_list() as $tax ) {
		\unregister_taxonomy( $tax );
	}
	\flush_rewrite_rules();
}


User Contributed Notes

You must log in before being able to contribute a note or feedback.