WP_Post_Type::remove_hooks()

Removes the future post hook action for the post type.


Description


Source

File: wp-includes/class-wp-post-type.php

	public function remove_hooks() {
		remove_action( 'future_' . $this->name, '_future_post_hook', 5 );
	}

Top ↑

Changelog

Version Description
4.6.0 Introduced.