Automattic\WooCommerce\Admin\Notes
Notes::get_note_status()
Get the status of a given note by name.
Method of the class: Notes{}
No Hooks.
Return
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 9.7.1
public static function get_note_status( $note_name ) { $note = self::get_note_by_name( $note_name ); if ( ! $note ) { return false; } return $note->get_status(); }