Automattic\WooCommerce\Admin\Notes
Note::get_is_read
Get is_read status.
Method of the class: Note{}
No Hooks.
Returns
true|false.
Usage
$Note = new Note(); $Note->get_is_read( $context );
- $context(string)
- What the value is for. Valid values are
'view'and'edit'.
Default:'view'
Note::get_is_read() Note::get is read code WC 10.6.2
public function get_is_read( $context = 'view' ) {
return $this->get_prop( 'is_read', $context );
}