Categorize vehicles by their physical location
One taxonomy categorizes vehicle posts by their physical location. Each term in the locations taxonomy is a dealership lot and contains an address, phone numbers, and sets of hours. The locations taxonomy is what powers the “Open today until 7:00 pm” feature.
Dashboard Screenshots
Visit Locations under the Vehicles menu in the dashboard to find or edit location terms.
Location Sentence
If a site has more than one location, Inventory Presser will automatically include a location sentence on each vehicle details page that describes where shoppers can find the vehicle.
Template tag
Generate the location sentence in PHP with the template tag invp_get_the_location_sentence()
How it Works
The term members hold the address. Phone numbers and hours of operation are stored in term meta. Our demo site’s REST API will always return location term JSON at https://demo.inventorypresser.com/wp-json/wp/v2/location
Term name
Dealership or lot name
Term description
Full address with line breaks
Term meta
- The keys ending in
_uid
contain a unique identifier. If you are editing locations in the dashboard, these values will be generated for you automatically. - Each day of the week has a field ending in
_appt
. If the dealership is open by appointment on that day, this value stored as a bit value containing 1 or 0.
Keys & Sample Values
This table of keys contains two phone numbers and one set of hours. There is room for more of each.
Term meta key | Value |
---|---|
address_street | 1185 Division Highway |
address_street_line_two | Suite B |
address_city | Ephrata |
address_state | PA |
address_zip | 17522 |
phone_1_uid | fa655741d052 |
phone_1_description | Toll-free |
phone_1_number | 1-800-677-7160 |
phone_2_uid | 0b73409f0689 |
phone_2_description | Fax |
phone_2_number | 717-222-5214 |
hours_1_uid | 15751259 |
hours_1_title | Sales |
hours_1_sunday_appt | 0 |
hours_1_sunday_open | 11:00 AM |
hours_1_sunday_close | 4:00 PM |
hours_1_saturday_appt | 0 |
hours_1_saturday_open | 9:00 AM |
hours_1_saturday_close | 5:00 PM |
hours_1_friday_appt | 0 |
hours_1_friday_open | 9:00 AM |
hours_1_friday_close | 7:00 PM |
hours_1_thursday_appt | 0 |
hours_1_thursday_open | 9:00 AM |
hours_1_thursday_close | 7:00 PM |
hours_1_wednesday_appt | 0 |
hours_1_wednesday_open | 9:00 AM |
hours_1_wednesday_close | 7:00 PM |
hours_1_tuesday_appt | 0 |
hours_1_tuesday_open | 9:00 AM |
hours_1_tuesday_close | 7:00 PM |
hours_1_monday_appt | 0 |
hours_1_monday_open | 9:00 AM |
hours_1_monday_close | 7:00 PM |