Properties

Featured Properties for Sale

[spora_featured_listings]
function spora_add_property_details_to_content($content) { if ( is_singular('property') ) { // Get your specific fields $price = get_field('price'); $location = get_field('location'); $bedrooms = get_field('bedrooms'); $bathrooms = get_field('bathrooms'); // Build the HTML $custom_html = '

Rs ' . number_format($price) . '

📍 Location: ' . esc_html($location) . ' ' . ($bedrooms ? '🛏️ Bedrooms: ' . esc_html($bedrooms) . '' : '') . ' ' . ($bathrooms ? '🛁 Bathrooms: ' . esc_html($bathrooms) . '' : '') . '
Call to Inquire

'; return $custom_html . $content; } return $content; } add_filter('the_content', 'spora_add_property_details_to_content');