Automattic\WooCommerce\Admin\Notes
Notes::get_note_status()
Get the status of a given note by name.
Метод класса: Notes{}
Хуков нет.
Возвращает
Строку|true|false
. The note status.
Использование
$result = Notes::get_note_status( $note_name );
- $note_name(строка) (обязательный)
- Name of the note.
Код Notes::get_note_status() Notes::get note status 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(); }