Wordpress主题错误提示:未定义索引:已激活

时间:2013-02-15 21:16:44

标签: php wordpress function

当我的页面加载到wordpress时,我收到以下错误。我怎么能阻止这个?

Notice: Undefined index: activated in /home3/answ/public_html/wp-content/themes/tipztheme/functions.php on line 582

Notice: Undefined index: preview in /home3/answ/public_html/wp-content/themes/tipztheme/functions.php on line 582

这是导致错误的第508行的代码。第508行是 if ( $_GET['activated'] == 'true' || $_GET['preview'] == 1 ),非常感谢您的帮助!

 Plugin Name: DDThemes - Logo Options
 Plugin URI: http://www.designdisease.com/
 */

 //ADD OPTION PAGE
 add_action('admin_menu', 'ddthemes_admin');

 //UPON ACTIVATION OR PREVIEWED
 if ( $_GET['activated'] == 'true'  || $_GET['preview'] == 1 )
 {
ddthemes_setup();
 }

 function ddthemes_admin() 
 {
    /* PROCESS OPTION SAVING HERE */
if ( 'save' == $_REQUEST['action'] ) 
{
    if ( $_REQUEST['savetype'] == 'header' )
    {
        update_option( 'ddthemes_header', $_REQUEST['ddthemes_header']);
    }

}

/* SHOW THEME CUSTOMIZE PAGE HERE */
add_theme_page(__('Logo Options'), __('Logo Options'), 'edit_themes', basename(__FILE__), 'ddthemes_headeropt_page');}  

1 个答案:

答案 0 :(得分:0)

由于您的PHP错误报告设置而出现此错误。当您的变量未正确设置时出现。说实话,这不是一个非常重要的事情,这很好; =)要解决它你有几个选项:选项一是在使用之前设置你的变量并为它添加一些虚拟值,例如:

  if (!isset($_REQUEST['savetype']))
  {
  //If not set add some dummy value
  $_REQUEST['savetype'] = "undefine";
  } 

  if ( $_REQUEST['savetype'] == 'header' )
  {
    update_option( 'ddthemes_header', $_REQUEST['ddthemes_header']);
  }

另一个解决方案是在 php.ini 中修改(抑制错误报告)并插入以下行:

<?php error_reporting (E_ALL ^ E_NOTICE); ?>

另一个解决方案也是压制错误报告,但这一次在你的 wp-config.php 而不是:define('WP_DEBUG', true);添加define('WP_DEBUG', false);

有趣的是我今天遇到了同样的问题,第一个选项对我有用:)希望它有所帮助...干杯!