= 0) && is_numeric($input) ) return $input; else return ''; } function adviso_sanitize_category( $input ) { if ( term_exists(get_cat_name( $input ), 'category') ) return $input; else return ''; } function adviso_sanitize_product_category( $input ) { if ( get_term( $input, 'product_cat' ) ) return $input; else return ''; } function adviso_sanitize_text( $input ) { return wp_kses_post( force_balance_tags( $input ) ); }