Viewing 1 replies (of 1 total)
  • Plugin Author agentevolution

    (@agentevolution)

    The code still works. Just use these filters added to your theme’s functions.php:

    add_filter( 'wp_listings_default_status_terms', 'my_remove_default_terms' );
    add_filter( 'wp_listings_default_property_type_terms', 'my_remove_default_terms' );
    function my_remove_default_terms($terms) {
    	$terms = array();
    	return $terms;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Remove default status and property types categories’ is closed to new replies.