WordPress | 2024年04月23日17:31:31
为保护网站的作者或用户的隐私,可设限或禁止游客访问网站用户的作者页面(https://域名/author/用户ID),并重定向到网站首页,此功能可通过函数模板文件(functions.php)添加代码实现。
进入WordPress后台 > 外观 > 主题文件编辑器 > 点击“模板函数(functions.php)” > 将以下代码粘贴到模板函数文件中 > 最后点击“更新文件”
//禁止游客访问作者页面并重定向到网站首页 function redirect_author_archive() { if (!is_user_logged_in() && is_author()) { wp_redirect(home_url()); exit(); } } add_action('template_redirect', 'redirect_author_archive');
本文标题:WordPress设限或禁止游客访问作者页面并重定向到网站首页 保护用户隐私
本文链接:https://www.bufanz.com/post/315.html
版权声明:本文章是 不凡博客 的原创文章,未经允许请勿转载本文章!
相关文章