cl01/wp-content/plugins/nicen-localize-image/admin/install.php
2025-02-24 12:39:24 +08:00

31 lines
504 B
PHP
Executable File
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* @author 友人a
* @date ${date}
* 插件安装时写入默认配置
*/
/**
* 初始化默认配置
* */
function nicen_make_install() {
foreach ( nicen_make_CONFIG as $key => $value ) {
add_option( $key, $value ); //添加配置参数,和默认值
}
}
nicen_make_install(); //插件自动设置
/**
* 关闭插件时注销任务
* */
function nicen_make_end() {
wp_clear_scheduled_hook( 'nicen_plugin_auto_publish' ); //清除任务
}