注意:未定义的索引:页面

时间:2015-01-19 09:21:50

标签: indexing themes undefined

我在wordpress网站的后端收到此通知 注意:未定义的索引:第17行/customers/f/e/4/pointdevue-plus.be/httpd.www/wp-content/themes/SliderResponsiveTheme/settings.php中的页面 当我看第17行时,我看到了这段代码: (从第14行到第21行)



);
function mytheme_add_admin() {
    global $themename, $shortname, $settings_list;
    if ( $_GET['page'] == basename(__FILE__) ) {
    
        if ( 'save' == $_REQUEST['action'] ) {
                  foreach($settings_list as $value) {
                    //echo '<script type="text/javascript">alert("' . $value . '");</script>';
&#13;
&#13;
&#13;

有人知道确切的错误以及如何解决这个问题吗?

谢谢!

1 个答案:

答案 0 :(得分:2)

使用isset测试密钥是否存在:

if (isset($_GET['page']) && $_GET['page'] == basename(__FILE__) ) {
    ^^