WC_Shipping_Legacy_Local_Pickup::clean()publicWC 1.0

Clean function.

Method of the class: WC_Shipping_Legacy_Local_Pickup{}

No Hooks.

Return

String.

Usage

$WC_Shipping_Legacy_Local_Pickup = new WC_Shipping_Legacy_Local_Pickup();
$WC_Shipping_Legacy_Local_Pickup->clean( $code );
$code(mixed) (required)
Code.

WC_Shipping_Legacy_Local_Pickup::clean() code WC 8.7.0

public function clean( $code ) {
	return str_replace( '-', '', sanitize_title( $code ) ) . ( strstr( $code, '*' ) ? '*' : '' );
}