添加菜单页面正在创建具有相同标题名称的子菜单

时间:2015-03-26 13:27:00

标签: php wordpress plugins wordpress-plugin wordpress-theming

我正在使用此功能在wp仪表板中创建菜单选项

       add_menu_page(
    __('Advertisement Pages'),// the page title
    __('Advertisement'),//menu title
    'edit_themes',//capability 
    'a-advertise',//menu slug/handle this is what you need!!!
    'display_all_ad',//callback function
    '',//icon_url,
    '15'//position
);

它正在创建菜单名称广告,但也创建具有相同名称的子菜单。

2 个答案:

答案 0 :(得分:0)

试试这个

add_action( 'admin_menu', 'advertisement_menus' );
function advertisement_menus() {
    add_menu_page( 'Advertisement Pages', 'Advertisement', 'edit_themes', 'advertisement_slug', 'display_all_ad', '', 15 );
}

//and your call back function 

    function display_all_ad(){
        echo "this is call back";
    } 

答案 1 :(得分:0)

我在当地测试过,看过下面的图片一次,你的WordPress版本是什么? enter image description here