_wp_credits_add_profile_link

函数


_wp_credits_add_profile_link ( $display_name, $username, $profiles )
Access
Private
参数
  • (string)
    $display_name
    The contributor’s display name (passed by reference).
    Required:
  • (string)
    $username
    The contributor’s username.
    Required:
  • (string)
    $profiles
    URL to the contributor’s WordPress.org profile page.
    Required:
定义位置
  • wp-admin/includes/credits.php
    , line 73
引入
3.2.0
弃用

Retrieve the link to a contributor’s WordPress.org profile page.

function _wp_credits_add_profile_link( &$display_name, $username, $profiles ) {
	$display_name = '' . esc_html( $display_name ) . '';
}