Automattic\WooCommerce\Admin\Notes
Note::get_content()
Get note content.
Method of the class: Note{}
No Hooks.
Return
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 9.7.1
public function get_content( $context = 'view' ) { return $this->get_prop( 'content', $context ); }