Last active
August 29, 2015 14:01
-
-
Save igmoweb/cfa03c6abdaa5b30f2e4 to your computer and use it in GitHub Desktop.
Hook que guarda las opciones añadido
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 | |
public function __construct() { | |
$this->id = 'hola-dolly'; | |
$this->label = __( 'Hola Dolly', 'hola-dolly' ); | |
// Añadir pestaña | |
add_filter( 'woocommerce_settings_tabs_array', array( $this, 'add_settings_page' ), 20 ); | |
// Mostrar los campos | |
add_action( 'woocommerce_settings_' . $this->id, array( $this, 'output' ) ); | |
// Guardar los cambios | |
add_action( 'woocommerce_settings_save_' . $this->id, array( $this, 'save' ) ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment