$PAGE_TITLE有什么用途以及如何使用它?

时间:2015-05-25 作者:Omer

我正在开发WordPress插件并添加add_menu_page() 但不确定第一个参数的用途$page_title. 如果这是用来在插件页面上显示页面标题,那么我该怎么做呢?

<?php add_menu_page($page_title, $menu_title, $capability, $menu_slug); ?>
我也为这个功能浏览了WordPress codex,但在示例中,他们也使用硬编码的页面标题。

function register_my_custom_submenu_page() {
    add_submenu_page( 
        \'tools.php\', 
        \'My Custom Submenu Page\', 
        \'My Custom Submenu Page\', 
        \'manage_options\', 
        \'my-custom-submenu-page\', 
        \'my_custom_submenu_page_callback\' 
    );
}

function my_custom_submenu_page_callback() {
    echo \'<div class="wrap"><div id="icon-tools" class="icon32"></div>\';
        echo \'<h2>My Custom Submenu Page</h2>\';
    echo \'</div>\'
}

1 个回复
最合适的回答,由SO网友:Omer 整理而成

好的,我的坏蛋在抄本页面上找到了答案,但在最下面,所以我也在这里添加了这个,所以如果像我这样的人没有在WordPress的抄本上找到它,他们可以在这里找到:)

仅使用get_admin_page_title();

See the example 1 below:

function register_my_custom_submenu_page() {
    add_submenu_page( 
        \'tools.php\', 
        \'My Custom Submenu Page\', 
        \'My Custom Submenu Page\', 
        \'manage_options\', 
        \'my-custom-submenu-page\', 
        \'my_custom_submenu_page_callback\' 
    );
}

function my_custom_submenu_page_callback() {
    echo \'<div class="wrap"><div id="icon-tools" class="icon32"></div>\';
        echo get_admin_page_title();
    echo \'</div>\';
}

And here is the example 2 below:

function register_my_custom_submenu_page() {
    add_submenu_page( 
        \'tools.php\', 
        \'My Custom Submenu Page\', 
        \'My Custom Submenu Page\', 
        \'manage_options\', 
        \'my-custom-submenu-page\', 
        \'my_custom_submenu_page_callback\' 
    );
}

function my_custom_submenu_page_callback() {
    global $title;
    echo \'<div class="wrap"><div id="icon-tools" class="icon32"></div>\';
        echo $title;
    echo \'</div>\';
}

结束

相关推荐

GET_THE_TITLE()返回上一个循环的结果

我试图循环思考一个自定义帖子类型(艺术家),然后是每个类别,然后是另一个与艺术家有关系的自定义帖子类型(故事)。问题是,函数ID);?>在最后一个循环中,将多次返回艺术家的标题以及当前自定义帖子的标题。我只需要当前循环帖子的标题。 <!-- get all the artists --> <?php $args = array(\'post_type\' => \'artists\'); $query