Listing Product, Hotels, Flights, Destinations, Home Property, and Vehicles on your Facebook page.

Microdata tags are used to provide structured information about specific content on web pages. When it comes to Facebook microdata tags for various types of content like Products, Hotels, Flights, Destinations, Home Listings, and Vehicles, you would typically use Open Graph Protocol (OGP) tags to provide this information to Facebook and other platforms that support Open Graph.

Here’s an example of how you can use OGP tags for each type of content:

List Products on facebook page

<meta property="og:type" content="product" />
<meta property="og:title" content="Product Title" />
<meta property="og:description" content="Product description" />
<meta property="og:image" content="link_to_product_image" />
<meta property="og:url" content="link_to_product_page" />
<meta property="product:price:amount" content="Price" />
<meta property="product:price:currency" content="Currency Code (e.g., USD)" />

List Hotels on facebook page

<meta property="og:type" content="hotel" />
<meta property="og:title" content="Hotel Title" />
<meta property="og:description" content="Hotel description" />
<meta property="og:image" content="link_to_hotel_image" />
<meta property="og:url" content="link_to_hotel_page" />
<meta property="hotel:locality" content="Hotel Location" />
<meta property="hotel:price:amount" content="Price" />
<meta property="hotel:price:currency" content="Currency Code (e.g., USD)" />

List Flights on facebook page

<meta property="og:type" content="flight" />
<meta property="og:title" content="Flight Title" />
<meta property="og:description" content="Flight description" />
<meta property="og:image" content="link_to_flight_image" />
<meta property="og:url" content="link_to_flight_page" />
<meta property="flight:departure_airport" content="Departure Airport" />
<meta property="flight:arrival_airport" content="Arrival Airport" />

List Destinations on facebook page

<meta property="og:type" content="place" />
<meta property="og:title" content="Destination Title" />
<meta property="og:description" content="Destination description" />
<meta property="og:image" content="link_to_destination_image" />
<meta property="og:url" content="link_to_destination_page" />
<meta property="place:location:latitude" content="Latitude" />
<meta property="place:location:longitude" content="Longitude" />

List Home Listings on facebook page

<meta property="og:type" content="product" />
<meta property="og:title" content="Home Listing Title" />
<meta property="og:description" content="Home Listing description" />
<meta property="og:image" content="link_to_home_listing_image" />
<meta property="og:url" content="link_to_home_listing_page" />
<meta property="product:price:amount" content="Price" />
<meta property="product:price:currency" content="Currency Code (e.g., USD)" />

List Vehicles on facebook page

<meta property="og:type" content="product" />
<meta property="og:title" content="Vehicle Title" />
<meta property="og:description" content="Vehicle description" />
<meta property="og:image" content="link_to_vehicle_image" />
<meta property="og:url" content="link_to_vehicle_page" />
<meta property="product:price:amount" content="Price" />
<meta property="product:price:currency" content="Currency Code (e.g., USD)" />

Replace the placeholders (e.g., “Product Title”, “link_to_product_image”, etc.) with the actual information for each item you want to share. These tags will help Facebook and other platforms properly display and understand the content you’re sharing.