WP_Post_Type::add_hooks() public WP 4.6.0
Adds the future post hook action for the post type.
{} It's a method of the class: WP_Post_Type{}
No Hooks.
Return
````. Null. Nothing.
Usage
$WP_Post_Type = new WP_Post_Type(); $WP_Post_Type->add_hooks();
Changelog
Since 4.6.0 | Introduced. |
Code of WP_Post_Type::add_hooks() WP Post Type::add hooks WP 5.7
public function add_hooks() {
add_action( 'future_' . $this->name, '_future_post_hook', 5, 2 );
}