WP_Post_Type::add_hooks()publicWP 4.6.0

Adds the future post hook action for the post type.

Method of the class: WP_Post_Type{}

No Hooks.

Return

null. Nothing (null).

Usage

$WP_Post_Type = new WP_Post_Type();
$WP_Post_Type->add_hooks();

Changelog

Since 4.6.0 Introduced.

WP_Post_Type::add_hooks() code WP 6.5.2

public function add_hooks() {
	add_action( 'future_' . $this->name, '_future_post_hook', 5, 2 );
}