2 Star 3 Fork 0

Hankin-han/wp-theme-markdown

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
uninstall.php 579 Bytes
一键复制 编辑 原始数据 按行查看 历史
<?php
if (
! defined( 'WP_UNINSTALL_PLUGIN' )
||
! WP_UNINSTALL_PLUGIN
||
dirname( WP_UNINSTALL_PLUGIN ) != dirname( plugin_basename( __FILE__ ) )
) {
status_header( 404 );
exit;
}
static $options_name = array(
'editor_basics',
'editor_style',
'syntax_highlighting',
'editor_emoji',
'editor_toc',
'editor_katex',
'editor_mermaid',
'editor_flow',
'editor_mindmap',
'editor_sequence',
);
// 删除选项
foreach($options_name as $optionName) {
delete_option($optionName);
}
//开启自带可视化编辑器
add_filter( 'user_can_richedit', '__return_true' );
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/hanhanjun_admin/wp-theme-markdown.git
[email protected]:hanhanjun_admin/wp-theme-markdown.git
hanhanjun_admin
wp-theme-markdown
wp-theme-markdown
master

搜索帮助