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:
Call to undefined function
get_plugin_data()
Am I asking for the plugin data too late, or what else might be my problem?
Thanks!
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 you need to use the
get_plugin_data
on the frontend, you can add this code before calling the function: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.
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).
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
you can get the value of the relevant variable from the following code without any problem