Woocommerce添加版本(?)GET参数

时间:2015-11-14 00:24:13

标签: wordpress woocommerce

因为几天我的wordpress网址看起来很糟糕。像这样

www.mypage.com/?v=180c0811311f 

在停用所有插件并激活彼此后,我知道这个参数来自woocommerce,但它有什么作用?我怎么能摆脱它?

非常感谢所有帮助! 感谢。

2 个答案:

答案 0 :(得分:1)

根据word_tokenize()中的评论,此变量由WooCommerce地理定位功能使用。

/**
 * When using geolocation via ajax, to bust cache, redirect if the location hash does not equal the querystring.
 *
 * This prevents caching of the wrong data for this request.
 */

此功能仅在woocommerce_default_customer_address的选项值为geolocation_ajax时有效,因此将其更改为其他内容将阻止v=被追加。

if ( 'geolocation_ajax' === get_option( 'woocommerce_default_customer_address' ) && ...

答案 1 :(得分:0)

Wordpress URL Issues for my custom template的重复只需要将Woocommerce设置中的默认客户地址更改为 Geolocate(具有页面缓存支持)