Call to undefined function `get_plugin_data()`

I have a class inside a file that i include_once() from the functions.php of my theme. The class can be used as stand alone plugin, or integrated in a theme.

Inside the class i want to fill a class variable (inside the __construct() function) with the native wordpress function get_plugin_data(). Fun as it is, i get the following error:

Read More

Call to undefined function get_plugin_data()

Am I asking for the plugin data too late, or what else might be my problem?

Thanks!

Related posts

Leave a Reply

5 comments

  1. get_plugin_data() is only defined in the administration section. What info did you need to get from the plugin’s header that you would need to display in the theme? If the answer is none, I would suggest that you place a conditional call in your constructor. Something like:

    if ( is_admin() ) {
        $var = get_plugin_data();
    }
    
  2. If you need to use the get_plugin_data on the frontend, you can add this code before calling the function:

    if( !function_exists('get_plugin_data') ){
        require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
    }
    
  3. You might wonder is there another way to solve this? At least that’s what I did, because the solution @mfields posted didn’t work for me.

    After core code digging I found an pretty useful core helper function which will help us achieve about the same result. I’m talking about the function get_file_data().

    As first argument we need a string of the absolute path to your main plugin file. The second argument is an array of the headers you want to retrieve, check the array below for all headers.

    $default_headers = array(
        'Name' => 'Plugin Name',
        'PluginURI' => 'Plugin URI',
        'Version' => 'Version',
        'Description' => 'Description',
        'Author' => 'Author',
        'AuthorURI' => 'Author URI',
        'TextDomain' => 'Text Domain',
        'DomainPath' => 'Domain Path',
        'Network' => 'Network',
        // Site Wide Only is deprecated in favor of Network.
        '_sitewide' => 'Site Wide Only',
    );
    

    The third argument is going to be “plugin”, don’t tell me why without third argument it works as well.

    Anyway this is what I use now (it’s located in the main plugin file).

    $plugin_data = get_file_data(__FILE__, [
        'Version' => 'Version',
        'TextDomain' => 'Text Domain'
    ], 'plugin');
    
  4. Building on @mfields and @gleb-kemarsky answers, if the plugin is to be used by the admins, we need to check whether the plugin is being called by an admin first

    if ( is_admin() ) {
        if( !function_exists('get_plugin_data') ){
            require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
        }
        $plugin_data = get_plugin_data( __FILE__ );
    }
    
  5. you can get the value of the relevant variable from the following code without any problem

    //define this plugin  language
        defined('define_name') or define('define_name', get_file_data(__FILE__, ['Lang' => 'Text Domain'], 'plugin')['Lang']);