Here’s my code: add_action('admin_menu', 'test_plugin_setup_menu'); /**/ function test_plugin_setup_menu(){ /**/ add_submenu_page('options-general.php','Forhandler options side','Forhandler Options', 'manage_options', 'mine-første-options', 'test_init'); /**/ } /**/ function test_init(){ /**/ //echo ...
-
May 25, 2022
- 0 Comments