返回介绍

get_edit_user_link()

发布于 2017-09-10 23:19:13 字数 3499 浏览 1013 评论 0 收藏 0

get_edit_user_link( int $user_id = null )

Retrieves the edit user link.


description


参数

$user_id

(int) (Optional) User ID. Defaults to the current user.

Default value: null


返回值

(string) URL to edit user page or empty string.


源代码

File: wp-includes/link-template.php

function get_edit_user_link( $user_id = null ) {
	if ( ! $user_id )
		$user_id = get_current_user_id();

	if ( empty( $user_id ) || ! current_user_can( 'edit_user', $user_id ) )
		return '';

	$user = get_userdata( $user_id );

	if ( ! $user )
		return '';

	if ( get_current_user_id() == $user->ID )
		$link = get_edit_profile_url( $user->ID );
	else
		$link = add_query_arg( 'user_id', $user->ID, self_admin_url( 'user-edit.php' ) );

	/**
	 * Filters the user edit link.
	 *
	 * @since 3.5.0
	 *
	 * @param string $link    The edit link.
	 * @param int    $user_id User ID.
	 */
	return apply_filters( 'get_edit_user_link', $link, $user->ID );
}

更新日志

Versiondescription
3.5.0Introduced.

相关函数

Uses

  • wp-includes/capabilities.php: current_user_can()
  • wp-includes/pluggable.php: get_userdata()
  • wp-includes/functions.php: add_query_arg()
  • wp-includes/link-template.php: get_edit_profile_url()
  • wp-includes/link-template.php: self_admin_url()
  • wp-includes/link-template.php: get_edit_user_link
  • wp-includes/plugin.php: apply_filters()
  • wp-includes/user.php: get_current_user_id()
  • Show 3 more uses Hide more uses

Used By

  • wp-admin/includes/class-wp-ms-users-list-table.php: WP_MS_Users_List_Table::handle_row_actions()
  • wp-admin/includes/class-wp-ms-users-list-table.php: WP_MS_Users_List_Table::column_username()
  • wp-admin/includes/class-wp-users-list-table.php: WP_Users_List_Table::single_row()
  • wp-includes/comment-template.php: comment_form()

User Contributed Notes

  1. Skip to note content You must log in to vote on the helpfulness of this noteVote results for this note: 0You must log in to vote on the helpfulness of this note Contributed by Codex

    Basic Example

    Get the edit user link for the user currently viewing the page.

    
    <a href="<?php echo get_edit_user_link(); ?>">name</a>
    
  2. Each editor’s link

    Get a link for each editor in the database

    
    $user = new WP_User_Query( array(
      'role' => 'editor'
    ));
    
    $editor = $users->get_results();
    
    foreach( $editor as $e ){
      $userdata = get_userdata( $e->ID );
      echo '<a href="'. get_edit_user_link( $e->ID ) .'">'. esc_attr( $userdata->user_nicename ) .'</a>';
    }
    

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文