Automattic\WooCommerce\Admin\Notes
Note::get_title
Get note title.
Method of the class: Note{}
No Hooks.
Returns
String.
Usage
$Note = new Note(); $Note->get_title( $context );
- $context(string)
- What the value is for. Valid values are 'view' and 'edit'.
Default: 'view'
Note::get_title() Note::get title code WC 10.4.3
public function get_title( $context = 'view' ) {
return $this->get_prop( 'title', $context );
}