Archive | /wp-includes/plugin.php RSS feed for this section

register_deactivation_hook

Set the deactivation hook for a plugin.When a plugin is deactivated, the action ‘deactivate_PLUGINNAME’ hook is deactivated. In the name of this hook, PLUGINNAME is replaced with the name of the plugin, including the optional subdirectory. For example, when the plugin is located in wp-content/plugin/sampleplugin/sample.php, then the name of this hook will become ‘activate_sampleplugin/sample.php’.

2661

Continue reading

register_activation_hook

Set the activation hook for a plugin.When a plugin is activated, the action ‘activate_PLUGINNAME’ hook is activated. In the name of this hook, PLUGINNAME is replaced with the name of the plugin, including the optional subdirectory. For example, when the plugin is located in wp-content/plugin/sampleplugin/sample.php, then the name of this hook will become ‘activate_sampleplugin/sample.php’. When the plugin consists of only one file and is (as by default) located at wp-content/plugin/sample.php the name of this hook will be ‘activate_sample.php’.

2655

Continue reading

plugin_dir_url

Gets the URL directory path (with trailing slash) for the plugin __FILE__ passed in

2519

Continue reading

plugin_dir_path

Gets the filesystem directory path (with trailing slash) for the plugin __FILE__ passed in

2517

Continue reading