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