Skip to content

Instantly share code, notes, and snippets.

@davidperezgar
Created January 2, 2015 23:24
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 davidperezgar/d7ffee815415ee143427 to your computer and use it in GitHub Desktop.
Save davidperezgar/d7ffee815415ee143427 to your computer and use it in GitHub Desktop.
add_filter('woocommerce_attribute_show_in_nav_menus', 'wc_reg_for_menus', 1, 2);
function wc_reg_for_menus( $register, $name = '' ) {
if ( $name == 'pa_size' ) $register = true;
return $register;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment