register_activation_hook
函数
register_activation_hook ( $file, $callback )
- 参数
-
-
(string)
$file
The filename of the plugin including the path.- Required: 是
-
(callable)
$callback
The function hooked to the ‘activate_PLUGIN’ action.- Required: 是
-
(string)
- 定义位置
-
-
wp-includes/plugin.php
, line 868
-
wp-includes/plugin.php
- 引入
- 2.0.0
- 弃用
- –
Set the activation hook for a plugin.
When a plugin is activated, the action ‘activate_PLUGINNAME’ hook is
called. 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/plugins/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/plugins/sample.php the name of this hook will be
‘activate_sample.php’.
function register_activation_hook( $file, $callback ) { $file = plugin_basename( $file ); add_action( 'activate_' . $file, $callback ); }
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。