几天后,我的wordpress网址看了一些东西。像这样
www.mypage.com/?v=180c0811311f 在关闭所有插件和激活其他插件之后,我知道这个param来自woocommerce,但它是做什么的?我怎么才能摆脱它?
所有的帮助都非常感谢!谢谢。
发布于 2015-11-14 02:42:06
根据源代码中的注释,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' ) && ...发布于 2017-08-29 11:08:21
这是对我的自定义模板的Wordpress URL问题的复制,您只需将Woocommerce设置中的默认客户地址更改为Geolocate以外的其他设置(支持页面缓存)
https://stackoverflow.com/questions/33703777
复制相似问题