WC_Shipping_Method::admin_options()
Output the shipping settings screen.
Метод класса: WC_Shipping_Method{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$WC_Shipping_Method = new WC_Shipping_Method(); $WC_Shipping_Method->admin_options();
Код WC_Shipping_Method::admin_options() WC Shipping Method::admin options WC 9.4.2
public function admin_options() { if ( ! $this->instance_id ) { echo '<h2>' . esc_html( $this->get_method_title() ) . '</h2>'; } echo wp_kses_post( wpautop( $this->get_method_description() ) ); echo $this->get_admin_options_html(); // phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped }