标签: wordpress wordpress-theming
如果我想在使用我的主题时在wordpress中创建自定义表并在主题被删除时删除这些表,那么这是最好的动作挂钩
答案 0 :(得分:1)
您可以创建函数以在functions.php中创建表格并将其挂钩在" after_switch_theme"钩。
例如:
add_action("after_switch_theme", "{enter the name of your create table function here}");