/**
* Shortcode: [topanga_listing_report id="2979698" height="900"]
* Or: [topanga_listing_report url="https://www.topangaproperties.com/listing-report/Topanga-Family-Homes/2979698/" height="900"]
*/
function topanga_listing_report_shortcode($atts) {
$atts = shortcode_atts([
'id' => '',
'url' => '',
'height' => '900',
'width' => '100%',
], $atts, 'topanga_listing_report');
// Build URL from ID if provided
$url = trim($atts['url']);
if (!$url && $atts['id']) {
$url = 'https://www.topangaproperties.com/listing-report/Topanga-Family-Homes/' . preg_replace('/[^0-9]/', '', $atts['id']) . '/';
}
// Fallback if no URL
if (!$url) return '';
$height = preg_replace('/[^0-9]/', '', (string)$atts['height']);
if ($height === '') $height = '900';
$width = esc_attr($atts['width']);
return sprintf(
'
',
$width,
esc_url($url),
$width,
esc_attr($height)
);
}
add_shortcode('topanga_listing_report', 'topanga_listing_report_shortcode');