给WordPress添加一个小功能把,让特定的角色在搜索的时候能够看到私密文章,一般WordPress默认情况下,只要登录的用户在搜索结果中都包含加密文章的。
WordPress特定角色的搜索结果包含私密文章
本文可以指定角色(role),比方订阅者、编辑、作者等,在其搜索结果中包含私密文章,不同的角色id不一样,大家可以自己定义,如果嫌代码不会或者麻烦可以使用用户自定义插件。
将下列代码放置到主题模板 functions.php 函数闭合中:
-
- function include_password_posts_in_search( $query ) {
- if ( !is_admin() && $query->is_main_query() ) {
- if( is_user_logged_in() && (current_user_can('customrole')||current_user_can('manage_options')) && is_search() ) {
- $query->set( 'post_status', array ( 'publish', 'private' ) );
- }
- }
- }
- add_action( 'pre_get_posts', 'include_password_posts_in_search' );
其中“customrole”修改角色。
这里角色的ID不同网站可能有所更改,不过都可以自定义修改。
温馨提示:本文最后更新于2019年3月19日,已超过 2 年没有更新,如果文章内容或图片资源失效,请留言反馈,模板下载吧会及时处理,谢谢!