الوصف
This plugin will hide author’s archive.
If your don’t need author parameter, this plugin may enhance your site’s security from bot inspection.
- No more
?author=1
redirection to/author/admin
- Ignore query var like
author=1
orauthor_name=admin
- Hide user list in REST API from user without permission
list_users
oredit_others_posts
. This capability is filterable.
/** * Filter capabilities to see author list. * * @param string[] $caps List of capabilities. */ add_filter( 'hide_author_archive_rest_query_capability', function( $caps ) { $caps[] = 'read'; return $caps; } );
التنصيب
Search “hide author archives” in admin screen.
Altenatively, you can install it manually like below:
- Upload
hide-author-archive
folder to the/wp-content/plugins/
directory - Activate the plugin through the ‘Plugins’ menu in WordPress
الأسئلة المتكررّة
-
How To Contribute
-
We host plugin on github and any issues and pull requests are welcomed!
المراجعات
المساهمون والمطوّرون
“Hide Author Archive” هو برنامج مفتوح المصدر. وقد ساهم هؤلاء الأشخاص بالأسفل في هذه الإضافة.
المساهمونلقد تم ترجمة ”Hide Author Archive“ إلى لغة واحدة. شكراً إلى جميع المُترجمين لمُساهماتهم.
ترجمة ”Hide Author Archive“ إلى لغتك.
مُهتم بالتطوير؟
تصفّح الشفرة، تحقق من مستودع SVN، أو الاشتراك في سجل التطوير بواسطة RSS.
سجل التغييرات
1.1.5
- Hide single REST API for single user get
wp/v2/users/1
. - Editor can see REST API users get to change author of posts.
1.1.1
- Support REST API.
- Fix coding standards.
1.0.0
- First release