How to Solve “Fatal Error: Call to Undefined Function is_plugin_active()” Problem on WordPress

5
Updated on 13 June 2021

Wordpress logo
Do you ever get this error message?

Fatal error: Call to undefined function is_plugin_active() in some-locationsome-file.php on line xxx

Let's find out what is this error and how to solve it.

The function is_plugin_active is useful if you want to do something that is depended on a plugin. For example: If you want to display text "Hello" when a specific plugin is activated, you use this code:

if (is_plugin_active('specific-plugin-directory/specific-plugin-name.php')){
    echo 'Hello';
}

The problem occurs because the function that control is_plugin_active is not loaded before your code which is likely to happen if you place it in a theme / template / front end.

The workaround for this it to add this line:

include_once( ABSPATH . 'wp-admin/includes/plugin.php' );

So your code will be like this:

include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
if (is_plugin_active('specific-plugin-directory/specific-plugin-name.php')){
    echo 'Hello';
}

Hope this helps you. 🙂

5
First published by  on Last Modified on 13 June 2021.

5 Comments

Add new comment

Add A Comment

Your email address will not be published. Required fields are marked *