Automattic\WooCommerce\Admin\Notes
Notes::get_note_status
Get the status of a given note by name.
Method of the class: Notes{}
No Hooks.
Returns
String|true|false. The note status.
Usage
$result = Notes::get_note_status( $note_name );
- $note_name(string) (required)
- Name of the note.
Notes::get_note_status() Notes::get note status code WC 10.7.0
public static function get_note_status( $note_name ) {
$note = self::get_note_by_name( $note_name );
if ( ! $note ) {
return false;
}
return $note->get_status();
}