WC_Settings_Advanced::get_settings_for_blueprint_section()
Get settings for the Blueprint section.
Метод класса: WC_Settings_Advanced{}
Хуков нет.
Возвращает
Массив
.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->get_settings_for_blueprint_section();
Код WC_Settings_Advanced::get_settings_for_blueprint_section() WC Settings Advanced::get settings for blueprint section WC 9.4.2
protected function get_settings_for_blueprint_section() { $settings = array( array( 'title' => esc_html__( 'Blueprint', 'woocommerce' ), 'type' => 'title', ), array( 'id' => 'wc_settings_blueprint_slotfill', 'type' => 'slotfill_placeholder', ), ); return $settings; }