wordpress 프로필 사진 추출 src

1652 단어
사용자 프로필 사진을 가져옵니다.$avatar_html = get_avatar( $email );
프로필 사진에 대한 html 가져오기
/**
 * Retrieve the avatar url for a user who provided a user ID or email address.
 *
 * {@see get_avatar()} doesn't return just the URL, so we have to
 * extract it here.
 *
 * @param string $email Email address.
 * @return string URL for the user's avatar, empty string otherwise.
*/
function json_get_avatar_url( $avatar_html ) {

    // Strip the avatar url from the get_avatar img tag.
    preg_match('/src=["|\'](.+)[\&|"|\']/U', $avatar_html, $matches);

    if ( isset( $matches[1] ) && ! empty( $matches[1] ) ) {
        return esc_url_raw( $matches[1] );
    }

    return '';
}

 
다음으로 전송:https://www.cnblogs.com/fsong/p/5647196.html

좋은 웹페이지 즐겨찾기