epl_property_authority_filter
Adjust the exclusivity and authority options with the epl_property_authority_filter filter. You can edit or remove entries below to modify the options.
function my_epl_property_authority_filter() { $options = array( 'exclusive' => __('Exclusive', 'epl'), 'auction' => __('Auction', 'epl'), 'multilist' => __('Multilist', 'epl'), 'conjunctional' => __('Conjunctional', 'epl'), 'open' => __('Open', 'epl'), 'sale' => __('Sale', 'epl'), 'setsale' => __('Set Sale', 'epl') ); return $options; } add_filter( 'epl_property_authority_filter' , 'my_epl_property_authority_filter' );