由于我的错误与php更相关,我认为它适当发布在wordpress以外的地方。
我正在使用addthissocial登录插件为我的网站用户进行社交登录。但是当我尝试使用插件作者提供的快捷代码嵌入登录按钮时,它无法工作,我看到任何登录按钮。
当我尝试使用wp-debug进行调试时出现以下错误
注意:未定义的索引:第130行的/var/www/wp-content/plugins/addthis-social-sign-in/addthis_social_sign_in.php中的addthis_signature
这是第130行if( $_REQUEST[ 'addthis_signature' ] != "" )
我该如何解决这个问题?
答案 0 :(得分:1)
这不是错误,只是一个通知。你可以通过添加如下支票来解决它:
if(isset($_REQUEST[ 'addthis_signature' ]) && $_REQUEST[ 'addthis_signature' ] != "" )