SlideShare uma empresa Scribd logo
Enhancing User ProfilesLeiaScofield                @leiawww.rd2inc.com            @rd2inc
quick wins
[object Object]
Theme My Profile
User Photos,[object Object]
Theme My Login
Theme My Login
theme my profile
user photos
Square Thumbnails for User Photo
slower wins
[object Object]
Features just for Logged In Users,[object Object]
Plugins for Additional Fields ,[object Object]
Register Plus,[object Object]
Hardcore: Functions.php ,[object Object]
Add display of new fields
Save fields in database,[object Object]
Add display of new fields
Save new fields to database
Save new fields to database
features just for logged in users
Conditional PHP
let’s see it all in action!
http://192.168.30.54/login
Define variables and set up loop
HTML and PHP
bonus! reading list
Add a new link
Link_Owner
The PHP Magic

Mais conteúdo relacionado

Semelhante a Enhancing WordPress User Profiles

Joomla CCK extensies - JUG Heerenveen, NL
Joomla CCK extensies - JUG Heerenveen, NLJoomla CCK extensies - JUG Heerenveen, NL
Joomla CCK extensies - JUG Heerenveen, NL
Sander Potjer
 
Extending BuddyPress – WordCamp Milano 2011 [italian]
Extending BuddyPress – WordCamp Milano 2011 [italian]Extending BuddyPress – WordCamp Milano 2011 [italian]
Extending BuddyPress – WordCamp Milano 2011 [italian]
Francesco Laffi
 
Workshop: Creating your first WordPress plugin
Workshop: Creating your first WordPress pluginWorkshop: Creating your first WordPress plugin
Workshop: Creating your first WordPress plugin
ylefebvre
 
Bringing Zest to SharePoint Sites Using Out-of-the-Box Technology
Bringing Zest to SharePoint Sites Using Out-of-the-Box TechnologyBringing Zest to SharePoint Sites Using Out-of-the-Box Technology
Bringing Zest to SharePoint Sites Using Out-of-the-Box Technology
joelsef
 
WordPress Custom Fields: Control your content presentation by breaking out of...
WordPress Custom Fields: Control your content presentation by breaking out of...WordPress Custom Fields: Control your content presentation by breaking out of...
WordPress Custom Fields: Control your content presentation by breaking out of...
Denise Williams
 
Open Networks Online 2.0
Open Networks Online 2.0Open Networks Online 2.0
Open Networks Online 2.0
Simon Berry
 
Admin Panel
Admin Panel Admin Panel

Semelhante a Enhancing WordPress User Profiles (20)

Joomla CCK extensies - JUG Heerenveen, NL
Joomla CCK extensies - JUG Heerenveen, NLJoomla CCK extensies - JUG Heerenveen, NL
Joomla CCK extensies - JUG Heerenveen, NL
 
Extending BuddyPress – WordCamp Milano 2011 [italian]
Extending BuddyPress – WordCamp Milano 2011 [italian]Extending BuddyPress – WordCamp Milano 2011 [italian]
Extending BuddyPress – WordCamp Milano 2011 [italian]
 
Workshop: Creating your first WordPress plugin
Workshop: Creating your first WordPress pluginWorkshop: Creating your first WordPress plugin
Workshop: Creating your first WordPress plugin
 
WordPress 3.4 feature tour
WordPress 3.4 feature tourWordPress 3.4 feature tour
WordPress 3.4 feature tour
 
The Genesis Framework: Hooks & Filters for Theme Development
The Genesis Framework: Hooks & Filters for Theme DevelopmentThe Genesis Framework: Hooks & Filters for Theme Development
The Genesis Framework: Hooks & Filters for Theme Development
 
Developing components using Joomla CCKs
Developing components using Joomla CCKsDeveloping components using Joomla CCKs
Developing components using Joomla CCKs
 
Bringing Zest to SharePoint Sites Using Out-of-the-Box Technology
Bringing Zest to SharePoint Sites Using Out-of-the-Box TechnologyBringing Zest to SharePoint Sites Using Out-of-the-Box Technology
Bringing Zest to SharePoint Sites Using Out-of-the-Box Technology
 
sp14devtrain-mysitesandsocial.pptx
sp14devtrain-mysitesandsocial.pptxsp14devtrain-mysitesandsocial.pptx
sp14devtrain-mysitesandsocial.pptx
 
Создание API, которое полюбят разработчики. Глубокое погружение
Создание API, которое полюбят разработчики. Глубокое погружениеСоздание API, которое полюбят разработчики. Глубокое погружение
Создание API, которое полюбят разработчики. Глубокое погружение
 
WordPress Custom Fields: Control your content presentation by breaking out of...
WordPress Custom Fields: Control your content presentation by breaking out of...WordPress Custom Fields: Control your content presentation by breaking out of...
WordPress Custom Fields: Control your content presentation by breaking out of...
 
WordPress
WordPressWordPress
WordPress
 
PHP Variables & Comments 01
PHP Variables & Comments 01PHP Variables & Comments 01
PHP Variables & Comments 01
 
WordPress Complete Tutorial
WordPress Complete TutorialWordPress Complete Tutorial
WordPress Complete Tutorial
 
Open Networks Online 2.0
Open Networks Online 2.0Open Networks Online 2.0
Open Networks Online 2.0
 
JUG Nederland - RSJoomla! extensions - What, When and how.
JUG Nederland - RSJoomla! extensions - What, When and how.JUG Nederland - RSJoomla! extensions - What, When and how.
JUG Nederland - RSJoomla! extensions - What, When and how.
 
Admin Panel
Admin Panel Admin Panel
Admin Panel
 
WordPress for Libraries PreConference Workshop
WordPress for Libraries PreConference WorkshopWordPress for Libraries PreConference Workshop
WordPress for Libraries PreConference Workshop
 
Internet Librarian Slides
Internet Librarian SlidesInternet Librarian Slides
Internet Librarian Slides
 
Oslo WordPress Meetup - June 15, 2011
Oslo WordPress Meetup - June 15, 2011Oslo WordPress Meetup - June 15, 2011
Oslo WordPress Meetup - June 15, 2011
 
Rs-Member Wordpress Membership
Rs-Member Wordpress Membership Rs-Member Wordpress Membership
Rs-Member Wordpress Membership
 

Enhancing WordPress User Profiles

Notas do Editor

  1. Quick wins
  2. Drops the registration, log in, and password recovery forms into your Page template
  3. General settings let you use your own CSS or rewrite login links
  4. Creates a Page for Login, so you can add content or you can put a tag in your template file
  5. Creates a Page for Login, so you can add content or you can put a tag in your template file
  6. Many options, including redirection, custom passwords, and custom emails
  7. Formats the Profile form into your theme template
  8. Can turn on or off for specific roles or keep certain roles from accessing the WP admin area altogether
  9. Friendly /profile/ location
  10. Allows user to upload a photo to their profile
  11. Plugin options allow you to set dimensions, override avatars, and moderate photos
  12. Square Thumbnails for User Photo plugin runs on top of User Photo and crops the thumbnail as a square instead of proportional to the original shape.
  13. Slower wins
  14. There are a few plugins for adding additional fields to the profile form. Register Plus hasn’t been updated in a couple of years and seems to have mixed results.
  15. You can be hardcore and write these functions into functions.php.
  16. <?phpif ( is_user_logged_in() ) {    echo 'Welcome, registered user!';} else {    echo 'Welcome, visitor!';};?>
  17. In my Team page template, here’s how I show this information.
  18. Voila!
  19. Using the built-in Link Manager, we can create a Reading List for each user to maintain on their own
  20. WordPress saves the “link_owner” ID when the link is added to the database.