Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Oscar-Abad-Folgueira/02243c28aec9f225d6c672f6574f97d7 to your computer and use it in GitHub Desktop.
Save Oscar-Abad-Folgueira/02243c28aec9f225d6c672f6574f97d7 to your computer and use it in GitHub Desktop.
WooCoomerce Snippet - Mostrar los nombres de las pestañas de ajustes de WooCommerce
<?php
/**
* @snippet WooCoomerce Snippet - Mostrar los nombres de las pestañas de ajustes de WooCommerce
* @author Oscar Abad Folgueira
* @author_url https://www.oscarabadfolgueira.com
* @snippet_url https://www.oscarabadfolgueira.com/eliminar-pestanas-en-los-ajustes-de-woocommerce
*/
add_filter( 'woocommerce_settings_tabs_array', 'mostrar_pestanas_ajustes_woocommerce', 990, 1 );
function mostrar_pestanas_ajustes_woocommerce( $tabs_array ) {
echo '<pre>';
print_r( $tabs_array );
echo '</pre>';
return $tabs_array;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment