【发布时间】:2017-09-08 08:40:49
【问题描述】:
我面临以下错误: 致命错误:未捕获错误:调用未定义函数 add_action()
这是我的代码
function testtheme_add_admin_page(){
add_menu_page( 'testtheme custom options', 'testtheme', 'manage_options',
'testtheme_theme_create_page', 'dashicons-admin-generic', 110 );
}
add_action( 'admin_menu', 'testtheme_add_admin_page' );
function testtheme_theme_create_page(){
//create custom options page
}
【问题讨论】:
-
在插件文件中?还是在functions.php中?
-
在functions.php中