콘텐츠로 바로가기
WordPress.org

한국어

  • 테마
  • 플러그인
  • 소식
    • 문서
    • 포럼
  • About
    • WordPress 6.9
    • 워드프레스 6.8
    • 워드프레스와 40% 웹을 위한 여정
    • 워드프레스 번역 핸드북
  • 워드프레스 한국팀
  • 워드프레스 받기
워드프레스 받기
WordPress.org

Plugin Directory

WP Frontend Profile

  • 플러그인 제출하기
  • 내 즐겨찾기
  • 로그인
  • 플러그인 제출하기
  • 내 즐겨찾기
  • 로그인

WP Frontend Profile

작성자: Glowlogix
다운로드
  • 세부사항
  • 평가
  • 설치
  • 개발
지원

설명

WP Frontend Profile gives you the ability to add a extensible user profile section to the frontend of your WordPress website. By default the plugin adds two tabs to the frontend profile. One of these tabs, titled profile, allows a user to edit their user data including email, first and last names, URL and bio (description). The password tab allows a user to change their password for the site.

Plugin Extensibility

As the frontend profile is rendered with tabs you can easily add your own tabs with your own fields to store user meta data. Tabs and fields are added through filters and all the saving of the data is taken care of for you.

You can add the following field types:

  • WYSIWYG
  • Select
  • Multi Select
  • Radio
  • Text Area
  • Checkbox
  • Password
  • Email
  • Text

See FAQs for how to add our own fields and tabs.

Profile Output

To output the frontend profile feature you can use the following shortcodes in editor:

  • Profile page [wpfep-profile]
  • Edit profile [wpfep]
  • Register page [wpfep-register]
  • Login page [wpfep-login]

Features

  • Added Login Widget
  • Addon for Mailchimp
  • Added Content Restriction feature for paid members.

스크린샷

WP frontend profile edit page.
WP frontend profile edit page.
WP frontend profile register page.
WP frontend profile register page.
WP frontend profile login page.
WP frontend profile login page.
WP frontend profile setting area.
WP frontend profile setting area.
WP frontend profile tool area.
WP frontend profile tool area.
WP frontend profile system status area.
WP frontend profile system status area.

블록

이 플러그인은 1개의 블록을 제공합니다.

  • Frontend Profile

설치

  1. Upload the plugin folder to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress

After having installed the plugin: 1. Create a new Page “Profile” for profile and insert shortcode [wpfep-profile] 2. Create a new Page “Edit Profile” for editing profile and insert shortcode [wpfep] 3. Create a new Page “Login” for login form and insert shortcode [wpfep-login] 4. Create a new Page “Register” for registration form and insert shortcode [wpfep-register] 5. Set the Edit Page option from Pages tab on settings page.

FAQ

For more information and more extensive documentation about this plugin checkout the WP Frontend Profile Wiki on Github.

How do I add my own tab to the profile output?

Tabs can be added using the wpfep_tabs filter provided. Below is an example of how to add a tab after the default Profile and Password tabs.

<?php
function wpmark_add_tab( $tabs ) {

    /* add our tab to the tabs array */
    $tabs[] = array(
        'id' => 'wpmark_tab',
        'label' => 'Testing',
        'tab_class' => 'testing-tab',
        'content_class' => 'testing-content',
    );

    /* return all the tabs */
    return $tabs;

}

add_filter( 'wpfep_tabs', 'wpmark_add_tab', 30 );
?>

Note here the priority of 30 which means after the Profile tab (10) and the Password tab (20).

How do I add fields to a tab?

Fields can be added to a tab using a dynamic filter named wpfep_fields_$tab_id. The tab ID is the id of tab as declared when adding the tab (see FAQ above). This means that you can add fields to any tab even the default tabs. Below is an example of how you would add fields to a tab with the ID of wpmark_tab:

<?php
function wpmark_add_tab_fields( $fields ) {

    $fields[] = array(
        'id' => 'testing_field',
        'label' => 'Testing',
        'desc' => 'Just testing.',
        'type' => 'text',
        'classes' => 'testing',
    );

    return $fields;

}

add_filter( 'wpfep_fields_wpmark_tab', 'wpmark_add_tab_fields', 10 );
?>

Are there any field IDs I cannot use?

Yes there are two field IDs reserved which are user_email and user_url. This is because you should not save new meta data with these keys are they already exist, but not in the user_meta table.

후기

Frontend Profile

lordkahler 2026년 4월 6일 답글 1개
One of the easiest plugins to use

AIO admin pack

Hossein 2023년 7월 7일
Hi,Thanks for creating this good and super useful plugin.

Suggestion

Hermann Matthias 2022년 6월 2일
Basicly a vey good idea, but it should have options to choose: – yes/no LOGIN page – yes/no REGISTER page – yes/no those 2 PROFILE PAGES in many cases the user has already a special styled login or register page, the profile form ist not really fitting, but that we can ajust with the editor and nice regards from the Philipines

Good Plugin

sorenaphysio 2021년 12월 20일
Simple and Easy to use with many options

Works but have some feedback here…

Liang 2021년 11월 27일 답글 1개
The newest version causes some conflict with my website and I have to use the 0.2.2 version. Overall, I do recommend the author, developer focus on improving the “frontend user editing” instead of the “login page”. The “frontend user editing” is the thing we only needed. Thanks for developing such an awesome plugin.

Not good enough

Claudio 2021년 11월 24일
There is no form customization. Apparently there is no way to user upload a picture for their own profile. It would be good if the pages created by the plugin could be shown under the user profile picture as a user menu. I hope I am helping to increase the plugin capability.
모든 9 평가 읽기

기여자 & 개발자

“WP Frontend Profile”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에 기여하였습니다.

기여자
  • Glowlogix
  • Mark Wilkinson

자국어로 “WP Frontend Profile”(을)를 번역하세요.

개발에 관심이 있으십니까?

코드 탐색하기는, SVN 저장소를 확인하시거나, 개발 기록을 RSS로 구독하세요.

변경이력

For the plugin’s changelog, please see the changelog page on GitHub.

기초

  • 버전 1.3.9
  • 최근 업데이트: 6개월 전
  • 활성화된 설치 100+
  • 워드프레스 버전 4.0.1 또는 그 이상
  • 다음까지 시험됨: 6.8.7
  • PHP 버전 5.2.17 또는 그 이상
  • 언어
    English (US)
  • 태그:
    loginprofileregisteruser metausers
  • 고급 보기

평점

별 5점 만점에 4.3점.
  • 6/5-별점 후기 별 5개 6
  • 1/4-별점 후기 별 4개 1
  • 1/3-별점 후기 별 3개 1
  • 1/2-별점 후기 별 2개 1
  • 0/1-별점 후기 별 1개 0

Your review

모든 리뷰 보기

기여자

  • Glowlogix
  • Mark Wilkinson

지원

할 말 있으신가요? 도움이 필요하신가요?

지원 포럼 보기

기부

이 플러그인이 발전하도록 도우시겠습니까?

이 플러그인에 기부하기

  • 소개
  • 뉴스
  • 호스팅
  • 개인정보
  • 쇼케이스
  • 테마
  • 플러그인
  • 패턴
  • 배우기
  • 지원
  • 개발자 도구
  • WordPress.tv ↗
  • 참여하기
  • 이벤트
  • 기부하기 ↗
  • Swag ↗
  • WordPress.com ↗
  • Matt ↗
  • bbPress ↗
  • BuddyPress ↗
WordPress.org
WordPress.org

한국어

  • X(이전 트위터) 계정 방문하기
  • 블루스카이 계정 방문하기
  • 마스토돈 계정 방문하기
  • 스레드 계정 방문하기
  • 페이스북 페이지 방문하기
  • 인스타그램 계정 방문하기
  • LinkedIn 계정 방문하기
  • 틱톡 계정 방문하기
  • 유튜브 채널 방문하기
  • 텀블러 계정 방문하기
코드는 詩다
The WordPress® trademark is the intellectual property of the WordPress Foundation.