我想爲我的wordpress主題創建一個自定義選項主題頁面,我發現這個教程 http://wp.tutsplus.com/tutorials/theme-development/create-a-settings-page-for-your-wordpress-theme/,但問題是它不起作用,恐怕太過時了。我使用的是wordpress 3.7.1。我添加並試圖創建WordPress的主題設置頁面中的功能是如何在Wordpress中創建自定義主題選項頁面?
function setup_theme_admin_menus() {
add_submenu_page('themes.php',
'Front Page Elements', 'Front Page', 'manage_options',
'front-page-elements', 'theme_front_page_settings');
}
function theme_front_page_settings() {
echo "Hello, world!";
}
而且我把我的主題functions.php的,但什麼都沒有發生。
你不會感到與大的文章混淆,請點擊這裏 - http://www.kvcodes.com/2016/10/creating-custom-options-page-wordpress/ – Kvvaradha