WP_Post_Type::remove_hooks
Removes the future post hook action for the post type.
Method of the class: WP_Post_Type{}
No Hooks.
Returns
null. Nothing (null).
Usage
$WP_Post_Type = new WP_Post_Type(); $WP_Post_Type->remove_hooks();
Changelog
| Since 4.6.0 | Introduced. |
WP_Post_Type::remove_hooks() WP Post Type::remove hooks code WP 7.0
public function remove_hooks() {
remove_action( 'future_' . $this->name, '_future_post_hook', 5 );
}