Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
Inventory_Presser_Taxonomy_Overlapper::overlapping_meta_keys()
overlapping_meta_keys
Description Description
Returns an array containing keys that are post meta field suffixes. The values are the overlapping taxonomy names.
Return Return
(array)
Source Source
File: includes/class-taxonomy-overlapper.php
private function overlapping_meta_keys() { return apply_filters( 'invp_overlapping_keys', array( 'body_style' => 'style', 'make' => 'make', 'model' => 'model', 'year' => 'model_year', 'availability' => 'availability', 'color_base' => 'colors', 'condition' => 'condition', 'cylinders' => 'cylinders', 'drive_type' => 'drive_type', 'fuel' => 'fuel', 'location' => 'location', 'propulsion_type' => 'propulsion_type', 'transmission' => 'transmission', 'type' => 'type', 'wholesale' => 'availability', 'condition_boat' => 'condition_boat', 'engine_count' => 'engine_count', 'engine_make' => 'engine_make', 'engine_model' => 'engine_model', 'horsepower' => 'horsepower', 'hull_material' => 'hull_material', ) ); }
Expand full source codeCollapse full source codeView on Github