SlideShare a Scribd company logo
1 of 55
Custom Post Types and Taxonomies

                   Jared Atchison
          WordPress Developer & Consultant

             jaredatchison.com / @jaredatch


3/24/12          Custom Post Types and Taxonomies   1
Just who the hell is this guy?

   ABOUT ME


3/24/12                   Custom Post Types and Taxonomies   2
About Me
•   2008 Texas A&M graduate (whoop)
•   WordPress developer & consultant
•   Featured Genesis developer
•   Listed CodePoet
•   WordCamp speaker and attendee
•   Plugin author
•   Custom Metaboxes co-author (CustomMetaboxes.com)
•   bbPress contributor, forum moderator
3/24/12            Custom Post Types and Taxonomies    3
Let’s begin…

   CUSTOM POST TYPES


3/24/12           Custom Post Types and Taxonomies   4
First, a quick poll.

• DO YOU KNOW?
• DO YOU USE?



3/24/12      Custom Post Types and Taxonomies   5
3/24/12   Custom Post Types and Taxonomies   6
What the @#$*! is a Custom
              Post Type?
           Also referred to as CPTs




3/24/12      Custom Post Types and Taxonomies   7
CPTs - from the Codex
“WordPress can hold and display many different types of
content. Internally, these are all stored in the same place,
in the wp_posts table.

These are differentiated by a column called post_type.

WordPress 3.0 gives you the capability to add your own
custom post types and to use them in different ways.”

http://codex.wordpress.org/Post_Types


3/24/12                Custom Post Types and Taxonomies        8
WP Default Custom Post Types
•   Post
•   Page
•   Attachment
•   Revisions
•   Nav Menus




3/24/12          Custom Post Types and Taxonomies   9
register_post_type()
add_action( 'init', 'create_post_type' );
function create_post_type() {
    register_post_type( 'acme_product',
         array(
             'labels' => array(
                   'name' => __( 'Products' ),
                   'singular_name' => __( 'Product' )
             ),
         'public' => true,
         'has_archive' => true,
         )
    );
}


http://codex.wordpress.org/Function_Reference/register_post_type

3/24/12                  Custom Post Types and Taxonomies          10
BOOM.




3/24/12   Custom Post Types and Taxonomies   11
You should really check out the
                Codex. No Really.
•   Naming best practices
•   Reserved names
•   Admin UI
•   URLs
•   CPT templates
•   Available $args
 http://codex.wordpress.org/Post_Types
 http://codex.wordpress.org/Function_Reference/register_post_type

3/24/12                   Custom Post Types and Taxonomies          12
How and when?

   A PSA ON REGISTERING CPTS


3/24/12            Custom Post Types and Taxonomies   13
Register when appropriate…
• If at all possible – “Core Functionality” plugin

• http://wpcandy.com/teaches/how-to-create-a-functionality-plugin

• http://ottopress.com/2011/creating-a-site-specific-snippets-plugin/

• http://www.billerickson.net/core-functionality-plugin/




3/24/12                 Custom Post Types and Taxonomies                14
How? Check.
          Where? Check.
            WHEN?


3/24/12    Custom Post Types and Taxonomies   15
WITH GREAT POWER
   COMES GREAT RESPONSIBILITY

3/24/12    Custom Post Types and Taxonomies   16
THINK ABOUT HOW IT WILL BE
   USED AND WHAT IT NEEDS
3/24/12    Custom Post Types and Taxonomies   17
Example
• Books
• Will it be setup different than posts?
• Custom metaboxes?
• Separate taxonomies (authors, genres, rating,
  price)
• Separate queries
• Archive page
• No? ?

3/24/12        Custom Post Types and Taxonomies   18
Further reading…
  http://ottopress.com/2010/wordpress-3-0-and-custom-post-types/




3/24/12                Custom Post Types and Taxonomies            19
3/24/12   Custom Post Types and Taxonomies   20
(by popular demand)




3/24/12       Custom Post Types and TaxonomiesCustom Post Types and Taxonomies
                                                                         21
Books




     http://popcritics.com/books/professional-wordpress-plugin-development

3/24/12                   Custom Post Types and Taxonomies                   22
Movies




          http://popcritics.com/movies/avatar
3/24/12     Custom Post Types and Taxonomies    23
Movies (cont.)




          http://popcritics.com/movies
3/24/12                  Custom Post Types and Taxonomies   24
Beating a dead horse.

   SLIDERS, SLIDESHOWS,
   ROTATORS.

3/24/12                    Custom Post Types and Taxonomies   25
Generally there are two different
     methods used for a “slideshow”
          custom post type…




3/24/12       Custom Post Types and TaxonomiesCustom Post Types and Taxonomies
                                                                         26
First method
•   The entire post type is one slideshow
•   Each entry (post) is a slide
•   Featured image is the slide image
•   hierarchial=false (register cpt)
•   orderby=menu_order (wp_query)
•   Fancy AJAX re-ordering, eg:
    http://wordpress.org/extend/plugins/simple-page-ordering/




3/24/12                 Custom Post Types and Taxonomies        27
First method – back end




3/24/12        Custom Post Types and Taxonomies   28
First method – front end




3/24/12         Custom Post Types and Taxonomies   29
Second method
• Each entry (post) is a complete slideshow
• Usually has a shortcode system
  eg [slideshow id=21]
• Often has more bells and whistles, though can
  be more work to customize




3/24/12        Custom Post Types and Taxonomies   30
Second method – back end




                 http://soliloquywp.com/
3/24/12         Custom Post Types and Taxonomies   31
… last one… I promise




                http://soliloquywp.com/
3/24/12        Custom Post Types and Taxonomies   32
Let people know other people like you.

   TESTIMONIALS


3/24/12                 Custom Post Types and Taxonomies   33
3/24/12   Custom Post Types and Taxonomies   34
3/24/12   Custom Post Types and Taxonomies   35
3/24/12   Custom Post Types and Taxonomies   36
Wait for it…

   FAQ


3/24/12           Custom Post Types and Taxonomies   37
http://wordpress.org/extend/plugins/wordpress-faq-manager/




3/24/12                 Custom Post Types and Taxonomies               38
Show clients why you are awesome.

   PORTFOLIO


3/24/12                Custom Post Types and Taxonomies   39
3/24/12   Custom Post Types and Taxonomies   40
3/24/12   Custom Post Types and Taxonomies   41
Getting deeper…
3/24/12     Custom Post Types and Taxonomies   42
Track down leads.

   CRM


3/24/12                Custom Post Types and Taxonomies   43
3/24/12   Custom Post Types and Taxonomies   44
3/24/12   Custom Post Types and Taxonomies   45
3/24/12   Custom Post Types and Taxonomies   46
http://wordpress.org/extend/plugins/front-end-editor/
          https://github.com/billerickson/Genesis-CRM
          https://github.com/jaredatch
3/24/12                  Custom Post Types and Taxonomies         47
Full fledged forums.

   bbPress (2.x)


3/24/12                   Custom Post Types and Taxonomies   48
bbPress
•   One of the most advanced examples of CPTs
•   Go for 2.x
•   Loads of trickery
•   Forums = CPT
•   Topics (threads) = CPT
•   Replies = CPT
•   Topic tags = custom taxonomies

3/24/12         Custom Post Types and Taxonomies   49
THREE CPTS? WAT?




3/24/12      Custom Post Types and Taxonomies   50
Question




3/24/12   Custom Post Types and Taxonomies   51
Answer




3/24/12   Custom Post Types and Taxonomies   52
bbPress in the wild
• www.makeupgeek.com/forums/
• www.getshopped.org/forums/
• www.wpcandy.com/forums/




3/24/12      Custom Post Types and Taxonomies   53
Other CPT examples…
•   Coupons
•   Events (Events Calendar Pro)
•   Products (WooCommerce)
•   URL Redirection (Simple URLs)
•   Bookmarks (formerly like delicious)
•   Tutorials



3/24/12          Custom Post Types and Taxonomies   54
QUESTIONS? FIND ME.

                   Jared Atchison
          WordPress Developer & Consultant

             jaredatchison.com / @jaredatch


3/24/12          Custom Post Types and Taxonomies   55

More Related Content

Similar to Custom Post Types - WordPress

WordPress custom posts types for structured content
WordPress custom posts types for structured contentWordPress custom posts types for structured content
WordPress custom posts types for structured contentFirestorm Creative Studios
 
Custom Post Types and Taxonomies
Custom Post Types and TaxonomiesCustom Post Types and Taxonomies
Custom Post Types and TaxonomiesTammy Hart
 
What is the WordPress Loop?
What is the WordPress Loop?What is the WordPress Loop?
What is the WordPress Loop?webdesigncom
 
Understanding Taxonomy, Drupal Camp Colorado, June 2009
Understanding Taxonomy, Drupal Camp Colorado, June 2009Understanding Taxonomy, Drupal Camp Colorado, June 2009
Understanding Taxonomy, Drupal Camp Colorado, June 2009David Lanier
 
Wordcamp Phoenix 2012 - Custom Post Types: Now What? By Cody Helgeson
Wordcamp Phoenix 2012 - Custom Post Types: Now What? By Cody HelgesonWordcamp Phoenix 2012 - Custom Post Types: Now What? By Cody Helgeson
Wordcamp Phoenix 2012 - Custom Post Types: Now What? By Cody HelgesonCody Helgeson
 
Stepping Into Custom Post Types
Stepping Into Custom Post TypesStepping Into Custom Post Types
Stepping Into Custom Post TypesK.Adam White
 
Custom post types - WordPress
Custom post types - WordPressCustom post types - WordPress
Custom post types - WordPresskeithdevon
 
The very introduction to content management systems
The very introduction to content management systemsThe very introduction to content management systems
The very introduction to content management systemsSean Donnelly BA MSc QFA
 

Similar to Custom Post Types - WordPress (8)

WordPress custom posts types for structured content
WordPress custom posts types for structured contentWordPress custom posts types for structured content
WordPress custom posts types for structured content
 
Custom Post Types and Taxonomies
Custom Post Types and TaxonomiesCustom Post Types and Taxonomies
Custom Post Types and Taxonomies
 
What is the WordPress Loop?
What is the WordPress Loop?What is the WordPress Loop?
What is the WordPress Loop?
 
Understanding Taxonomy, Drupal Camp Colorado, June 2009
Understanding Taxonomy, Drupal Camp Colorado, June 2009Understanding Taxonomy, Drupal Camp Colorado, June 2009
Understanding Taxonomy, Drupal Camp Colorado, June 2009
 
Wordcamp Phoenix 2012 - Custom Post Types: Now What? By Cody Helgeson
Wordcamp Phoenix 2012 - Custom Post Types: Now What? By Cody HelgesonWordcamp Phoenix 2012 - Custom Post Types: Now What? By Cody Helgeson
Wordcamp Phoenix 2012 - Custom Post Types: Now What? By Cody Helgeson
 
Stepping Into Custom Post Types
Stepping Into Custom Post TypesStepping Into Custom Post Types
Stepping Into Custom Post Types
 
Custom post types - WordPress
Custom post types - WordPressCustom post types - WordPress
Custom post types - WordPress
 
The very introduction to content management systems
The very introduction to content management systemsThe very introduction to content management systems
The very introduction to content management systems
 

Recently uploaded

How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
unit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxunit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxBkGupta21
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfLoriGlavin3
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxLoriGlavin3
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionDilum Bandara
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESmohitsingh558521
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningLars Bell
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxLoriGlavin3
 

Recently uploaded (20)

How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
unit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxunit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptx
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdf
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An Introduction
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine Tuning
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
 

Custom Post Types - WordPress

  • 1. Custom Post Types and Taxonomies Jared Atchison WordPress Developer & Consultant jaredatchison.com / @jaredatch 3/24/12 Custom Post Types and Taxonomies 1
  • 2. Just who the hell is this guy? ABOUT ME 3/24/12 Custom Post Types and Taxonomies 2
  • 3. About Me • 2008 Texas A&M graduate (whoop) • WordPress developer & consultant • Featured Genesis developer • Listed CodePoet • WordCamp speaker and attendee • Plugin author • Custom Metaboxes co-author (CustomMetaboxes.com) • bbPress contributor, forum moderator 3/24/12 Custom Post Types and Taxonomies 3
  • 4. Let’s begin… CUSTOM POST TYPES 3/24/12 Custom Post Types and Taxonomies 4
  • 5. First, a quick poll. • DO YOU KNOW? • DO YOU USE? 3/24/12 Custom Post Types and Taxonomies 5
  • 6. 3/24/12 Custom Post Types and Taxonomies 6
  • 7. What the @#$*! is a Custom Post Type? Also referred to as CPTs 3/24/12 Custom Post Types and Taxonomies 7
  • 8. CPTs - from the Codex “WordPress can hold and display many different types of content. Internally, these are all stored in the same place, in the wp_posts table. These are differentiated by a column called post_type. WordPress 3.0 gives you the capability to add your own custom post types and to use them in different ways.” http://codex.wordpress.org/Post_Types 3/24/12 Custom Post Types and Taxonomies 8
  • 9. WP Default Custom Post Types • Post • Page • Attachment • Revisions • Nav Menus 3/24/12 Custom Post Types and Taxonomies 9
  • 10. register_post_type() add_action( 'init', 'create_post_type' ); function create_post_type() { register_post_type( 'acme_product', array( 'labels' => array( 'name' => __( 'Products' ), 'singular_name' => __( 'Product' ) ), 'public' => true, 'has_archive' => true, ) ); } http://codex.wordpress.org/Function_Reference/register_post_type 3/24/12 Custom Post Types and Taxonomies 10
  • 11. BOOM. 3/24/12 Custom Post Types and Taxonomies 11
  • 12. You should really check out the Codex. No Really. • Naming best practices • Reserved names • Admin UI • URLs • CPT templates • Available $args http://codex.wordpress.org/Post_Types http://codex.wordpress.org/Function_Reference/register_post_type 3/24/12 Custom Post Types and Taxonomies 12
  • 13. How and when? A PSA ON REGISTERING CPTS 3/24/12 Custom Post Types and Taxonomies 13
  • 14. Register when appropriate… • If at all possible – “Core Functionality” plugin • http://wpcandy.com/teaches/how-to-create-a-functionality-plugin • http://ottopress.com/2011/creating-a-site-specific-snippets-plugin/ • http://www.billerickson.net/core-functionality-plugin/ 3/24/12 Custom Post Types and Taxonomies 14
  • 15. How? Check. Where? Check. WHEN? 3/24/12 Custom Post Types and Taxonomies 15
  • 16. WITH GREAT POWER COMES GREAT RESPONSIBILITY 3/24/12 Custom Post Types and Taxonomies 16
  • 17. THINK ABOUT HOW IT WILL BE USED AND WHAT IT NEEDS 3/24/12 Custom Post Types and Taxonomies 17
  • 18. Example • Books • Will it be setup different than posts? • Custom metaboxes? • Separate taxonomies (authors, genres, rating, price) • Separate queries • Archive page • No? ? 3/24/12 Custom Post Types and Taxonomies 18
  • 19. Further reading… http://ottopress.com/2010/wordpress-3-0-and-custom-post-types/ 3/24/12 Custom Post Types and Taxonomies 19
  • 20. 3/24/12 Custom Post Types and Taxonomies 20
  • 21. (by popular demand) 3/24/12 Custom Post Types and TaxonomiesCustom Post Types and Taxonomies 21
  • 22. Books http://popcritics.com/books/professional-wordpress-plugin-development 3/24/12 Custom Post Types and Taxonomies 22
  • 23. Movies http://popcritics.com/movies/avatar 3/24/12 Custom Post Types and Taxonomies 23
  • 24. Movies (cont.) http://popcritics.com/movies 3/24/12 Custom Post Types and Taxonomies 24
  • 25. Beating a dead horse. SLIDERS, SLIDESHOWS, ROTATORS. 3/24/12 Custom Post Types and Taxonomies 25
  • 26. Generally there are two different methods used for a “slideshow” custom post type… 3/24/12 Custom Post Types and TaxonomiesCustom Post Types and Taxonomies 26
  • 27. First method • The entire post type is one slideshow • Each entry (post) is a slide • Featured image is the slide image • hierarchial=false (register cpt) • orderby=menu_order (wp_query) • Fancy AJAX re-ordering, eg: http://wordpress.org/extend/plugins/simple-page-ordering/ 3/24/12 Custom Post Types and Taxonomies 27
  • 28. First method – back end 3/24/12 Custom Post Types and Taxonomies 28
  • 29. First method – front end 3/24/12 Custom Post Types and Taxonomies 29
  • 30. Second method • Each entry (post) is a complete slideshow • Usually has a shortcode system eg [slideshow id=21] • Often has more bells and whistles, though can be more work to customize 3/24/12 Custom Post Types and Taxonomies 30
  • 31. Second method – back end http://soliloquywp.com/ 3/24/12 Custom Post Types and Taxonomies 31
  • 32. … last one… I promise http://soliloquywp.com/ 3/24/12 Custom Post Types and Taxonomies 32
  • 33. Let people know other people like you. TESTIMONIALS 3/24/12 Custom Post Types and Taxonomies 33
  • 34. 3/24/12 Custom Post Types and Taxonomies 34
  • 35. 3/24/12 Custom Post Types and Taxonomies 35
  • 36. 3/24/12 Custom Post Types and Taxonomies 36
  • 37. Wait for it… FAQ 3/24/12 Custom Post Types and Taxonomies 37
  • 39. Show clients why you are awesome. PORTFOLIO 3/24/12 Custom Post Types and Taxonomies 39
  • 40. 3/24/12 Custom Post Types and Taxonomies 40
  • 41. 3/24/12 Custom Post Types and Taxonomies 41
  • 42. Getting deeper… 3/24/12 Custom Post Types and Taxonomies 42
  • 43. Track down leads. CRM 3/24/12 Custom Post Types and Taxonomies 43
  • 44. 3/24/12 Custom Post Types and Taxonomies 44
  • 45. 3/24/12 Custom Post Types and Taxonomies 45
  • 46. 3/24/12 Custom Post Types and Taxonomies 46
  • 47. http://wordpress.org/extend/plugins/front-end-editor/ https://github.com/billerickson/Genesis-CRM https://github.com/jaredatch 3/24/12 Custom Post Types and Taxonomies 47
  • 48. Full fledged forums. bbPress (2.x) 3/24/12 Custom Post Types and Taxonomies 48
  • 49. bbPress • One of the most advanced examples of CPTs • Go for 2.x • Loads of trickery • Forums = CPT • Topics (threads) = CPT • Replies = CPT • Topic tags = custom taxonomies 3/24/12 Custom Post Types and Taxonomies 49
  • 50. THREE CPTS? WAT? 3/24/12 Custom Post Types and Taxonomies 50
  • 51. Question 3/24/12 Custom Post Types and Taxonomies 51
  • 52. Answer 3/24/12 Custom Post Types and Taxonomies 52
  • 53. bbPress in the wild • www.makeupgeek.com/forums/ • www.getshopped.org/forums/ • www.wpcandy.com/forums/ 3/24/12 Custom Post Types and Taxonomies 53
  • 54. Other CPT examples… • Coupons • Events (Events Calendar Pro) • Products (WooCommerce) • URL Redirection (Simple URLs) • Bookmarks (formerly like delicious) • Tutorials 3/24/12 Custom Post Types and Taxonomies 54
  • 55. QUESTIONS? FIND ME. Jared Atchison WordPress Developer & Consultant jaredatchison.com / @jaredatch 3/24/12 Custom Post Types and Taxonomies 55