0
私は、次のエラーが直面しています: 致命的なエラー:不明なエラーを:(未定義の関数add_actionに呼び出し)致命的なエラー:不明なエラー:未定義の関数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で – Ali