显示WooCommerce支付网关管理员设置

时间:2017-08-03 14:44:35

标签: php wordpress woocommerce payment-gateway payment

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

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

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

1 个答案:

答案 0 :(得分:0)

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

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