Automattic\WooCommerce\Admin\Notes
DataStore::get_notes_with_name
Find all the notes with a given name.
Method of the class: DataStore{}
No Hooks.
Returns
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 10.4.3
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
)
);
}