Updated API settings making clear that is from our legacy REST API

This commit is contained in:
Claudio Sanches 2017-12-07 19:53:40 -02:00
parent e3331448e5
commit 0c36ab23cf
1 changed files with 4 additions and 4 deletions

View File

@ -71,16 +71,16 @@ class WC_Settings_Rest_API extends WC_Settings_Page {
),
array(
'title' => __( 'API', 'woocommerce' ),
'desc' => __( 'Enable the REST API', 'woocommerce' ),
'title' => __( 'Legacy API', 'woocommerce' ),
'desc' => __( 'Enable the legacy REST API', 'woocommerce' ),
'id' => 'woocommerce_api_enabled',
'type' => 'checkbox',
'default' => 'yes',
'default' => 'no',
),
array(
'type' => 'sectionend',
'id' => 'general_options',
'id' => 'general_options',
),
) );
}