WC_Settings_Advanced::notices()
Notices.
{} It's a method of the class: WC_Settings_Advanced{}
No Hooks.
Return
null
. Nothing.
Usage
// private - for code of main (parent) class only $result = $this->notices();
Code of WC_Settings_Advanced::notices() WC Settings Advanced::notices WC 6.7.0
private function notices() { // phpcs:disable WordPress.Security.NonceVerification.Recommended if ( isset( $_GET['section'] ) && 'webhooks' === $_GET['section'] ) { WC_Admin_Webhooks::notices(); } if ( isset( $_GET['section'] ) && 'keys' === $_GET['section'] ) { WC_Admin_API_Keys::notices(); } // phpcs:enable }