今天ytkah在看客户的网站时发现头部提示Warning:Parameter 2 to qtranxf_postsFilter() expected to be a reference, value given in ...,出现这个原因是翻译插件定义有问题,那我们一起来看看如何修改吧
打开文件qtranslate-x/qtranslate_frontend.php,找到大概523行左右
function qtranxf_postsFilter($posts,&$query) {//WP_Query
改成
function qtranxf_postsFilter($posts,$query) {//WP_Query
还有另外一处修改,大概597行左右
function qtranxf_excludeUntranslatedPosts($where,&$query) {//WP_Query
改成
function qtranxf_excludeUntranslatedPosts($where,$query) {//WP_Query
保存,刷新缓存,错误提示消失了
参考资料https://wordpress.org/support/topic/problem-with-php-7-1-2/#post-8908632