1. Go to this page and download the library: Download domos/schema library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
domos / schema example snippets
$externalId = 'your-external-id';
$estatePost = EstatePost::find($externalId);
if ($estatePost !== null) {
$estate = $estatePost->data; // This is an instance of SchemaImmo\Estate
echo "Estate Name: " . $estate->name;
echo "Estate Address: " . $estate->address->street . " " . $estate->address->number;
} else {
echo "Estate not found";
}
global $post;
if ($post->post_type === EstatePost::POST_TYPE) {
$estatePost = EstatePost::fromPost($post);
$estate = $estatePost->data;
// Now you can access all the estate data
echo "<h1>{$estate->name}</h1>";
echo "<p>Address: {$estate->address->street} {$estate->address->number}, {$estate->address->city}</p>";
if ($estate->media->thumbnail) {
echo "<img src='{$estate->media->thumbnail->src}' alt='{$estate->media->thumbnail->alt}'>";
}
// Display features
if (!empty($estate->features)) {
echo "<h2>Features:</h2><ul>";
foreach ($estate->features as $feature => $value) {
echo "<li>{$feature}: {$value}</li>";
}
echo "</ul>";
}
// Display rentable spaces
if (!empty($estate->buildings)) {
foreach ($estate->buildings as $building) {
echo "<h2>Building: {$building->name}</h2>";
foreach ($building->rentables as $rentable) {
echo "<h3>Rentable Space: {$rentable->name}</h3>";
echo "<p>Area: {$rentable->area} sqm</p>";
echo "<p>Price: {$rentable->price->base->amount} {$rentable->price->base->currency->value}</p>";
}
}
}
}
$args = array(
'post_type' => EstatePost::POST_TYPE,
'posts_per_page' => 10,
// Add any other query arguments as needed
);
$query = new WP_Query($args);
if ($query->have_posts()) {
while ($query->have_posts()) {
$query->the_post();
$estatePost = EstatePost::fromPost($query->post);
$estate = $estatePost->data;
// Display estate information
echo "<h2>{$estate->name}</h2>";
echo "<p>{$estate->address->city}, {$estate->address->country}</p>";
// Add more fields as needed
}
wp_reset_postdata();
} else {
echo "No estates found";
}