我正在嘗試將自訂設定標籤新增至 WooCommerce 設定畫面。基本上我想透過子部分/子選項卡實現與“產品設定”選項卡類似的功能:
我還沒有找到任何關於如何執行此操作的像樣文檔,但我已經能夠使用以下程式碼片段添加自訂選項卡:
class WC_Settings_Tab_Demo { public static function init() { add_filter( 'woocommerce_settings_tabs_array', __CLASS__ . '::add_settings_tab', 50 ); } public static function add_settings_tab( $settings_tabs ) { $settings_tabs['test'] = __( 'Settings Demo Tab', 'woocommerce-settings-tab-demo' ); return $settings_tabs; } } WC_Settings_Tab_Demo::init();
根據我從各種線程/教程中挖掘出的內容,我一直在嘗試將部分/子選項卡添加到新的設定選項卡中,如下所示:
// creating a new sub tab in API settings add_filter( 'woocommerce_get_sections_test','add_subtab' ); function add_subtab( $sections ) { $sections['custom_settings'] = __( 'Custom Settings', 'woocommerce-custom-settings-tab' ); $sections['more_settings'] = __( 'More Settings', 'woocommerce-custom-settings-tab' ); return $sections; } // adding settings (HTML Form) add_filter( 'woocommerce_get_settings_test', 'add_subtab_settings', 10, 2 ); function add_subtab_settings( $settings, $current_section ) { // $current_section = (isset($_GET['section']) && !empty($_GET['section']))? $_GET['section']:''; if ( $current_section == 'custom_settings' ) { $custom_settings = array(); $custom_settings[] = array( 'name' => __( 'Custom Settings', 'text-domain' ), 'type' => 'title', 'desc' => __( 'The following options are used to ...', 'text-domain' ), 'id' => 'custom_settings' ); $custom_settings[] = array( 'name' => __( 'Field 1', 'text-domain' ), 'id' => 'field_one', 'type' => 'text', 'default' => get_option('field_one'), ); $custom_settings[] = array( 'type' => 'sectionend', 'id' => 'test-options' ); return $custom_settings; } else { // If not, return the standard settings return $settings; } }
我已經能夠使用與上面類似的程式碼向「產品」標籤添加新的小節,但它不適用於我的新自訂選項卡。我哪裡出錯了?
1) 若要新增包含部分的設定選項卡,您可以先使用
woocommerce_settings_tabs_array
過濾器掛鉤:2) 若要為頁面新增部分,您可以使用
woocommerce_sections_{$current_tab}
複合掛鉤,其中{$current_tab}
需要替換為第一個函數中設定的鍵slug:'; $array_keys = array_keys( $sections ); foreach ( $sections as $id => $label ) { echo '-
' . $label . ' ' . ( end( $array_keys ) == $id ? '' : '|' ) . '
';
}
echo '
'; } add_action( 'woocommerce_sections_my-custom-tab', 'action_woocommerce_sections_my_custom_tab', 10 );
3)為了新增設定以及處理/儲存,我們將使用自訂函數,然後呼叫函數:
3.1) 透過
woocommerce_settings_{$current_tab}
複合掛鉤新增設定:3.2) 透過
woocommerce_settings_save_{$current_tab}
複合掛鉤處理/儲存設定:結果:
基於: