/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/
function enable_attribute_archives( $args, $taxonomy ) {
    if ( strpos( $taxonomy, 'pa_' ) !== false ) {
        $args['rewrite'] = true;
        $args['has_archive'] = true;
    }
    return $args;
}
add_filter( 'woocommerce_register_taxonomy_args', 'enable_attribute_archives', 10, 2 );
