Last active
August 29, 2015 14:01
-
-
Save igmoweb/5f82d5ec5a8484ae9dfe to your computer and use it in GitHub Desktop.
Hola Dollly WooCommerce API Basic Settings Class
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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