如何禁用在Wordpress中更改已安装的主题?

时间:2018-01-24 08:48:50

标签: php wordpress

我为我的客户开发了自己的WordPress主题! 如果他从外面改变主题,他将失去我的主题。 我想禁止他从我的主题改变Wordpress主题。 如何禁用它?enter image description here有没有办法编辑Wordpress文件?

1 个答案:

答案 0 :(得分:1)

您可以使用以下代码删除主题子菜单。在主题的functions.php文件中添加以下代码。

add_action( 'admin_menu', 'adjust_the_wp_menu', 999 );
function adjust_the_wp_menu() 
{
    remove_submenu_page( 'themes.php', 'themes.php' ); 
}

限制管理员打开文件

add_action( 'current_screen', 'this_screen' );
function this_screen() 
{
     $current_screen = get_current_screen();
     if( $current_screen ->id === "themes" ) 
     {
        wp_die("You don't have access to this page.");       
     }
}