• I keep getting errors for my theme.

    Notice: register_widget_control is deprecated since version 2.8! Use wp_register_widget_control() instead.

    Notice: Undefined index: action in …/wp-content/themes/kingsize/kingsize/lib/theme-options.php on line 620

    Warning: Cannot modify header information – headers already sent by (output started at /blog/wp-includes/functions.php:3382) in /blog/wp-includes/functions.php on line 861

    Warning: Cannot modify header information – headers already sent by (output started at /blog/wp-includes/functions.php:3382) in /blog/wp-includes/functions.php on line 862

    And I installed a deprecated call logger and it says:

    Notice: deprecated_file_test.php is deprecated since version 0.0 with no alternative available. in /blog/wp-includes/functions.php on line 3424

    Notice: deprecated_function_test is deprecated since version 0.0! Use some_new_function() instead. in /blog/wp-includes/functions.php on line 3382

    It seems like its a hot mess. Any help? I installed the 3.2.1 version of WP.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    It means your theme is using out of date functions. What theme is kingsize?

    Undefined index: action

    open wp-config.php
    set to false in line 81
    define('WP_DEBUG', false );

    or
    put this code before $action variable

    if(isset($_REQUEST['action'])) $action = ($_REQUEST['action']);
      else $action = "";

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Various Errors Showing Up’ is closed to new replies.