Property Search

This is a generic IDX used for example only. We use it to show you that your IDX solution can be implemented on your PREP site and how it might look. Basic IDX implementation is included in the membership fee but an IDX solution itself is not. We do not private label nor do we broker any IDX solutions. We can make recommendations if requested but ultimately who you use for your IDX solution is your decision.

function field_func($atts) { global $post; $name = $atts['name']; if (empty($name)) return; return get_post_meta($post->ID, $name, true); } add_shortcode('field', 'field_func');