Plugins menu doesn't appear in the admin panel

后端 未结 10 1868
遥遥无期
遥遥无期 2020-12-14 19:49

I\'m having a very simple problem. I\'m new to WordPress and I\'m trying to install a plugin.

Everyone says there\'s a \"plugins\" option on the sidebar-menu in the

10条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-14 20:28

    For me, changing lines in wp-config.php worked. I changed:

    define('DISALLOW_FILE_EDIT', true); 
    define('DISALLOW_FILE_MODS', true);
    

    to

    define('DISALLOW_FILE_EDIT', false);
    define('DISALLOW_FILE_MODS', false);
    

提交回复
热议问题