Automattic\WooCommerce\Admin\Notes
DataStore::get_notes_with_name()
Find all the notes with a given name.
Method of the class: DataStore{}
No Hooks.
Return
Array
. An array of matching note ids.
Usage
$DataStore = new DataStore(); $DataStore->get_notes_with_name( $name );
- $name(string) (required)
- Name to search for.
DataStore::get_notes_with_name() DataStore::get notes with name code WC 9.7.1
public function get_notes_with_name( $name ) { global $wpdb; return $wpdb->get_col( $wpdb->prepare( "SELECT note_id FROM {$wpdb->prefix}wc_admin_notes WHERE name = %s ORDER BY note_id ASC", $name ) ); }