vote up 0 vote down star
1

I am trying to create my first WordPress plugin. Even in trying to create the install function, things are being a pain. I want to set some global variables specific to my plugin rather than putting the literal values throughout the various functions. However, my install function does not pick up these global variables. Here is my code so far:

$version = '1.0a';
register_activation_hook( __FILE__, 'install' );
function install() {
  global $version;
  add_option( 'test_version', $version );
}

Obviously this is pretty straight forward on my end. Any ideas what is going wrong here??

flag

75% accept rate

2 Answers

vote up 1 vote down check

It turns out if you want a global variable for your install function, you must declare it to be global.

global $version = '1.0a';
register_activation_hook( __FILE__, 'install' );
function install() {
  global $version;
  add_option( 'test_version', $version );
}

More information can be found at the link below under the "A Note on Variable Scoping" section: http://codex.wordpress.org/Function%5FReference/register%5Factivation%5Fhook

link|flag
vote up 0 vote down

Consider creating your plugins in classes. You would avoid name collisions and could just set this "global" variable you want to use as a class attribute.

link|flag
Oh how I look forward to namespaces being universal so I can use those instead of classes for something like this. Does WordPress support register_activation_hook() calling a class method instead of a simple function?? Or do I need a simple function to do that work for me?? – Marshmellow1328 Oct 16 at 19:04
A simple function works for you. Just try to create it with a name that wouldn't have collision problems with other plugins. Some people like to add the plugin/developer name before the function name: "install" would become "Marshmellow1328_install" or similar. – GmonC Oct 18 at 4:17

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.