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