Last active
August 29, 2015 14:01
-
-
Save igmoweb/f60e81206c18bb405f6f to your computer and use it in GitHub Desktop.
Incluyendo nuestra clase de opciones
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 | |
add_filter( 'woocommerce_get_settings_pages', 'holadolly_include_woocommerce_setting_file' ); | |
function holadolly_include_woocommerce_setting_file ( $settings ) { | |
$settings[] = include( HOLADOLLY_PLUGIN_DIR . 'class-wc-settings-holadolly.php' ); | |
return $settings; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment