first commit

This commit is contained in:
2026-03-05 13:07:40 +01:00
commit 64ba0721ee
25709 changed files with 4691006 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
<?php
$path = preg_replace('/wp-content.*$/','',__DIR__);
include($path.'wp-load.php');
$feature_id = $_GET["feature_id"];
wp_head();
?>
<style>
body {
background: white;
}
#mapster-shortcode-footer div {
display: none;
}
#mapster-shortcode-footer p {
display: none;
}
</style>
<div id="mapster-shortcode-content">
<?php
$acf_field = get_field('popup_modal_details', $feature_id);
echo do_shortcode($acf_field);
?>
</div>
<div id="mapster-shortcode-footer">
<?php wp_footer(); ?>
</div>