How To Get Support:

* If you are already a member,please sign in ! *

* If you already buy it, but can't register ,please contact us ! *

New Idea Responsive Wordpress Theme UPDATE V1.2 (If your version is v1.1.1, please must update !) New Idea Facebook Fan Page with Wordpress Theme Online V1.0.3
Fatal error: Call to undefined function wp_get_theme()
  • Hi, we had update version New Idea Responsive Wordpress Theme 1.1.7 and New Idea Facebook Fan Page with Wordpress Theme 1.0.2.

    Because of we delete get_theme_data function get theme data , all use wp_get_theme and request wp version 3.4+

    So , when your wordpress version not 3.4+ will appear

    Fatal error: Call to undefined function wp_get_theme() in D:\WP\xampp\htdocs\test\wp-content\themes\newidea_fb\functions.php on line 97
    ----------------------
    If you still not update your wordpress version, then you can open the php file and change like here use "//".
    ----------------------
    $theme_data = version_compare(get_bloginfo('version'),'3.4') < 1 ?
    get_theme_data(get_template_directory().'/style.css') : wp_get_theme();
    //$theme_data = wp_get_theme();

    ------------------ AND ---------------------

    Fatal error: Call to undefined function wp_get_theme() in D:\WP\xampp\htdocs\test\wp-content\themes\newidea_fb\includes\penguin\penguin-update-notifier.php on line 79

    ----------------------
    If you still not update your wordpress version, then you can open the php file and change like here use "//".
    ----------------------
    $this->theme_data = version_compare(get_bloginfo('version'),'3.4') < 1 ? get_theme_data(get_template_directory().'/style.css') : wp_get_theme();
    //$this->theme_data = wp_get_theme();

    All Ok, then will works.

  • 2 Comments sorted by
  • Please Sign In to view all answers.
  • Please Sign In to view all answers.