Files
torebki-fabiola.pl/wp-content/plugins/mapster-wp-maps/admin/includes/mapster-modal-shortcode.php
2026-03-05 13:07:40 +01:00

39 lines
537 B
PHP

<?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>