Plugin install
-
Hi Guys,
Im currently working on my first WP plugin and had a question about the register_activation_hook() function.
My plugin should create 2 DB tables upon activation, so I created my installfunction and hooked it in with the register_activation_hook() function:
register_activation_hook(‘wp-content/plugins/positioner/position_yourself.php’,’positionyourself_install’);
I’ve also tried using:
register_activation_hook(__FILE__,’positionyourself_install’);
My plugin is class based, so I run this function in the php5 constructor. The problem is, it doesn’t get called, or the install function has no effect on my Database.
Now I was wondering if I was doing something wrong? I’ve already looked for tutorials how to create plugins, looked @ forums, and more.
I hope you guys can help me ??
- The topic ‘Plugin install’ is closed to new replies.