Completed
Push — add/search-post-meta ( 99e922 )
by
unknown
06:32
created

Jetpack_Sync_Module_Search::name()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
3
/*
4
 * Configuration lists for Jetpack Search Fields
5
 *
6
 * Post Meta: list of post meta keys that are available in the index
7
 *   and how they are configured.
8
 *
9
 * Custom Taxonomy: list of custom taxonomies that are indexed.
10
 *
11
 * The reason we need an allowed list is that Elasticsearch runs into scaling problems
12
 * with more than 200k-ish total fields. The barrier to adding new fields is low,
13
 * just open a PR.
14
 *
15
 * Although the comments indicate specific plugins, you don't need to be running
16
 * that plugin for the indexing to work. The metakey just has to match.
17
 *
18
 * If you need a new meta key or taxonomy also consider using:
19
 *   jetpack-search-meta0 - jetpack-search-meta9
20
 *   jetpack-search-tag0 - jetpack-search-tag9
21
 */
22
23
class Jetpack_Sync_Module_Search extends Jetpack_Sync_Module {
24
25
	function name() {
26
		return 'search';
27
	}
28
29
	public function init_listeners( $callable ) {
30
		//TBD: probably needs improvements
31
		add_action( 'jetpack_sync_save_post', $callable, 10, 4 );
32
33
		add_action( 'deleted_post', $callable, 10 );
34
		add_action( 'jetpack_published_post', $callable, 10, 2 );
35
	}
36
37
	//meta search specification
38
	//  meta broken out into public and protected
39
	//
40
	//field will be included in the all_content fields
41
	//  'metakey' => [ 'searchable_in_all_content' => true ],
42
	//
43
	//field not in meta.* but has data in an alternative field(s) name that
44
	//should work similarly. For instance, woocommerce total_sales does not go into
45
	//the index, but the percentage of sales does
46
	//  'metakey' => [ 'available' => false, 'alternatives' => [ 'metakey_processed' ] ],
47
48
	const public_postmeta = array(
49
50
		//jetpack
51
		'jetpack-search-meta0' => array( 'searchable_in_all_content' => true ),
52
		'jetpack-search-meta1' => array( 'searchable_in_all_content' => true ),
53
		'jetpack-search-meta2' => array( 'searchable_in_all_content' => true ),
54
		'jetpack-search-meta3' => array( 'searchable_in_all_content' => true ),
55
		'jetpack-search-meta4' => array( 'searchable_in_all_content' => true ),
56
		'jetpack-search-meta5' => array( 'searchable_in_all_content' => true ),
57
		'jetpack-search-meta6' => array( 'searchable_in_all_content' => true ),
58
		'jetpack-search-meta7' => array( 'searchable_in_all_content' => true ),
59
		'jetpack-search-meta8' => array( 'searchable_in_all_content' => true ),
60
		'jetpack-search-meta9' => array( 'searchable_in_all_content' => true ),
61
62
		//woocommerce
63
		'entity_types' => array(),
64
		'exclude_product_categories' => array(),
65
		'exclude_product_ids' => array(),
66
		'free_shipping' => array(),
67
		'id_field' => array(),
68
		'individual_use' => array(),
69
		'limit_usage_to_x_items' => array(),
70
		'maximum_amount' => array(),
71
		'minimum_amount' => array(),
72
		'post_id' => array(),
73
		'product_categories' => array( 'searchable_in_all_content' => true ),
74
		'product_ids' => array(),
75
		'total_sales' => array( 'available' => false, 'alternatives' => array(
76
			'wc.percent_of_sales'
77
		) ),
78
		'usage_limit' => array(),
79
		'usage_limit_per_user' => array(),
80
		'_crosssell_ids' => array(),
81
		'_downloadable' => array(),
82
		'_featured' => array(),
83
		'_height' => array(),
84
		'_length' => array(),
85
		'_price' => array(
86
			'alternatives' => array(
87
				'wc.price',
88
				'wc.min_price',
89
				'wc.max_price',
90
			)
91
		),
92
		'_prices_include_tax' => array(),
93
		'_product_attributes' => array(),
94
		'_product_version' => array(),
95
		'_sku' => array( 'searchable_in_all_content' => true ),
96
		'_stock_status' => array(),
97
		'_wc_average_rating' => array(),
98
		'_wc_rating_count' => array(),
99
		'_wc_review_count' => array(),
100
		'_weight' => array(),
101
		'_width' => array(),
102
103
		//co-authors plus
104
		'cap-description' => array( 'searchable_in_all_content' => true ),
105
		'cap-user_login' => array( 'searchable_in_all_content' => true ),
106
		'cap-user_email' => array(),
107
		'cap-last_name' => array( 'searchable_in_all_content' => true ),
108
		'cap-first_name' => array( 'searchable_in_all_content' => true ),
109
		'cap-display_name' => array( 'searchable_in_all_content' => true ),
110
		'cap-website' => array(),
111
		'cap-jabber' => array(),
112
		'cap-aim' => array(),
113
		'cap-twitter' => array(),
114
		'cap-facebook' => array(),
115
		'cap-google_plus' => array(),
116
		'cap-job_title' => array( 'searchable_in_all_content' => true ),
117
118
		//bbpress
119
		'bbpl_like' => array(),
120
		'bbpress_discussion_comments_copied' => array(),
121
		'bbpress_discussion_tags_copied' => array(),
122
		'bbpress_discussion_topic_id' => array(),
123
		'bbpress_discussion_use_defaults' => array(),
124
		'bbpress_page_header_bg' => array(),
125
		'bbpress_title_bg' => array(),
126
		'use_bbpress_discussion_topic' => array(),
127
128
		//wpml
129
		'tm_meta_wpml' => array(),
130
		'wpml_language' => array(),
131
		'wpml_media_lang' => array(),
132
		'wpml_media_processed' => array(),
133
134
		//blogger import
135
		'blogger_author' => array( 'searchable_in_all_content' => true ),
136
		'blogger_blog' => array( 'searchable_in_all_content' => true ),
137
		'blogger_permalink' => array( 'searchable_in_all_content' => true ),
138
139
		//geo
140
		'geo_address' => array( 'searchable_in_all_content' => true ),
141
		'geo_latitude' => array(),
142
		'geo_longitude' => array(),
143
		'geo_public' => array(),
144
		'geolocated' => array(),
145
		'geolocation_city' => array( 'searchable_in_all_content' => true ),
146
		'geolocation_country_long' => array( 'searchable_in_all_content' => true ),
147
		'geolocation_country_short' => array( 'searchable_in_all_content' => true ),
148
		'geolocation_formatted_address' => array( 'searchable_in_all_content' => true ),
149
		'geolocation_lat' => array(),
150
		'geolocation_long' => array(),
151
		'geolocation_postcode' => array( 'searchable_in_all_content' => true ),
152
		'geolocation_state_long' => array( 'searchable_in_all_content' => true ),
153
		'geolocation_state_short' => array( 'searchable_in_all_content' => true ),
154
155
		//wp-ultimate-recipe
156
		'recipe_alternate_image' => array(),
157
		'recipe_cook_time' => array(),
158
		'recipe_cook_time_text' => array(),
159
		'recipe_description' => array( 'searchable_in_all_content' => true ),
160
		'recipe_ingredients' => array( 'searchable_in_all_content' => true ),
161
		'recipe_instructions' => array( 'searchable_in_all_content' => true ),
162
		'recipe_notes' => array( 'searchable_in_all_content' => true ),
163
		'recipe_nutritional' => array( 'searchable_in_all_content' => true ),
164
		'recipe_passive_time' => array(),
165
		'recipe_passive_time_text' => array(),
166
		'recipe_prep_time' => array(),
167
		'recipe_prep_time_text' => array(),
168
		'recipe_rating' => array(),
169
		'recipe_servings' => array(),
170
		'recipe_servings_normalized' => array(),
171
		'recipe_servings_type' => array(),
172
		'recipe_terms' => array( 'searchable_in_all_content' => true ),
173
		'recipe_terms_with_parents' => array(),
174
		'recipe_title' => array( 'searchable_in_all_content' => true ),
175
		'recipe_user_ratings' => array(),
176
		'recipe_user_ratings_rating' => array(),
177
178
		//generic fields
179
		//  from advanced-custom-fields and metabox.io
180
		'Link' => array(),
181
		'Location' => array(),
182
		'Title' => array( 'searchable_in_all_content' => true ),
183
		'ad_code' => array(),
184
		'address' => array(),
185
		'admin_mail' => array(),
186
		'admin_only' => array(),
187
		'age' => array(),
188
		'aliases' => array(),
189
		'alternate_title' => array(),
190
		'amazon' => array(),
191
		'answer' => array( 'searchable_in_all_content' => true ),
192
		'area' => array(),
193
		'attention' => array(),
194
		'attr' => array(),
195
		'author' => array( 'searchable_in_all_content' => true ),
196
		'author_name' => array( 'searchable_in_all_content' => true ),
197
		'blog' => array(),
198
		'blog_id' => array(),
199
		'call_to_action' => array(),
200
		'campaign_preview' => array(),
201
		'canonical_url' => array(),
202
		'catch_text' => array(),
203
		'category' => array( 'searchable_in_all_content' => true ),
204
		'classificacao' => array(),
205
		'classification' => array(),
206
		'code' => array(),
207
		'codigo' => array(),
208
		'company' => array( 'searchable_in_all_content' => true ),
209
		'company_website' => array(),
210
		'config' => array(),
211
		'construction' => array(),
212
		'container_ids' => array(),
213
		'content' => array( 'searchable_in_all_content' => true ),
214
		'copyright' => array(),
215
		'custom_page_title' => array( 'searchable_in_all_content' => true ),
216
		'custom_permalink' => array(),
217
		'customize' => array(),
218
		'data' => array(),
219
		'date' => array(),
220
		'day' => array(),
221
		'descripcion' => array( 'searchable_in_all_content' => true ),
222
		'description' => array( 'searchable_in_all_content' => true ),
223
		'display_settings' => array(),
224
		'display_type' => array(),
225
		'duration' => array(),
226
		'embed' => array(),
227
		'entity_ids' => array(),
228
		'entity_types' => array(),
229
		'event_subtitle' => array( 'searchable_in_all_content' => true ),
230
		'excluded_container_ids' => array(),
231
		'exclusions' => array(),
232
		'experience' => array(),
233
		'external_url' => array(),
234
		'featured' => array(),
235
		'featured_image' => array(),
236
		'featured_post' => array(),
237
		'featured_story' => array(),
238
		'fee' => array(),
239
		'filter' => array(),
240
		'follow' => array(),
241
		'footer_text' => array(),
242
		'from_header' => array(),
243
		'fullscreen_view' => array(),
244
		'gallery' => array(),
245
		'genre' => array( 'searchable_in_all_content' => true ),
246
		'has_variations' => array(),
247
		'hashtag' => array(),
248
		'header_image' => array(),
249
		'hidden_from_ui' => array(),
250
		'hide_on_screen' => array(),
251
		'homepage_order' => array(),
252
		'hours' => array(),
253
		'i18n' => array(),
254
		'id' => array(),
255
		'image' => array(),
256
		'image_size' => array(),
257
		'image_source' => array(),
258
		'index' => array(),
259
		'intro_text' => array( 'searchable_in_all_content' => true ),
260
		'keywords' => array( 'searchable_in_all_content' => true ),
261
		'latest_news' => array(),
262
		'layout' => array(),
263
		'link' => array(),
264
		'link_url' => array(),
265
		'location' => array(),
266
		'logo' => array(),
267
		'main_title' => array( 'searchable_in_all_content' => true ),
268
		'maximum_entity_count' => array(),
269
		'media' => array(),
270
		'mentions' => array(),
271
		'messages' => array(),
272
		'meta_description' => array( 'searchable_in_all_content' => true ),
273
		'meta_id' => array(),
274
		'meta_index' => array(),
275
		'meta_key' => array(),
276
		'meta_value' => array(),
277
		'modal-dialog-id' => array(),
278
		'name' => array( 'searchable_in_all_content' => true ),
279
		'nombre' => array( 'searchable_in_all_content' => true ),
280
		'notes' => array( 'searchable_in_all_content' => true ),
281
		'options' => array(),
282
		'order_by' => array(),
283
		'order_direction' => array(),
284
		'original_cats' => array(),
285
		'original_headers' => array(),
286
		'original_link' => array(),
287
		'original_message' => array(),
288
		'original_subject' => array(),
289
		'original_title' => array(),
290
		'original_to' => array(),
291
		'other_setting' => array(),
292
		'page_canonical' => array(),
293
		'page_layout' => array(),
294
		'page_sidebar' => array(),
295
		'page_tags' => array(),
296
		'panels_data' => array(),
297
		'parking' => array(),
298
		'pdf_upload' => array(),
299
		'photo' => array(),
300
		'play_time' => array(),
301
		'position' => array(),
302
		'post-rating' => array(),
303
		'post_background' => array(),
304
		'post_color' => array(),
305
		'post_sidebar' => array(),
306
		'post_subtitle' => array( 'searchable_in_all_content' => true ),
307
		'price' => array(),
308
		'publication' => array(),
309
		'rating' => array(),
310
		'ratings_average' => array(),
311
		'ratings_score' => array(),
312
		'ratings_users' => array(),
313
		'relation' => array(),
314
		'reply_to_header' => array(),
315
		'required' => array(),
316
		'returns' => array(),
317
		'review_post' => array(),
318
		'rule' => array(),
319
		'section' => array( 'searchable_in_all_content' => true ),
320
		'session_transcript' => array(),
321
		'settings' => array(),
322
		'sex' => array(),
323
		'shares_count' => array(),
324
		'show_page_title' => array(),
325
		'side' => array(),
326
		'sidebar' => array(),
327
		'site' => array(),
328
		'situation' => array(),
329
		'slide_template' => array(),
330
		'slug' => array(),
331
		'sortorder' => array(),
332
		'source' => array(),
333
		'start_date' => array(),
334
		'status' => array(),
335
		'styles' => array(),
336
		'subtitle' => array( 'searchable_in_all_content' => true ),
337
		'subtitulo' => array(),
338
		'success' => array(),
339
		'summary' => array( 'searchable_in_all_content' => true ),
340
		'synopsis' => array( 'searchable_in_all_content' => true ),
341
		'tel' => array(),
342
		'tema' => array(),
343
		'testimonial' => array(),
344
		'testimonial_author' => array(),
345
		'text_already_subscribed' => array(),
346
		'text_error' => array(),
347
		'text_invalid_email' => array(),
348
		'text_not_subscribed' => array(),
349
		'text_required_field_missing' => array(),
350
		'text_subscribed' => array(),
351
		'text_unsubscribed' => array(),
352
		'thumbnail' => array(),
353
		'time' => array(),
354
		'title' => array( 'searchable_in_all_content' => true ),
355
		'title_view' => array(),
356
		'titre' => array( 'searchable_in_all_content' => true ),
357
		'titulo' => array( 'searchable_in_all_content' => true ),
358
		'to_header' => array(),
359
		'toc' => array(),
360
		'transport_uri' => array(),
361
		'type' => array(),
362
		'url' => array(),
363
		'validation' => array(),
364
		'value' => array(),
365
		'values' => array(),
366
		'variation' => array(),
367
		'video' => array(),
368
		'video_type' => array(),
369
		'video_url' => array(),
370
		'videopress_guid' => array(),
371
		'website' => array(),
372
		'weight' => array(),
373
		'year' => array(),
374
375
	);
376
377
	//postmeta being considered for indexing
378
	// but currently not in the index
379
	// this list is really only for documentation
380
	const unindexed_postmeta = array(
381
382
		//Core
383
		'_wp_attached_file' => array(),
384
		'_wp_attachment_context' => array(),
385
		'_wp_attachment_image_alt' => array(),
386
		'_wp_attachment_is_custom_header' => array(),
387
		'_wp_attachment_metadata' => array(),
388
		'_wp_desired_post_slug' => array(),
389
		'_wp_old_date' => array(),
390
		'_wp_old_slug' => array(),
391
		'_wp_page_template' => array(),
392
393
		//woocommerce products
394
		'coupon_amount' => array(),
395
		'default_source' => array(),
396
		'discount_type' => array(),
397
		'exclude_sale_items' => array(),
398
		'expiry_date' => array(),
399
		'_backorders' => array(),
400
		'_default_attributes' => array(),
401
		'_download_expiry' => array(),
402
		'_download_limit' => array(),
403
		'_download_permissions_granted' => array(),
404
		'_downloadable_files' => array(),
405
		'_manage_stock' => array(),
406
		'_product_image_gallery' => array(),
407
		'_purchase_note' => array(),
408
		'_recorded_coupon_usage_counts' => array(),
409
		'_recorded_sales' => array(),
410
		'_regular_price' => array(),
411
		'_sale_price' => array(),
412
		'_sale_price_dates_from' => array(),
413
		'_sale_price_dates_to' => array(),
414
		'_sold_individually' => array(),
415
		'_stock' => array(),
416
		'_tax_class' => array(),
417
		'_tax_status' => array(),
418
		'_upsell_ids' => array(),
419
		'_variation_description' => array(),
420
		'_virtual' => array(),
421
		'_visibility' => array(),
422
423
		//aioseop
424
		'_aioseop_description' => array(),
425
		'_aioseop_keywords' => array(),
426
		'_aioseop_title' => array(),
427
428
		//yoast
429
		'_yoast_wpseo_authorship' => array(),
430
		'_yoast_wpseo_bctitle' => array(),
431
		'_yoast_wpseo_canonical' => array(),
432
		'_yoast_wpseo_content_score' => array(),
433
		'_yoast_wpseo_focuskw' => array(),
434
		'_yoast_wpseo_focuskw_text_input' => array(),
435
		'_yoast_wpseo_google-plus-description' => array(),
436
		'_yoast_wpseo_google-plus-image' => array(),
437
		'_yoast_wpseo_linkdex' => array(),
438
		'_yoast_wpseo_meta-robots-adv' => array(),
439
		'_yoast_wpseo_meta-robots-nofollow' => array(),
440
		'_yoast_wpseo_meta-robots-noindex' => array(),
441
		'_yoast_wpseo_metadesc' => array(),
442
		'_yoast_wpseo_metakeywords' => array(),
443
		'_yoast_wpseo_opengraph-description' => array(),
444
		'_yoast_wpseo_opengraph-image' => array(),
445
		'_yoast_wpseo_opengraph-title' => array(),
446
		'_yoast_wpseo_primary_byline' => array(),
447
		'_yoast_wpseo_primary_category' => array(),
448
		'_yoast_wpseo_primary_product_cat' => array(),
449
		'_yoast_wpseo_primary_sponsor-type' => array(),
450
		'_yoast_wpseo_primary_tema_category' => array(),
451
		'_yoast_wpseo_primary_wpdmcategory' => array(),
452
		'_yoast_wpseo_primary_wt_portfolio_category' => array(),
453
		'_yoast_wpseo_redirect' => array(),
454
		'_yoast_wpseo_sitemap-include' => array(),
455
		'_yoast_wpseo_sitemap-prio' => array(),
456
		'_yoast_wpseo_title' => array(),
457
		'_yoast_wpseo_twitter-description' => array(),
458
		'_yoast_wpseo_twitter-image' => array(),
459
460
		//bbpress
461
		'bbppu_read_by' => array(),
462
		'_bbp_activity_id' => array(),
463
		'_bbp_attachment' => array(),
464
		'_bbp_attachment_upload_error' => array(),
465
		'_bbp_forum_id' => array(),
466
		'_bbp_forum_parent_id' => array(),
467
		'_bbp_forum_subforum_count' => array(),
468
		'_bbp_forum_type' => array(),
469
		'_bbp_group_ids' => array(),
470
		'_bbp_last_active_id' => array(),
471
		'_bbp_last_active_time' => array(),
472
		'_bbp_last_reply_id' => array(),
473
		'_bbp_last_topic_id' => array(),
474
		'_bbp_old_forum_id' => array(),
475
		'_bbp_old_sticky_status' => array(),
476
		'_bbp_old_topic_id' => array(),
477
		'_bbp_post_id' => array(),
478
		'_bbp_reply_count' => array(),
479
		'_bbp_reply_is_private' => array(),
480
		'_bbp_reply_to' => array(),
481
		'_bbp_revision_log' => array(),
482
		'_bbp_status' => array(),
483
		'_bbp_sticky_topics' => array(),
484
		'_bbp_topic_count' => array(),
485
		'_bbp_topic_id' => array(),
486
		'_bbp_total_reply_count' => array(),
487
		'_bbp_total_topic_count' => array(),
488
		'_bbp_voice_count' => array(),
489
490
		//???
491
		'_locale' => array(),
492
493
		//wp-job-manager
494
		'_job_title' => array(),
495
		'_job_description' => array(),
496
497
		//wpml
498
		'_wpml_media_duplicate' => array(),
499
		'_wpml_media_featured' => array(),
500
501
		//generic fields
502
		'ad_clicks_count' => array(),
503
		'email' => array(),
504
		'usage_count' => array(),
505
		'user_mail' => array(),
506
		'views' => array(),
507
		'_EventAllDay' => array(),
508
		'_EventCost' => array(),
509
		'_EventCurrencyPosition' => array(),
510
		'_EventCurrencySymbol' => array(),
511
		'_EventDuration' => array(),
512
		'_EventEndDate' => array(),
513
		'_EventEndDateUTC' => array(),
514
		'_EventOrganizerID' => array(),
515
		'_EventOrigin' => array(),
516
		'_EventShowMap' => array(),
517
		'_EventShowMapLink' => array(),
518
		'_EventStartDate' => array(),
519
		'_EventStartDateUTC' => array(),
520
		'_EventTimezone' => array(),
521
		'_EventTimezoneAbbr' => array(),
522
		'_EventURL' => array(),
523
		'_EventVenueID' => array(),
524
		'_OrganizerEmail' => array(),
525
		'_OrganizerOrganizer' => array(),
526
		'_OrganizerOrigin' => array(),
527
		'_OrganizerPhone' => array(),
528
		'_OrganizerWebsite' => array(),
529
		'_VenueAddress' => array(),
530
		'_VenueCity' => array(),
531
		'_VenueCountry' => array(),
532
		'_VenueOrigin' => array(),
533
		'_VenuePhone' => array(),
534
		'_VenueProvince' => array(),
535
		'_VenueShowMap' => array(),
536
		'_VenueShowMapLink' => array(),
537
		'_VenueState' => array(),
538
		'_VenueStateProvince' => array(),
539
		'_VenueURL' => array(),
540
		'_VenueVenue' => array(),
541
		'_VenueVenueID' => array(),
542
		'_VenueZip' => array(),
543
		'_default_attributes' => array(),
544
		'_description' => array(),
545
		'_edit_last' => array(),
546
		'_feedback_all_fields' => array(),
547
		'_feedback_author' => array(),
548
		'_feedback_author_email' => array(),
549
		'_feedback_author_url' => array(),
550
		'_feedback_contact_form_url' => array(),
551
		'_feedback_ip' => array(),
552
		'_feedback_subject' => array(),
553
		'_file_paths' => array(),
554
		'_layout' => array(),
555
		'_links_to' => array(),
556
		'_links_to_target' => array(),
557
		'_mail' => array(),
558
		'_mail_2' => array(),
559
		'_messages' => array(),
560
		'_numero' => array(),
561
		'_post_restored_from' => array(),
562
		'_video_url' => array(),
563
		'_website' => array(),
564
565
	); //end post meta
566
567
	//Just a list of taxonomy slugs - VARCHAR(32)
568
	const taxonomies = array(
569
570
		//Core
571
		'link_category',
572
		'nav_menu',
573
		'post_format',
574
575
		//bbpress
576
		'topic',
577
		'topic-tag',
578
		'topics',
579
580
		//buddypress
581
		'bp-email-type',
582
		'bp-email-type',
583
		'bp_docs_access',
584
		'bp_docs_associated_item',
585
		'bp_docs_comment_access',
586
		'bp_docs_doc_in_folder',
587
		'bp_docs_folder_in_group',
588
		'bp_docs_tag',
589
		'bp_member_type',
590
591
		//co-authors plus
592
		'author',
593
594
		//events calendar plus
595
		//the events calendar
596
		'event-categories',
597
		'event-category',
598
		'event-tag',
599
		'event-tags',
600
		'event-type',
601
		'event-venue',
602
		'event_category',
603
		'event_location',
604
		'event_organizer',
605
		'event_tag',
606
		'event_type',
607
		'event_type_2',
608
		'event_users',
609
		'events_categories',
610
		'events_category',
611
		'events_feeds',
612
		'events_tags',
613
		'tribe_events_cat',
614
615
		//jetpack
616
		'jetpack-portfolio-tag',
617
		'jetpack-portfolio-type',
618
		'jetpack-search-tag0',
619
		'jetpack-search-tag1',
620
		'jetpack-search-tag2',
621
		'jetpack-search-tag3',
622
		'jetpack-search-tag4',
623
		'jetpack-search-tag5',
624
		'jetpack-search-tag6',
625
		'jetpack-search-tag7',
626
		'jetpack-search-tag8',
627
		'jetpack-search-tag9',
628
629
		//nextgen gallery
630
		'ngg_tag',
631
632
		//polylang
633
		//wpml
634
		'language',
635
		'post_translations',
636
		'term_language',
637
		'term_translations',
638
		'translation_priority',
639
640
		//woocommerce
641
		'pa_accessory-type',
642
		'pa_actor',
643
		'pa_age',
644
		'pa_ambulance',
645
		'pa_amount',
646
		'pa_arm-roll',
647
		'pa_aspectratio',
648
		'pa_audiencerating',
649
		'pa_author',
650
		'pa_axle',
651
		'pa_battery',
652
		'pa_belakang',
653
		'pa_binding',
654
		'pa_body-type',
655
		'pa_bore-x-stroke-mm',
656
		'pa_box-cargo',
657
		'pa_brakes',
658
		'pa_brand',
659
		'pa_brands',
660
		'pa_bus',
661
		'pa_c',
662
		'pa_cabin-to-end',
663
		'pa_capacity',
664
		'pa_catalognumberlist',
665
		'pa_ce-keurmerk',
666
		'pa_chassis-front',
667
		'pa_chassis-rear',
668
		'pa_chassis-weight-kg',
669
		'pa_chip-log',
670
		'pa_clothing-size',
671
		'pa_clutch',
672
		'pa_clutch-type',
673
		'pa_collection',
674
		'pa_color',
675
		'pa_colors',
676
		'pa_colour',
677
		'pa_compactor',
678
		'pa_condition',
679
		'pa_cor',
680
		'pa_couleur',
681
		'pa_country',
682
		'pa_countryregion-of-manufacture',
683
		'pa_crane',
684
		'pa_creator',
685
		'pa_culoare',
686
		'pa_customerpackagetype',
687
		'pa_depan',
688
		'pa_depan-belakang',
689
		'pa_department',
690
		'pa_design',
691
		'pa_diameter',
692
		'pa_diameter-cakram',
693
		'pa_dimension-mm',
694
		'pa_dimensions',
695
		'pa_director',
696
		'pa_disc-diameter',
697
		'pa_drive-system',
698
		'pa_dump',
699
		'pa_ean',
700
		'pa_eanlist',
701
		'pa_edition',
702
		'pa_electric-battery',
703
		'pa_engine-model',
704
		'pa_engine-size',
705
		'pa_ethnicity',
706
		'pa_exhaust-brake',
707
		'pa_fabric',
708
		'pa_farbe',
709
		'pa_farg',
710
		'pa_farge',
711
		'pa_features',
712
		'pa_final-gear-ratio',
713
		'pa_finish',
714
		'pa_fire-fighting',
715
		'pa_fits',
716
		'pa_flat-bed',
717
		'pa_flavour',
718
		'pa_format',
719
		'pa_fragrance',
720
		'pa_frame',
721
		'pa_front',
722
		'pa_front-overhang',
723
		'pa_front-rear',
724
		'pa_front-tread',
725
		'pa_fuel-tank',
726
		'pa_fuel-type',
727
		'pa_garantie',
728
		'pa_geadviseerd-accu-type',
729
		'pa_gear-ratio',
730
		'pa_gender',
731
		'pa_genre',
732
		'pa_gewicht-exclusief-accu',
733
		'pa_gift-card-amount',
734
		'pa_grade-ability-tan-o',
735
		'pa_groesse',
736
		'pa_gtin',
737
		'pa_gvwr-gcwr',
738
		'pa_hardwareplatform',
739
		'pa_hazardousmaterialtype',
740
		'pa_height',
741
		'pa_hekmotor-of-boegmotor',
742
		'pa_helmet-size',
743
		'pa_hersteller',
744
		'pa_high-blow-tank',
745
		'pa_hoehe',
746
		'pa_inhoud',
747
		'pa_isadultproduct',
748
		'pa_isbn',
749
		'pa_iseligiblefortradein',
750
		'pa_itemdimensions',
751
		'pa_itempartnumber',
752
		'pa_kemudi-tipe',
753
		'pa_kleur',
754
		'pa_kopling-tipe',
755
		'pa_label',
756
		'pa_languages',
757
		'pa_lbs',
758
		'pa_legaldisclaimer',
759
		'pa_lengte-aansluitkabel',
760
		'pa_length',
761
		'pa_liquid-tank',
762
		'pa_location',
763
		'pa_losse-motor-complete-set',
764
		'pa_maat',
765
		'pa_main-brake',
766
		'pa_make',
767
		'pa_manufacturer',
768
		'pa_manufacturer-part-number',
769
		'pa_manufacturermaximumage',
770
		'pa_manufacturerminimumage',
771
		'pa_manufacturerpartswarrantydesc',
772
		'pa_masseinheit',
773
		'pa_material',
774
		'pa_mau-sac',
775
		'pa_maximum-power-ps-rpm',
776
		'pa_maximum-speed',
777
		'pa_maximum-torque-kgm-rpm',
778
		'pa_mediatype',
779
		'pa_megethos',
780
		'pa_merk',
781
		'pa_metal-type',
782
		'pa_min-turning-circle',
783
		'pa_mixer',
784
		'pa_model',
785
		'pa_model-tipe',
786
		'pa_model-type',
787
		'pa_modelo',
788
		'pa_mount',
789
		'pa_mpn',
790
		'pa_nicotine-strength',
791
		'pa_nos-of-cylinder',
792
		'pa_nos-of-tire',
793
		'pa_numberofdiscs',
794
		'pa_numberofitems',
795
		'pa_numberofpages',
796
		'pa_offset',
797
		'pa_open-cargo',
798
		'pa_operatingsystem',
799
		'pa_options',
800
		'pa_other-part-number',
801
		'pa_overall-height',
802
		'pa_overall-length',
803
		'pa_overall-width',
804
		'pa_overview',
805
		'pa_packagedimensions',
806
		'pa_packagequantity',
807
		'pa_pages',
808
		'pa_parking-brake',
809
		'pa_part-number',
810
		'pa_partnumber',
811
		'pa_pattern',
812
		'pa_pattern2',
813
		'pa_performa',
814
		'pa_pictureformat',
815
		'pa_pin-size',
816
		'pa_piston-displacement-cc',
817
		'pa_ploshhad',
818
		'pa_plug-type',
819
		'pa_power',
820
		'pa_product',
821
		'pa_productgroup',
822
		'pa_producttypename',
823
		'pa_publicationdate',
824
		'pa_publisher',
825
		'pa_quantity',
826
		'pa_rear',
827
		'pa_rear-overhang',
828
		'pa_rear-tread',
829
		'pa_refrigerated-box',
830
		'pa_region',
831
		'pa_regioncode',
832
		'pa_releasedate',
833
		'pa_rem-parkir',
834
		'pa_rem-pelambat',
835
		'pa_rem-utama',
836
		'pa_reverse',
837
		'pa_runningtime',
838
		'pa_scent',
839
		'pa_schachtlengte',
840
		'pa_seeds',
841
		'pa_series',
842
		'pa_setting',
843
		'pa_sex',
844
		'pa_shape',
845
		'pa_shirt-size',
846
		'pa_size',
847
		'pa_sizes',
848
		'pa_sku',
849
		'pa_sky-lift',
850
		'pa_sleeve-length',
851
		'pa_snelheidsregeling',
852
		'pa_staart',
853
		'pa_steering',
854
		'pa_steering-type',
855
		'pa_storlek',
856
		'pa_studio',
857
		'pa_stuwkracht-lbs',
858
		'pa_style',
859
		'pa_suspensions',
860
		'pa_taille',
861
		'pa_talla',
862
		'pa_tamanho',
863
		'pa_tamano',
864
		'pa_taxi',
865
		'pa_ticket-type',
866
		'pa_tire-size',
867
		'pa_total-chassis-weight',
868
		'pa_towing-truck',
869
		'pa_tradeinvalue',
870
		'pa_trailer-t-head',
871
		'pa_transmisi-tipe',
872
		'pa_transmission',
873
		'pa_transmission-type',
874
		'pa_types',
875
		'pa_ukuran',
876
		'pa_upc',
877
		'pa_upclist',
878
		'pa_variation',
879
		'pa_vehicle-carrier',
880
		'pa_vergelijkbaar-stuwkracht',
881
		'pa_vermogen',
882
		'pa_voltage',
883
		'pa_volume',
884
		'pa_warranty',
885
		'pa_weight',
886
		'pa_wheel-base',
887
		'pa_wheel-configuration',
888
		'pa_wheel-disc-size',
889
		'pa_width',
890
		'pa_zout-water-geschikt',
891
		'product',
892
		'product-category',
893
		'product_brand',
894
		'product_cat',
895
		'product_delivery_time',
896
		'product_delivery_times',
897
		'product_price_label',
898
		'product_sale_labels',
899
		'product_shipping_class',
900
		'product_tag',
901
		'product_type',
902
		'product_unit',
903
		'product_visibility',
904
		'products',
905
906
		//wp-job-manager
907
		'job-category',
908
		'job-location',
909
		'job-type',
910
		'job_cat',
911
		'job_category',
912
		'job_listing_category',
913
		'job_listing_label',
914
		'job_listing_region',
915
		'job_listing_tag',
916
		'job_listing_type',
917
		'job_salary',
918
		'job_tag',
919
		'job_type',
920
		'jobman_category',
921
		'jobpost_category',
922
		'jobpost_job_type',
923
		'jobpost_location',
924
		'resume_category',
925
		'resume_groups',
926
		'resume_job_type',
927
		'resume_job_type',
928
		'resume_languages',
929
		'resume_region',
930
		'resume_skill',
931
		'resume_specialities',
932
933
		//generic
934
		'_resource',
935
		'acadp_categories',
936
		'acadp_locations',
937
		'action-group',
938
		'activity',
939
		'actor',
940
		'actors',
941
		'ad-group',
942
		'adace-ad-group',
943
		'adace-sponsor',
944
		'additional_features',
945
		'adv_location',
946
		'advanced_ads_groups',
947
		'advert_category',
948
		'affcoups_coupon_category',
949
		'affcoups_coupon_type',
950
		'ai_log_context',
951
		'ai_log_level',
952
		'al_product-cat',
953
		'aol_ad_category',
954
		'aol_ad_location',
955
		'aol_ad_type',
956
		'aol_application_status',
957
		'area',
958
		'article-slug',
959
		'asgarosforum-category',
960
		'asgarosforum-usergroup',
961
		'attachment_category',
962
		'attachment_tag',
963
		'atum_location',
964
		'avhec_catgroup',
965
		'bartype',
966
		'baths',
967
		'beds',
968
		'bepro_listing_types',
969
		'blog_category',
970
		'booked_custom_calendars',
971
		'brand',
972
		'brands',
973
		'business_category',
974
		'bwg_tag',
975
		'byline',
976
		'calendar_category',
977
		'calendar_feed',
978
		'calendar_type',
979
		'campaign_category',
980
		'campaign_tag',
981
		'carousel_cat',
982
		'carousels_category',
983
		'case27_job_listing_tags',
984
		'categories',
985
		'category_media',
986
		'category_portfolio',
987
		'celebrity_cat',
988
		'chapters',
989
		'chronosly_category',
990
		'city',
991
		'classified_listing_type',
992
		'client-types',
993
		'clients_groups',
994
		'cm-business-category',
995
		'cmdm_category',
996
		'cn_log_type',
997
		'coderevolution_post_source',
998
		'collection',
999
		'community',
1000
		'cont_category',
1001
		'content_audit',
1002
		'country',
1003
		'course',
1004
		'course-cat',
1005
		'course-category',
1006
		'course_cat',
1007
		'course_category',
1008
		'course_difficulty',
1009
		'course_tag',
1010
		'courses_type',
1011
		'cp_campaign',
1012
		'cp_recipe_category',
1013
		'csco_post_featured',
1014
		'ct_status',
1015
		'ctl-stories',
1016
		'cuisine',
1017
		'dc_vendor_shop',
1018
		'ddownload_category',
1019
		'ddownload_tag',
1020
		'dealstore',
1021
		'department',
1022
		'departments',
1023
		'developed-by',
1024
		'dfads_group',
1025
		'dgfw_gift_categories',
1026
		'director',
1027
		'district',
1028
		'dlm_download_category',
1029
		'dlm_download_tag',
1030
		'doc_tag',
1031
		'document-category',
1032
		'download_artist',
1033
		'download_category',
1034
		'download_tag',
1035
		'downloads_filter',
1036
		'dps_book',
1037
		'dt_gallery_category',
1038
		'dt_logos_category',
1039
		'dt_portfolio_category',
1040
		'dt_team_category',
1041
		'dt_testimonials_category',
1042
		'dtcast',
1043
		'dtcreator',
1044
		'dtdirector',
1045
		'dtnetworks',
1046
		'dtstudio',
1047
		'dtyear',
1048
		'dvteamtaxonomy',
1049
		'dwqa-question_category',
1050
		'dwqa-question_tag',
1051
		'eafl_category',
1052
		'easy-testimonial-category',
1053
		'ecwd_event_category',
1054
		'edd_log_type',
1055
		'ef_editorial_meta',
1056
		'ef_usergroup',
1057
		'element_category',
1058
		'elementor_library_type',
1059
		'employees_category',
1060
		'encyclopedia-tag',
1061
		'envira-tag',
1062
		'epkb_post_type_1_category',
1063
		'espresso_event_categories',
1064
		'espresso_event_type',
1065
		'essential_grid_category',
1066
		'et_post_format',
1067
		'faq-group',
1068
		'faq-tags',
1069
		'faq-topic',
1070
		'faq_cat',
1071
		'faq_categories',
1072
		'faq_category',
1073
		'faqs-category',
1074
		'fdm-menu-section',
1075
		'feature',
1076
		'featured_item_category',
1077
		'featured_item_tag',
1078
		'feedback_type',
1079
		'feeds',
1080
		'fl-builder-template-type',
1081
		'flamingo_inbound_channel',
1082
		'follow_up_email_campaign',
1083
		'follow_up_email_type',
1084
		'following_users',
1085
		'football-team-taxo',
1086
		'fpd_design_category',
1087
		'gallery-category',
1088
		'gallery_cat',
1089
		'gallery_categories',
1090
		'gallery_category',
1091
		'gallery_entries',
1092
		'gallerycat',
1093
		'gd_event_tags',
1094
		'gd_eventcategory',
1095
		'gd_place_tags',
1096
		'gd_placecategory',
1097
		'genre',
1098
		'genres',
1099
		'gg_connect_hub',
1100
		'give_log_type',
1101
		'gn-genre',
1102
		'gn-location-1',
1103
		'gn-location-2',
1104
		'gn-location-3',
1105
		'gp_hubs',
1106
		'gp_portfolios',
1107
		'gp_videos',
1108
		'group',
1109
		'group-documents-category',
1110
		'groups',
1111
		'hashtags',
1112
		'hotel_facility',
1113
		'ia_invited_groups',
1114
		'ia_invitees',
1115
		'incsub_wiki_category',
1116
		'industry',
1117
		'ingredient',
1118
		'issue',
1119
		'issuem_issue',
1120
		'issuem_issue_tags',
1121
		'jbp_category',
1122
		'karma-slider-category',
1123
		'klaviyo_shop_cart_status',
1124
		'kwlogos-carousel',
1125
		'layout_category',
1126
		'layout_type',
1127
		'ld_course_category',
1128
		'ld_course_tag',
1129
		'ld_lesson_category',
1130
		'ld_lesson_tag',
1131
		'ld_topic_tag',
1132
		'lesson-tag',
1133
		'level',
1134
		'lingotek_hash',
1135
		'lingotek_profile',
1136
		'link_library_category',
1137
		'linkage',
1138
		'list-tags',
1139
		'listing-category',
1140
		'listing_amenities',
1141
		'listing_category',
1142
		'liveblog',
1143
		'llms_access_plan_visibility',
1144
		'llms_product_visibility',
1145
		'localisation',
1146
		'location',
1147
		'location-tag',
1148
		'locations',
1149
		'magazine',
1150
		'map_location_categories',
1151
		'masonry_gallery_category',
1152
		'mc-event-category',
1153
		'mec_category',
1154
		'mec_location',
1155
		'mec_organizer',
1156
		'media-category',
1157
		'media-tags',
1158
		'media_category',
1159
		'media_folder',
1160
		'member_cat',
1161
		'mentions',
1162
		'mesh_template_types',
1163
		'ml-slider',
1164
		'module',
1165
		'module-tag',
1166
		'module_width',
1167
		'movie_cat',
1168
		'mpp-component',
1169
		'mpp-status',
1170
		'mpp-type',
1171
		'muvicast',
1172
		'muvicountry',
1173
		'muvidirector',
1174
		'muviindex',
1175
		'muviquality',
1176
		'muviyear',
1177
		'network',
1178
		'news-category',
1179
		'news-tag',
1180
		'news_category',
1181
		'nova_menu',
1182
		'nova_menu_item_label',
1183
		'offer-types',
1184
		'organization',
1185
		'our_team_category',
1186
		'page_category',
1187
		'parisrestaurant',
1188
		'parissauna',
1189
		'partner_category',
1190
		'partners',
1191
		'paswdestinatari',
1192
		'paypal_ipn_type',
1193
		'pdf_lv_tag',
1194
		'pec_events_category',
1195
		'people',
1196
		'people-expertise',
1197
		'people-location',
1198
		'perfect_quotes_category',
1199
		'performer',
1200
		'person',
1201
		'personnal-category',
1202
		'pexcontentslider_category',
1203
		'pexfullslider_category',
1204
		'pexnivoslider_category',
1205
		'pexpricing_category',
1206
		'pexservice_category',
1207
		'pextestimonial_category',
1208
		'pf_feed_item_tag',
1209
		'pg_sas_type',
1210
		'photo_tag',
1211
		'phototype',
1212
		'pj-categs',
1213
		'pj-tags',
1214
		'pl-categs',
1215
		'placement',
1216
		'plan_status',
1217
		'platform',
1218
		'player',
1219
		'plugins_categories',
1220
		'podcast',
1221
		'pojo_sidebars',
1222
		'popup_category',
1223
		'pornstars',
1224
		'portada',
1225
		'portcat',
1226
		'portfolio-category',
1227
		'portfolio-gallery',
1228
		'portfolio-skills',
1229
		'portfolio-tag',
1230
		'portfolio-tags',
1231
		'portfolio-type',
1232
		'portfolio-types',
1233
		'portfolio_cat',
1234
		'portfolio_categories',
1235
		'portfolio_category',
1236
		'portfolio_cats',
1237
		'portfolio_client',
1238
		'portfolio_entries',
1239
		'portfolio_filter',
1240
		'portfolio_in',
1241
		'portfolio_label',
1242
		'portfolio_skills',
1243
		'portfolio_tag',
1244
		'portfolio_tags',
1245
		'portfolio_type',
1246
		'posicao',
1247
		'post-type',
1248
		'post_format',
1249
		'post_series',
1250
		'post_status',
1251
		'pp_editorial_meta',
1252
		'pp_notify_role',
1253
		'pp_usergroup',
1254
		'pricingcats',
1255
		'print_section',
1256
		'print_status',
1257
		'programs',
1258
		'project-attributes',
1259
		'project-cat',
1260
		'project-category',
1261
		'project-type',
1262
		'project_category',
1263
		'project_tag',
1264
		'projects_category',
1265
		'projects_tag',
1266
		'prominence',
1267
		'promotion-categories',
1268
		'property-city',
1269
		'property-feature',
1270
		'property-status',
1271
		'property-type',
1272
		'property-types',
1273
		'property_action_category',
1274
		'property_area',
1275
		'property_category',
1276
		'property_city',
1277
		'property_feature',
1278
		'property_status',
1279
		'property_type',
1280
		'province',
1281
		'provinces',
1282
		'publisher',
1283
		'pwb-brand',
1284
		'qmn_log_type',
1285
		'qualification',
1286
		'quality',
1287
		'question-category',
1288
		'question-tag',
1289
		'question-type',
1290
		'question_cat',
1291
		'question_category',
1292
		'question_tag',
1293
		'quiz',
1294
		'quiz-type',
1295
		'quote_status',
1296
		'rating',
1297
		'reaction',
1298
		'recipe-category',
1299
		'recipe_category',
1300
		'recipe_type',
1301
		'region',
1302
		'registrant-event',
1303
		'related_keywords',
1304
		'release-date',
1305
		'resource-type',
1306
		'resource_category',
1307
		'resource_type',
1308
		'resourcetype',
1309
		'review-type',
1310
		'review_category',
1311
		'rodzaj',
1312
		'role',
1313
		'room_category',
1314
		'room_tag',
1315
		'roomtype',
1316
		'rubriek_categorie',
1317
		'savedreply',
1318
		'schools',
1319
		'scope',
1320
		'scores_cat',
1321
		'sdm_categories',
1322
		'sdm_tags',
1323
		'season',
1324
		'secondary_html_features',
1325
		'section',
1326
		'sector',
1327
		'series',
1328
		'series_of_posts',
1329
		'services_group',
1330
		'serving',
1331
		'shop_cart_status',
1332
		'shop_cat',
1333
		'shop_order_status',
1334
		'shop_vendor',
1335
		'shop_warranty_status',
1336
		'shopp_category',
1337
		'shopr_category',
1338
		'show',
1339
		'simple_link_category',
1340
		'site-review-category',
1341
		'sizes',
1342
		'skill',
1343
		'skill_level',
1344
		'skills',
1345
		'sld_cat',
1346
		'slide-page',
1347
		'slide-types',
1348
		'slide_categories',
1349
		'slide_type',
1350
		'slider',
1351
		'slider-locations',
1352
		'slider_category',
1353
		'slides_category',
1354
		'slideshow',
1355
		'sm-category',
1356
		'snax_format',
1357
		'sngg_media_tags',
1358
		'solution_channel',
1359
		'source_domain',
1360
		'source_id',
1361
		'sp_league',
1362
		'sp_position',
1363
		'sp_role',
1364
		'sp_season',
1365
		'sp_venue',
1366
		'speaker',
1367
		'speakers',
1368
		'special-feature',
1369
		'specialty',
1370
		'spnl_log_type',
1371
		'sponsor_categories',
1372
		'sponsor_category',
1373
		'sponsor_type',
1374
		'spot_tag',
1375
		'st_af_category',
1376
		'st_af_tags',
1377
		'staff',
1378
		'staff-member-category',
1379
		'staff-member-group',
1380
		'staff_category',
1381
		'staffgroups',
1382
		'state',
1383
		'status',
1384
		'store',
1385
		'stores',
1386
		'studio',
1387
		'study_level',
1388
		'style',
1389
		'style_category',
1390
		'sub_transaction_action',
1391
		'sub_transaction_result',
1392
		'subcategory',
1393
		'subject',
1394
		'subscription_status',
1395
		'swift-slider-category',
1396
		'syn_sitegroup',
1397
		'szbl-content-tag',
1398
		'tags',
1399
		'task-queue',
1400
		'tax_feature',
1401
		'tcb_symbols_tax',
1402
		'tcp_product_category',
1403
		'team',
1404
		'team-category',
1405
		'team_cat',
1406
		'team_categories',
1407
		'team_category',
1408
		'team_cats',
1409
		'team_department',
1410
		'team_designation',
1411
		'team_group',
1412
		'team_member_position',
1413
		'team_mfcategory',
1414
		'teams',
1415
		'tenant_categories',
1416
		'tenant_location',
1417
		'test-type',
1418
		'testimonial-category',
1419
		'testimonial-group',
1420
		'testimonial-types',
1421
		'testimonial_categories',
1422
		'testimonial_category',
1423
		'testimonials-category',
1424
		'testimonials_category',
1425
		'th_events_cat',
1426
		'th_galleries_cat',
1427
		'thegem_clients_sets',
1428
		'thegem_news_sets',
1429
		'thegem_portfolios',
1430
		'thegem_quickfinders',
1431
		'thegem_teams',
1432
		'thegem_testimonials_sets',
1433
		'theme',
1434
		'themefusion_es_groups',
1435
		'themes_categories',
1436
		'themo_cpt_group',
1437
		'themo_project_type',
1438
		'themo_room_type',
1439
		'thirstylink-category',
1440
		'ticket_channel',
1441
		'ticket_priority',
1442
		'timeline_post_tag',
1443
		'tipo',
1444
		'tipologie',
1445
		'tips',
1446
		'tm-testimonials_category',
1447
		'tm_testimonial_group',
1448
		'tooltips_categories',
1449
		'tour_category',
1450
		'tour_destination',
1451
		'tour_facility',
1452
		'tour_phys',
1453
		'tour_type',
1454
		'tp_event_category',
1455
		'transmission',
1456
		'treatment-type',
1457
		'tribe_events_cat',
1458
		'truethemes-gallery-category',
1459
		'tsas-category',
1460
		'tshowcase-categories',
1461
		'tsml_region',
1462
		'ttshowcase_groups',
1463
		'tvo_tags',
1464
		'type',
1465
		'types',
1466
		'u_course_cat',
1467
		'u_department',
1468
		'u_event_cat',
1469
		'ufaq-category',
1470
		'ufaq-tag',
1471
		'um_hashtag',
1472
		'um_user_tag',
1473
		'uncodeblock_category',
1474
		'upg_cate',
1475
		'urp-review-category',
1476
		'us_portfolio_category',
1477
		'us_testimonial_category',
1478
		'user-group',
1479
		'user_category',
1480
		'user_status',
1481
		'vendor',
1482
		'venue',
1483
		'video-category',
1484
		'video-series',
1485
		'video-tag',
1486
		'video_category',
1487
		'video_tag',
1488
		'videos',
1489
		'videos_categories',
1490
		'voice_category',
1491
		'vtmin_rule_category',
1492
		'vtprd_rule_category',
1493
		'w2dc-category',
1494
		'w2dc-location',
1495
		'w2dc-tag',
1496
		'wcb_sponsor_level',
1497
		'wcb_track',
1498
		'wccf_checkout_field_field_type',
1499
		'wccf_checkout_field_status',
1500
		'wccf_order_field_field_type',
1501
		'wccf_order_field_status',
1502
		'wccf_product_field_field_type',
1503
		'wccf_product_field_status',
1504
		'wccf_product_prop_field_type',
1505
		'wccf_product_prop_status',
1506
		'wccf_user_field_field_type',
1507
		'wccf_user_field_status',
1508
		'wcfm_knowledgebase_category',
1509
		'wcm_task_category',
1510
		'wcpv_product_vendors',
1511
		'wcs-instructor',
1512
		'wcs-room',
1513
		'wcs-type',
1514
		'wdca_ad_categories',
1515
		'where',
1516
		'who',
1517
		'wiki-category',
1518
		'wiki_cats',
1519
		'wl_entity_type',
1520
		'workout_entries',
1521
		'works-category',
1522
		'wp-rest-api-log-method',
1523
		'wp-rest-api-log-source',
1524
		'wp-rest-api-log-status',
1525
		'wp-type-activity-types',
1526
		'wp-type-contacts-subtype',
1527
		'wp-type-group',
1528
		'wp_bannerize_tax',
1529
		'wp_log_type',
1530
		'wp_super_faq_category',
1531
		'wpbdm-region',
1532
		'wpbdp_category',
1533
		'wpbdp_tag',
1534
		'wpcm_make_model',
1535
		'wpdmcategory',
1536
		'wpfb_file_category',
1537
		'wpfcas-category',
1538
		'wpfd-category',
1539
		'wplead_list_category',
1540
		'wplss_logo_showcase_cat',
1541
		'wpm-testimonial-category',
1542
		'wpmf-category',
1543
		'wpostahs-slider-category',
1544
		'wprm_course',
1545
		'wprm_cuisine',
1546
		'wprm_ingredient',
1547
		'wprm_keyword',
1548
		'wprss_category',
1549
		'wps_forum',
1550
		'wpsc-variation',
1551
		'wpsc_log_type',
1552
		'wpsc_product_category',
1553
		'wpseo_locations_category',
1554
		'wpsisac_slider-category',
1555
		'wpsl_store_category',
1556
		'wpt_category',
1557
		'wpt_result',
1558
		'wpt_scale',
1559
		'wpv_sermons_category',
1560
		'wpvqgr_tag',
1561
		'writer',
1562
		'wyz_business_category',
1563
		'wyz_business_rating_category',
1564
		'wyz_business_tag',
1565
		'wzkb_category',
1566
		'year',
1567
		'years',
1568
		'yith_product_brand',
1569
		'yith_shop_vendor',
1570
		'yst_prominent_words',
1571
		'zipcode',
1572
		'zoninator_zones',
1573
		'zrf_field_group',
1574
	); //end taxonomies
1575
1576
}
1577