/*
CTC Separate Stylesheet
Updated: 2025-07-03 18:01:39
Theme Name: RealHomes Child
Theme URI: http://themeforest.net/item/real-homes-wordpress-real-estate-theme/5373914
Template: realhomes
Author: InspiryThemes
Author URI: https://www.inspirythemes.com/
Description: RealHomes is a handcrafted WordPress theme for real estate websites. It offers purpose-oriented design with all the essential features that a real estate website needs. RealHomes theme facilitates its users on both the front-end and admin-side, making property management a breeze.
Tags: custom-background,light,one-column,two-columns,three-columns,four-columns,right-sidebar,flexible-header,custom-colors,custom-header,custom-menu,custom-logo,editor-style,featured-images,footer-widgets,post-formats,rtl-language-support,sticky-post,threaded-comments,translation-ready
Version: 4.4.1.1751558499
*/
function filtrar_por_estado_en_venta($query) {
    if (!is_admin() && $query->is_main_query() && is_page('en-venta')) {
        $tax_query = array(
            array(
                'taxonomy' => 'property_status',
                'field'    => 'slug',
                'terms'    => 'en-venta',
            )
        );
        $query->set('tax_query', $tax_query);
    }
}
add_action('pre_get_posts', 'filtrar_por_estado_en_venta');
