Automattic\WooCommerce\Admin\Notes
Note::get_title()
Get note title.
Метод класса: Note{}
Хуков нет.
Возвращает
Строку
.
Использование
$Note = new Note(); $Note->get_title( $context );
- $context(строка)
- What the value is for. Valid values are 'view' and 'edit'.
По умолчанию: 'view'
Код Note::get_title() Note::get title WC 9.6.1
public function get_title( $context = 'view' ) { return $this->get_prop( 'title', $context ); }