WC_API_Resource::is_deletable()
Checks if the given post is deletable by the current user
Method of the class: WC_API_Resource{}
No Hooks.
Return
true|false
.
Usage
// protected - for code of main (parent) or child class $result = $this->is_deletable( $post );
- $post(WP_Post|int) (required)
- -
Notes
Changelog
Since 2.1 | Introduced. |
WC_API_Resource::is_deletable() WC API Resource::is deletable code WC 7.7.0
protected function is_deletable( $post ) { return $this->check_permission( $post, 'delete' ); }