35
Theming BuddyPress or, How to become history’s awesomest person WordCamp Phoenix January 29 2011 Boone B Gorges @boone boonebgorges.com

Theming for BuddyPress

Embed Size (px)

Citation preview

Page 1: Theming for BuddyPress

Theming BuddyPressor, How to become history’s awesomest person

WordCamp PhoenixJanuary 29 2011

Boone B [email protected]

Page 2: Theming for BuddyPress

Who is Boone?

Page 3: Theming for BuddyPress

Who is Boone?

Page 4: Theming for BuddyPress

Who is Boone?

• Philosopher

Page 5: Theming for BuddyPress

Who is Boone?

• Philosopher

• Wisconsinite

Page 6: Theming for BuddyPress

Who is Boone?

• Philosopher

• Wisconsinite

• Punctual

Page 7: Theming for BuddyPress

Who is Boone?

• Philosopher

• Wisconsinite

• Punctual

• BuddyPress committing developer

Page 8: Theming for BuddyPress

Who is Boone?

• Philosopher

• Wisconsinite

• Punctual

• BuddyPress committing developer

Page 9: Theming for BuddyPress

BuddyPress is gonna getcha

Page 10: Theming for BuddyPress

BuddyPress is gonna getcha

• Friends

Page 11: Theming for BuddyPress

BuddyPress is gonna getcha

• Friends

• Groups

Page 12: Theming for BuddyPress

BuddyPress is gonna getcha

• Friends

• Groups

• Private Messages

Page 13: Theming for BuddyPress

BuddyPress is gonna getcha

• Friends

• Groups

• Private Messages

• Forums

Page 14: Theming for BuddyPress

BuddyPress is gonna getcha

• Friends

• Groups

• Private Messages

• Forums

• Activity Streams

Page 15: Theming for BuddyPress

BuddyPress is gonna getcha

• Friends

• Groups

• Private Messages

• Forums

• Activity Streams

• Profiles

Page 16: Theming for BuddyPress
Page 17: Theming for BuddyPress

Must avoid

Text

http://www.flickr.com/photos/andidigress/4471100232/

Page 18: Theming for BuddyPress

BuddyPress is WordPress

BuddyPress themes are WordPress themes

Page 19: Theming for BuddyPress

BuddyPress is WordPress

BuddyPress themes are WordPress themes

(plus some cool stuff)

(plus some extra templates)

Page 20: Theming for BuddyPress

Look familiar?404.phparchive.phpattachment.phpcomments.phpfooter.phpfunctions.phpheader.php

index.phplinks.phppage.phpsearch.phpsidebar.phpsingle.phpstyle.css

Page 21: Theming for BuddyPress

Look familiar?404.phpactivity/archive.phpattachment.phpblogs/comments.phpfooter.phpforums/functions.phpgroups/header.php

index.phplinks.phpmembers/page.phpregistration/search.phpsidebar.phpsingle.phpstyle.css

Page 22: Theming for BuddyPress

Look familiar?index.phplinks.phpmembers/page.phpregistration/search.phpsidebar.phpsingle.phpstyle.css

404.phpactivity/archive.phpattachment.phpblogs/comments.phpfooter.phpforums/functions.phpgroups/header.php

Page 23: Theming for BuddyPress

wp-content/themes/[your-bp-theme]/groups

create.phpgroups-loop.phpindex.phpsingle/

Page 24: Theming for BuddyPress

wp-content/themes/[your-bp-theme]/groups

create.phpgroups-loop.phpindex.phpsingle/ activity.php

admin.phpforum/forum.phpgroup-header.phphome.phpmembers.phpplugins.phprequest-membership.phpsend-invites.php

Page 25: Theming for BuddyPress

wp-content/themes/[your-bp-theme]/groups

create.phpgroups-loop.phpindex.phpsingle/ activity.php

admin.phpforum/forum.phpgroup-header.phphome.phpmembers.phpplugins.phprequest-membership.phpsend-invites.php

edit.phptopic.php

Page 26: Theming for BuddyPress

So how do I get started?

1. BuddyPress Template Pack

2. bp-default child theme

3. From scratch

Page 27: Theming for BuddyPress

1. BuddyPress Template Packhttp://wordpress.org/extend/plugins/bp-template-pack/

A plugin that adds the necessary template files to your existing theme

Page 28: Theming for BuddyPress

1. BuddyPress Template Packhttp://wordpress.org/extend/plugins/bp-template-pack/

A plugin that adds the necessary template files to your existing theme

activity/blogs/forums/groups/members/registration/

Page 29: Theming for BuddyPress

2. bp-default child themehttp://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/

• Declare the parent theme in style.css

• Import the parent theme’s stylesheet

• Override the templates you want to replace

/*Theme Name: BP Cha-Ching!Template: bp-defaultTags: buddypress*/

/* Inherit the default theme styles */@import url( ../../plugins/buddypress/bp-themes/bp-default/_inc/css/default.css );

/* Inherit the default theme adminbar styles */@import url( ../../plugins/buddypress/bp-themes/bp-default/_inc/css/adminbar.css );

Page 30: Theming for BuddyPress

2. bp-default child themehttp://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/

activity/footer.phpheader.phpindex.phpmembers/

activity-loop.phpindex.php

single/ activity.phphome.phpprofile.php

Directory structure matters!

Page 32: Theming for BuddyPress

3. From scratchLike mom used to make

http://codex.buddypress.org/developer-docs/custom-buddypress-loops/

Page 33: Theming for BuddyPress

3. From scratchLike mom used to make

bp-activity/bp-activity-templatetags.phpbp-blogs/bp-blogs-templatetags.phpbp-core/bp-core-templatetags.phpbp-forums/bp-forums-templatetags.phpetc

Know your template tags

Page 34: Theming for BuddyPress

How do I know?

• Use the BuddyPress Template Pack when...

• you already have a WP theme, and want to add BP functionality

• Build a child theme of bp-default when...

• you want to maximize upgradability

• Build a theme from scratch when...

• you only need a few BP features, and maybe you don’t want it to look like BP at all

Page 35: Theming for BuddyPress

Большое срасибо!

Boone B [email protected]