Skip to content

Instantly share code, notes, and snippets.

@igmoweb
Last active August 29, 2015 14:01
Show Gist options
  • Save igmoweb/f60e81206c18bb405f6f to your computer and use it in GitHub Desktop.
Save igmoweb/f60e81206c18bb405f6f to your computer and use it in GitHub Desktop.
Incluyendo nuestra clase de opciones
<?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