WC_Settings_Advanced::output()
Output the settings.
Method of the class: WC_Settings_Advanced{}
No Hooks.
Return
null
. Nothing.
Usage
$WC_Settings_Advanced = new WC_Settings_Advanced(); $WC_Settings_Advanced->output();
WC_Settings_Advanced::output() WC Settings Advanced::output code WC 7.5.1
public function output() { global $current_section; if ( 'webhooks' === $current_section ) { WC_Admin_Webhooks::page_output(); } elseif ( 'keys' === $current_section ) { WC_Admin_API_Keys::page_output(); } else { parent::output(); } }