Advertisement
Guest User

Untitled

a guest
Oct 24th, 2013
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. public function myplugin_activate() {
  2.     // Our function hooked to the plugin activation
  3.     add_action('init', array($this, 'add_geo_terms'));
  4. }
  5. register_activation_hook( __FILE__, 'myplugin_activate' );
  6.  
  7. public function add_geo_terms() {
  8.     // Your function
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement