Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_filter('simple_auction_item_condition', 'wpgenie_custom_item_condition' );
- function wpgenie_custom_item_condition( $array ){
- $array = array(
- 'new' => esc_html__('New', 'wc_simple_auctions_custom'),
- 'used' => esc_html__('Used', 'wc_simple_auctions_custom'),
- 'old' => esc_html__('Old', 'wc_simple_auctions_custom'),
- 'broken' => esc_html__('Broken', 'wc_simple_auctions_custom')
- );
- return $array;
- }
Advertisement
Add Comment
Please, Sign In to add comment