1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
<?php
declare( strict_types=1 );
namespace Automattic\WooCommerce\Internal\Integrations;
/** * Class WPPostsImporter * * @since 10.1.0 */ class WPPostsImporter {
/** * Register the WP Posts importer. * * @return void */ public function register() { add_action( 'wp_import_posts', array( $this, 'register_product_attribute_taxonomies' ), 100, 1 ); }
/** * Register product attribute taxonomies when importing posts via the WXR importer. * * @since 10.1.0 * * @param array $posts The posts to process. * @return array */ public function register_product_attribute_taxonomies( $posts ) { if ( ! is_array( $posts ) || empty( $posts ) ) { return $posts; }
foreach ( $posts as $post ) {
if ( 'product' !== $post['post_type'] || empty( $post['terms'] ) ) { continue; }
foreach ( $post['terms'] as $term ) { if ( ! strstr( $term['domain'], 'pa_' ) ) { continue; }
if ( taxonomy_exists( $term['domain'] ) ) { continue; }
$attribute_name = wc_attribute_taxonomy_slug( $term['domain'] );
// Create the taxonomy. if ( ! in_array( $attribute_name, wc_get_attribute_taxonomies(), true ) ) { wc_create_attribute( array( 'name' => $attribute_name, 'slug' => $attribute_name, 'type' => 'select', 'order_by' => 'menu_order', 'has_archives' => false, ) ); }
// Register the taxonomy so that the import works. register_taxonomy( $term['domain'], // phpcs:ignore apply_filters( 'woocommerce_taxonomy_objects_' . $term['domain'], array( 'product' ) ), // phpcs:ignore apply_filters( 'woocommerce_taxonomy_args_' . $term['domain'], array( 'hierarchical' => true, 'show_ui' => false, 'query_var' => true, 'rewrite' => false, ) ) ); } }
return $posts; } }
|