我知道我必须在Wordpress reference中使用的代码,但没有人给出任何关于在何处放置代码的说明。
我将在哪里放置:
add_action('admin_menu', 'add_appearance_menu');
function add_appearance_menu(){
add_submenu_page( 'themes.php', 'My Theme Settings', 'My Theme Settings', 1, 'my-theme-settings', $function);
}
答案 0 :(得分:1)
您最有可能将它放入主题目录中的functions.php
。