
The Mobilox dashboard — vehicle count, sync status, endpoint URL, and activity log.
Connect for Mobilox syncs your vehicle inventory from the Mobilox/Hexon dealer management system to your WordPress site. Vehicles are stored as a configurable post type with full data available to your theme.
Features:
For theme developers:
Field names are the Dutch element names of the Mobilox DV voertuig schema, exactly as the feed sends them.
$vehicle = mobilox_get_vehicle();
echo esc_html( $vehicle->merk . ' ' . $vehicle->model );
Or field by field, using dot notation for nested elements:
echo esc_html( mobilox_get_field( 'bouwjaar' ) );
echo esc_html( mobilox_get_field( 'tellerstand' ) );
echo esc_html( mobilox_get_field( 'verkoopprijs_particulier.bedrag' ) );
Both helpers default to the current post in the loop, and accept a post ID as a second argument. To see exactly which fields your own feed delivers, open a synced vehicle in the editor and look at the Mobilox Vehicle Data meta box.