0

通常删除 wp-admin 菜单项不是问题,例如:

add_action( 'admin_init', 'my_remove_menu_pages' );

function my_remove_menu_pages() {               
  remove_submenu_page( 'themes.php', 'theme-editor.php' );                                          
}

但是,我目前正在努力处理以下页面:

admin.php?page=wpml-string-translation/menu/string-translation.php

删除这个的最好方法是什么?

4

4 回答 4

3

我认为您 add_action 需要一个数字作为第三个参数(优先级)。

例子

如果你有这个 add_action:

add_action( 'admin_bar_menu', 'wp_admin_bar_wp_menu', 10 );

要删除它,它需要更高的优先级 (11):

<?php # -*- coding: utf-8 -*-
/**
 * Plugin Name: Remove WP Menu From Tool Bar
 */
if ( ! function_exists( 't5_remove_wp_menu' ) )
{
    // The action is added with a priority of 10, we take one step later.
    add_action( 'init', 't5_remove_wp_menu', 11 );

    /**
     * Remove the WP menu action.
     */
    function t5_remove_wp_menu()
    {
        is_admin_bar_showing() &&
            remove_action( 'admin_bar_menu', 'wp_admin_bar_wp_menu', 10 );
    }
}
于 2013-02-10T13:01:16.660 回答
2

根据之前的答案,以下是两个 WPML 用户菜单的完整解决方案:

function remove_menu_items()
{
    //removes the 'String Translation' menu item from editor's admin screen
    if (defined('WPML_ST_FOLDER')){
        remove_menu_page(WPML_ST_FOLDER.'/menu/string-translation.php');
    }
    //removes the 'Translation Interface' menu item from editor's admin screen
    if (defined('WPML_TM_FOLDER')){
        remove_menu_page(WPML_TM_FOLDER . '/menu/translations-queue.php');
    }
}
add_action('admin_menu', 'remove_menu_items', 999);
于 2013-06-12T02:39:07.217 回答
1

这应该工作,

add_action( 'admin_init', 'my_remove_menu_pages' );

function my_remove_menu_pages() {
    remove_submenu_page( 'admin.php?page=wpml-string-translation/menu/string-translation.php', 'admin.php?page=wpml-string-translation/menu/string-translation.php' );
}
于 2013-02-10T13:13:33.453 回答
0

工作解决方案:

function remove_menu_items()
{
    //removes the String Translation menu item from editor's admin screen
    if (defined('WPML_ST_FOLDER'))
        remove_menu_page(WPML_ST_FOLDER.'/menu/string-translation.php');
}
add_action('admin_menu', 'remove_menu_items', 999);

它需要更高的优先级,为了避免任何问题,让我们使用相同的 WPML 常量,我们可以在插件文件夹中的文件“wpml-string-translation-class.php”中找到它,第 212 行作为版本1.6.1 的 WPML 字符串转换插件。

于 2013-04-19T19:46:45.530 回答