显示 WooCommerce 支付网关管理设置

Display WooCommerce Payment Gateway Admin Settings

我已经为 WooCommerce 开发了自定义支付网关,但我无法显示管理设置。

该插件分为三个文件,main.php、class.php 和 settings.php。

网关显示在我的前端并且功能齐全,但是,由于设置没有显示在后端,所有内容都是硬编码的。 This is how I'm calling settings.php in class.php

我的代码中缺少负责显示设置的管理选项功能。

`function admin_options() {
 ?>
 <h2><?php _e('Settings Tab','woocommerce'); ?></h2>
 <table class="form-table">
 <?php $this->generate_settings_html(); ?>
 </table> <?php
 }`