bbp_get_user_profile_url (intuser_id美元,字符串user_nicename美元=”)
返回URL到用户的配置文件页面
描述
参数
- user_id美元
-
(int)(可选)用户id
- user_nicename美元
-
(字符串)(可选)用户昵称
默认值:“
返回
(字符串)用户配置文件的url
源
文件:bp-forums /用户/ template.php
函数bbp_get_user_profile_url($user_id = 0, $user_nicename = "){全局$wp_rewrite;$user_id = bbp_get_user_id($user_id);If (empty($user_id))返回false;//允许早期覆盖配置文件URL以减少处理$early_profile_url = apply_filters('bbp_pre_get_user_profile_url', (int) $user_id);If (is_string($early_profile_url))返回$early_profile_url;//漂亮的permalinks if ($wp_rewrite->using_permalinks()) {$url = $wp_rewrite->root . txt;bbp_get_user_slug()。/ %。bbp_get_user_rewrite_id()。“%”; // Get username if not passed if ( empty( $user_nicename ) ) { $user_nicename = bbp_get_user_nicename( $user_id ); } $url = str_replace( '%' . bbp_get_user_rewrite_id() . '%', $user_nicename, $url ); $url = home_url( user_trailingslashit( $url ) ); // Unpretty permalinks } else { $url = add_query_arg( array( bbp_get_user_rewrite_id() => $user_id ), home_url( '/' ) ); } return apply_filters( 'bbp_get_user_profile_url', $url, $user_id, $user_nicename ); }
更新日志
版本 | 描述 |
---|---|
bbPress (r2688) | 介绍了。 |