PHPackages                             seravo/wp-frontend-profile - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Authentication &amp; Authorization](/categories/authentication)
4. /
5. seravo/wp-frontend-profile

AbandonedArchivedWordpress-muplugin[Authentication &amp; Authorization](/categories/authentication)

seravo/wp-frontend-profile
==========================

Allow user editing in frontend.

014PHP

Since Sep 9Pushed 10y ago1 watchersCompare

[ Source](https://github.com/Seravo/wp-frontend-profile)[ Packagist](https://packagist.org/packages/seravo/wp-frontend-profile)[ RSS](/packages/seravo-wp-frontend-profile/feed)WikiDiscussions master Synced 3w ago

READMEChangelogDependenciesVersions (1)Used By (0)

WP Front End Profile
====================

[](#wp-front-end-profile)

Contributors: wpmarkuk,onnimonni
Donate link:
Tags: profile, users, user meta
Requires at least: 4.0.1
Tested up to: 4.0.1
Stable tag: 0.3
License: GPLv2 or later
License URI:

WP Front End Profile allows users to edit their profile without going into the dashboard to do so.

Description
-----------

[](#description)

WP Front End Profile give you the ability to add a extensible user profile section to the front end of your WordPress website. By default the plugin adds two tabs to the front end profile. One of these 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

[](#plugin-extensibility)

As the front end 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
- Text Area
- Checkbox
- Password
- Email
- Text

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

### Profile Output

[](#profile-output)

To output the front end profile you can use the following function in your template files:

```
wpfep_show_profile();

```

Installation
------------

[](#installation)

1. Upload the plugin folder to the `/wp-content/plugins/` directory
2. Activate the plugin through the 'Plugins' menu in WordPress
3. Place `` in your templates where you want the front end profile to display

Frequently Asked Questions
--------------------------

[](#frequently-asked-questions)

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

[](#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.

```
