Skip to content

Instantly share code, notes, and snippets.

@igmoweb
Last active August 29, 2015 14:01
Show Gist options
  • Save igmoweb/5f82d5ec5a8484ae9dfe to your computer and use it in GitHub Desktop.
Save igmoweb/5f82d5ec5a8484ae9dfe to your computer and use it in GitHub Desktop.
Hola Dollly WooCommerce API Basic Settings Class
<?php
class WC_Settings_Hola_Dolly extends WC_Settings_Page {
public function __construct() {
$this->id = 'hola-dolly';
$this->label = __( 'Hola Dolly', 'hola-dolly' );
add_filter( 'woocommerce_settings_tabs_array', array( $this, 'add_settings_page' ), 20 );
}
}
return new WC_Settings_Hola_Dolly();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment