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

Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?Antenna Manufacturer Coco
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 

Recently uploaded (20)

Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 

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