Post_Type::flush_rewrite()

Since we are adding a new post type, let’s flush rewrite rules this once.

Contents


Source

File: src/Events_Pro/Custom_Tables/V1/Series/Post_Type.php

	public function flush_rewrite() {
		if ( ! get_transient( static::FLUSH_REWRITE_TRANSIENT ) ) {
			set_transient( static::FLUSH_REWRITE_TRANSIENT, true, MONTH_IN_SECONDS );
			flush_rewrite_rules();
		}
	}

Top ↑

Changelog

Changelog
Version Description
6.0.0 Introduced.