Title: [Plugin: WP Property] Filters help
Last modified: August 20, 2016

---

# [Plugin: WP Property] Filters help

 *  [Ankit Singla](https://wordpress.org/support/users/aksingla/)
 * (@aksingla)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/plugin-wp-property-filters-help/)
 * Hello,
 * I was seeking help on WP Property plugin filters.
 * Its easy to add new property types and attributes in the Plugin panel. But, I
   want to do that through filters.
 * I have had success adding a new property type using this code:
 *     ```
       function new_property($wp_properties) {
   
       	$new_columns = array(
       		'multi_home' => __('Multi Home', 'ThemeName'),
       	);
           return array_merge($wp_properties, $new_columns);
       }
       add_filter('wpp_property_types' , 'new_property');
       ```
   
 * It works fine, it adds the new property type: Multi home.
 * But, the problem is – that when I delete it from admin panel – It re-appears 
   after saving the options.
 * I should work like all other default properties, i.e delete after they are deleted
   from Plugin settings page.
 * Any help would be heartily appreciated.
 * Thanks,

The topic ‘[Plugin: WP Property] Filters help’ is closed to new replies.

 * 0 replies
 * 1 participant
 * Last reply from: [Ankit Singla](https://wordpress.org/support/users/aksingla/)
 * Last activity: [13 years, 4 months ago](https://wordpress.org/support/topic/plugin-wp-property-filters-help/)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
