Use params on URL
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
add_filter('yay_currency_use_params', 'yay_currency_use_params', 10,1);
function yay_currency_use_params( $use_param ) {
return true;
}add_filter( 'yay_currency_param_name', 'custom_yay_currency_param_name' );
function custom_yay_currency_param_name( $param_name ) {
$param_name = 'your_change';
return $param_name;
}