SlideShare a Scribd company logo
Advanced Custom
 Fields
 for theme tweaking goodness
  @thewebprincess




#wpsyd                         @thewebprincess
Advanced Custom
 Fields
 for theme tweaking goodness
  @thewebprincess




#wpsyd                         @thewebprincess
Advanced Custom Fields
   http://wordpress.org/extend/plugins/advanced-custom-fields/




#wpsyd                                                          @thewebprincess
Advanced Custom Fields
   http://wordpress.org/extend/plugins/advanced-custom-fields/


      Fully customise WordPress edit screens with powerful fields.
       - Wysiwyg, text, textarea, image, file, select, checkbox, page link, post object, date & colour picker
      - Community and Commercial addons for advanced fields.




#wpsyd                                                                                @thewebprincess
Advanced Custom Fields
   http://wordpress.org/extend/plugins/advanced-custom-fields/


      Fully customise WordPress edit screens with powerful fields.
       - Wysiwyg, text, textarea, image, file, select, checkbox, page link, post object, date & colour picker
      - Community and Commercial addons for advanced fields.


      Visually Create Fields & assign your fields to multiple edit pages
      (specific ID's, post types, slugs, template names & even options)




#wpsyd                                                                                @thewebprincess
Advanced Custom Fields
   http://wordpress.org/extend/plugins/advanced-custom-fields/


      Fully customise WordPress edit screens with powerful fields.
       - Wysiwyg, text, textarea, image, file, select, checkbox, page link, post object, date & colour picker
      - Community and Commercial addons for advanced fields.


      Visually Create Fields & assign your fields to multiple edit pages
      (specific ID's, post types, slugs, template names & even options)


      Repeater & Flexible Content Fields can replace other plugins
      (Gallery, Slider, FAQ, Related Posts, Podcasting, SEO, Attachments, H1, Sidebar Widgets)




#wpsyd                                                                                @thewebprincess
Advanced Custom Fields
   http://wordpress.org/extend/plugins/advanced-custom-fields/


      Fully customise WordPress edit screens with powerful fields.
       - Wysiwyg, text, textarea, image, file, select, checkbox, page link, post object, date & colour picker
      - Community and Commercial addons for advanced fields.


      Visually Create Fields & assign your fields to multiple edit pages
      (specific ID's, post types, slugs, template names & even options)


      Repeater & Flexible Content Fields can replace other plugins
      (Gallery, Slider, FAQ, Related Posts, Podcasting, SEO, Attachments, H1, Sidebar Widgets)


      Easy to integrate into a custom theme




#wpsyd                                                                                @thewebprincess
Advanced Custom Fields
   http://wordpress.org/extend/plugins/advanced-custom-fields/


      Fully customise WordPress edit screens with powerful fields.
       - Wysiwyg, text, textarea, image, file, select, checkbox, page link, post object, date & colour picker
      - Community and Commercial addons for advanced fields.


      Visually Create Fields & assign your fields to multiple edit pages
      (specific ID's, post types, slugs, template names & even options)


      Repeater & Flexible Content Fields can replace other plugins
      (Gallery, Slider, FAQ, Related Posts, Podcasting, SEO, Attachments, H1, Sidebar Widgets)


      Easy to integrate into a custom theme

      Ideal for complex page layouts & custom post types



#wpsyd                                                                                @thewebprincess
Advanced Custom Fields
   http://wordpress.org/extend/plugins/advanced-custom-fields/


      Fully customise WordPress edit screens with powerful fields.
       - Wysiwyg, text, textarea, image, file, select, checkbox, page link, post object, date & colour picker
      - Community and Commercial addons for advanced fields.


      Visually Create Fields & assign your fields to multiple edit pages
      (specific ID's, post types, slugs, template names & even options)


      Repeater & Flexible Content Fields can replace other plugins
      (Gallery, Slider, FAQ, Related Posts, Podcasting, SEO, Attachments, H1, Sidebar Widgets)


      Easy to integrate into a custom theme

      Ideal for complex page layouts & custom post types

      Free Plugin (with paid add ons)

#wpsyd                                                                                @thewebprincess
Powerful Fields




#wpsyd               @thewebprincess
Powerful Fields




                 custom field types




#wpsyd                               @thewebprincess
Visually Create Fields




#wpsyd                      @thewebprincess
Visually Create Fields




                  custom field types




#wpsyd                                @thewebprincess
Assign to virtually any Post Type




#wpsyd                        @thewebprincess
Assign to virtually any Post Type


                           custom post types




#wpsyd                           @thewebprincess
Assign to virtually any Post Type




#wpsyd                        @thewebprincess
Repeater Fields




#wpsyd               @thewebprincess
Repeater Fields




#wpsyd               @thewebprincess
Repeater Fields




#wpsyd               @thewebprincess
Easy Theme integration!




#wpsyd                       @thewebprincess
Easy Theme integration!
     Display the field =   <?php get_field('field_name'); ?>




#wpsyd                                                @thewebprincess
Easy Theme integration!
     Display the field =   <?php get_field('field_name'); ?>

     Use field as Variable = <?php
                            $variable = get_field('field_name');
                              // do something with $variable
                            ?>




#wpsyd                                                 @thewebprincess
Easy Theme integration!
     Display the field =   <?php get_field('field_name'); ?>

     Use field as Variable = <?php
                            $variable = get_field('field_name');
                              // do something with $variable
                            ?>

     As Conditionals =      <?php
                             if(get_field('field_name'))
                             {
                            echo '<p>' . get_field('field_name') . '</p>';
                            } ?>




#wpsyd                                                   @thewebprincess
Easy Theme integration!
     Display the field =   <?php get_field('field_name'); ?>

     Use field as Variable = <?php
                            $variable = get_field('field_name');
                              // do something with $variable
                            ?>

     As Conditionals =      <?php
                             if(get_field('field_name'))
                             {
                            echo '<p>' . get_field('field_name') . '</p>';
                            } ?>

     And many more!!
     http://www.advancedcustomfields.com/docs/code-examples/
#wpsyd                                                   @thewebprincess
Ideal for complicated post types




#wpsyd                       @thewebprincess
Ideal for complicated post types
     e.g. Classifed Ads for a business website




#wpsyd                                           @thewebprincess
Ideal for complicated post types
     e.g. Classifed Ads for a business website

         Jobs, Events, Classfieds




#wpsyd                                           @thewebprincess
Ideal for complicated post types
     e.g. Classifed Ads for a business website

         Jobs, Events, Classfieds

     Each has common advertiser content (advertiser details) and each
     has ad specific content (job/events/ad details).




#wpsyd                                                @thewebprincess
Ideal for complicated post types
     e.g. Classifed Ads for a business website

         Jobs, Events, Classfieds

     Each has common advertiser content (advertiser details) and each
     has ad specific content (job/events/ad details).

  1. Set up the Field Groups




#wpsyd                                                @thewebprincess
Ideal for complicated post types
     e.g. Classifed Ads for a business website

         Jobs, Events, Classfieds

     Each has common advertiser content (advertiser details) and each
     has ad specific content (job/events/ad details).

  1. Set up the Field Groups

  2. Create the Templates (yes, and style them etc.)




#wpsyd                                                 @thewebprincess
Ideal for complicated post types
     e.g. Classifed Ads for a business website

         Jobs, Events, Classfieds

     Each has common advertiser content (advertiser details) and each
     has ad specific content (job/events/ad details).

  1. Set up the Field Groups

  2. Create the Templates (yes, and style them etc.)

  3. Add Post Data




#wpsyd                                                 @thewebprincess
Ideal for complicated post types
     e.g. Classifed Ads for a business website

         Jobs, Events, Classfieds

     Each has common advertiser content (advertiser details) and each
     has ad specific content (job/events/ad details).

  1. Set up the Field Groups

  2. Create the Templates (yes, and style them etc.)

  3. Add Post Data

  4. Publish the results

#wpsyd                                                 @thewebprincess
Create the Field Groups/Fields




#wpsyd                       @thewebprincess
Create the Field Groups/Fields




#wpsyd                       @thewebprincess
Create the Templates




#wpsyd                    @thewebprincess
Enter the Data in the Post




#wpsyd                          @thewebprincess
Publish and View Results




#wpsyd                        @thewebprincess
That’s all folks
   Go forth and customise!




#wpsyd                       @thewebprincess
That’s all folks
   Go forth and customise!

     Twitter: @thewebprincess




#wpsyd                          @thewebprincess
That’s all folks
   Go forth and customise!

     Twitter: @thewebprincess

     Web: http://thewebprincess.com.au




#wpsyd                                   @thewebprincess
That’s all folks
   Go forth and customise!

     Twitter: @thewebprincess

     Web: http://thewebprincess.com.au




#wpsyd                                   @thewebprincess
That’s all folks
   Go forth and customise!

     Twitter: @thewebprincess

     Web: http://thewebprincess.com.au



     With thanks to Aaron Rutley at Eleven Media for the slideshow on
     which this one was built.




#wpsyd                                                 @thewebprincess

More Related Content

What's hot

Wordpress workflow for an agency world
Wordpress workflow for an agency worldWordpress workflow for an agency world
Wordpress workflow for an agency world
Chris Lowe
 
EECI 2010 - The Power of ExpressionEngine's Dynamic Templates
EECI 2010 - The Power of ExpressionEngine's Dynamic TemplatesEECI 2010 - The Power of ExpressionEngine's Dynamic Templates
EECI 2010 - The Power of ExpressionEngine's Dynamic Templates
FortySeven Media
 
WordPress Custom Post Types
WordPress Custom Post TypesWordPress Custom Post Types
WordPress Custom Post Types
Nile Flores
 
Using Custom Post Types and Advanced Custom Fields with Elementor
 Using Custom Post Types and Advanced Custom Fields with Elementor Using Custom Post Types and Advanced Custom Fields with Elementor
Using Custom Post Types and Advanced Custom Fields with Elementor
Angela Bowman
 
Accomplish It With Core: Sliders Galleries + More
Accomplish It With Core: Sliders Galleries + MoreAccomplish It With Core: Sliders Galleries + More
Accomplish It With Core: Sliders Galleries + More
Andy Stratton
 
WordPress Child Themes
WordPress Child ThemesWordPress Child Themes
WordPress Child Themes
rfair404
 
Blackrock intro presentation
Blackrock intro presentationBlackrock intro presentation
Blackrock intro presentation
Owen Forsyth
 
Starting WordPress Theme Review
Starting WordPress Theme ReviewStarting WordPress Theme Review
Starting WordPress Theme Review
Catch Themes
 

What's hot (8)

Wordpress workflow for an agency world
Wordpress workflow for an agency worldWordpress workflow for an agency world
Wordpress workflow for an agency world
 
EECI 2010 - The Power of ExpressionEngine's Dynamic Templates
EECI 2010 - The Power of ExpressionEngine's Dynamic TemplatesEECI 2010 - The Power of ExpressionEngine's Dynamic Templates
EECI 2010 - The Power of ExpressionEngine's Dynamic Templates
 
WordPress Custom Post Types
WordPress Custom Post TypesWordPress Custom Post Types
WordPress Custom Post Types
 
Using Custom Post Types and Advanced Custom Fields with Elementor
 Using Custom Post Types and Advanced Custom Fields with Elementor Using Custom Post Types and Advanced Custom Fields with Elementor
Using Custom Post Types and Advanced Custom Fields with Elementor
 
Accomplish It With Core: Sliders Galleries + More
Accomplish It With Core: Sliders Galleries + MoreAccomplish It With Core: Sliders Galleries + More
Accomplish It With Core: Sliders Galleries + More
 
WordPress Child Themes
WordPress Child ThemesWordPress Child Themes
WordPress Child Themes
 
Blackrock intro presentation
Blackrock intro presentationBlackrock intro presentation
Blackrock intro presentation
 
Starting WordPress Theme Review
Starting WordPress Theme ReviewStarting WordPress Theme Review
Starting WordPress Theme Review
 

Viewers also liked

Smooth website projects from start to finish
Smooth website projects from start to finishSmooth website projects from start to finish
Smooth website projects from start to finish
Mickey Mellen
 
Advanced Custom Fields: a Designer's Approach
Advanced Custom Fields: a Designer's ApproachAdvanced Custom Fields: a Designer's Approach
Advanced Custom Fields: a Designer's Approach
Liam Dempsey
 
Advanced Advanced Custom Fields
Advanced Advanced Custom FieldsAdvanced Advanced Custom Fields
Advanced Advanced Custom Fields
frankstaude
 
All Things WordPress: Customizing Your Website with Advanced Custom Fields
All Things WordPress: Customizing Your Website with Advanced Custom FieldsAll Things WordPress: Customizing Your Website with Advanced Custom Fields
All Things WordPress: Customizing Your Website with Advanced Custom Fields
Mickey Mellen
 
WordPress Advanced Custom Fields - 101
WordPress  Advanced Custom Fields - 101WordPress  Advanced Custom Fields - 101
WordPress Advanced Custom Fields - 101
Leo Caseiro
 
Structuring Content in WordPress using Advanced Custom Fields
Structuring Content in WordPress using Advanced Custom FieldsStructuring Content in WordPress using Advanced Custom Fields
Structuring Content in WordPress using Advanced Custom Fields
Jamie Schmid
 
Advanced Custom Fields - Flexible Content
Advanced Custom Fields - Flexible ContentAdvanced Custom Fields - Flexible Content
Advanced Custom Fields - Flexible Content
Norm Euker
 
Advanced Custom Fields: Amazing Possibilities and Irritating Limitations
Advanced Custom Fields: Amazing Possibilities and Irritating LimitationsAdvanced Custom Fields: Amazing Possibilities and Irritating Limitations
Advanced Custom Fields: Amazing Possibilities and Irritating Limitations
East Bay WordPress Meetup
 
Build a Better Editing Experience with Advanced Custom Fields - #WCTO16
Build a Better Editing Experience with Advanced Custom Fields - #WCTO16Build a Better Editing Experience with Advanced Custom Fields - #WCTO16
Build a Better Editing Experience with Advanced Custom Fields - #WCTO16
Jeseph Meyers
 
Advanced Custom Fields - Beyond the Basics
Advanced Custom Fields - Beyond the BasicsAdvanced Custom Fields - Beyond the Basics
Advanced Custom Fields - Beyond the Basics
Merrill Mayer
 

Viewers also liked (10)

Smooth website projects from start to finish
Smooth website projects from start to finishSmooth website projects from start to finish
Smooth website projects from start to finish
 
Advanced Custom Fields: a Designer's Approach
Advanced Custom Fields: a Designer's ApproachAdvanced Custom Fields: a Designer's Approach
Advanced Custom Fields: a Designer's Approach
 
Advanced Advanced Custom Fields
Advanced Advanced Custom FieldsAdvanced Advanced Custom Fields
Advanced Advanced Custom Fields
 
All Things WordPress: Customizing Your Website with Advanced Custom Fields
All Things WordPress: Customizing Your Website with Advanced Custom FieldsAll Things WordPress: Customizing Your Website with Advanced Custom Fields
All Things WordPress: Customizing Your Website with Advanced Custom Fields
 
WordPress Advanced Custom Fields - 101
WordPress  Advanced Custom Fields - 101WordPress  Advanced Custom Fields - 101
WordPress Advanced Custom Fields - 101
 
Structuring Content in WordPress using Advanced Custom Fields
Structuring Content in WordPress using Advanced Custom FieldsStructuring Content in WordPress using Advanced Custom Fields
Structuring Content in WordPress using Advanced Custom Fields
 
Advanced Custom Fields - Flexible Content
Advanced Custom Fields - Flexible ContentAdvanced Custom Fields - Flexible Content
Advanced Custom Fields - Flexible Content
 
Advanced Custom Fields: Amazing Possibilities and Irritating Limitations
Advanced Custom Fields: Amazing Possibilities and Irritating LimitationsAdvanced Custom Fields: Amazing Possibilities and Irritating Limitations
Advanced Custom Fields: Amazing Possibilities and Irritating Limitations
 
Build a Better Editing Experience with Advanced Custom Fields - #WCTO16
Build a Better Editing Experience with Advanced Custom Fields - #WCTO16Build a Better Editing Experience with Advanced Custom Fields - #WCTO16
Build a Better Editing Experience with Advanced Custom Fields - #WCTO16
 
Advanced Custom Fields - Beyond the Basics
Advanced Custom Fields - Beyond the BasicsAdvanced Custom Fields - Beyond the Basics
Advanced Custom Fields - Beyond the Basics
 

Similar to Advanced Custom Fields Plugin

Introduction to Advanced Custom Fields
Introduction to Advanced Custom FieldsIntroduction to Advanced Custom Fields
Introduction to Advanced Custom Fields
Zero Point Development
 
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
 
W pthemes
W pthemesW pthemes
W pthemes
Becky Davis
 
Wordcamp Fayetteville Pods Presentation (PDF)
Wordcamp Fayetteville Pods Presentation (PDF)Wordcamp Fayetteville Pods Presentation (PDF)
Wordcamp Fayetteville Pods Presentation (PDF)
mpvanwinkle
 
The Way to Theme Enlightenment
The Way to Theme EnlightenmentThe Way to Theme Enlightenment
The Way to Theme Enlightenment
Amanda Giles
 
Scaling Complexity in WordPress Enterprise Apps
Scaling Complexity in WordPress Enterprise AppsScaling Complexity in WordPress Enterprise Apps
Scaling Complexity in WordPress Enterprise Apps
Mike Schinkel
 
WordPress A CMS for Beginners, Geeks and Those In-Between
WordPress A CMS for Beginners, Geeks and Those In-BetweenWordPress A CMS for Beginners, Geeks and Those In-Between
WordPress A CMS for Beginners, Geeks and Those In-Between
Heidi Cool
 
Wp3 refresh pgh
Wp3 refresh pghWp3 refresh pgh
Wp3 refresh pgh
MrDirby
 
Wordcamp Fayetteville Pods Presentation (PPTX)
Wordcamp Fayetteville Pods Presentation (PPTX)Wordcamp Fayetteville Pods Presentation (PPTX)
Wordcamp Fayetteville Pods Presentation (PPTX)
mpvanwinkle
 
An Introduction to Custom Post Types
An Introduction to Custom Post TypesAn Introduction to Custom Post Types
An Introduction to Custom Post Types
Carleton Web Services
 
Spencer Nash - Advanced Custom Fields
Spencer Nash - Advanced Custom FieldsSpencer Nash - Advanced Custom Fields
Spencer Nash - Advanced Custom Fields
dominicj
 
2015 rubyconf - 百大媒體網站從 Wordpress 到 Rails 的大小事
2015 rubyconf - 百大媒體網站從 Wordpress 到 Rails 的大小事2015 rubyconf - 百大媒體網站從 Wordpress 到 Rails 的大小事
2015 rubyconf - 百大媒體網站從 Wordpress 到 Rails 的大小事
Ronald Hsu
 
Extending & Scaling | Dallas PHP
Extending & Scaling | Dallas PHPExtending & Scaling | Dallas PHP
Extending & Scaling | Dallas PHP
randyhoyt
 
The Way to Theme Enlightenment 2017
The Way to Theme Enlightenment 2017The Way to Theme Enlightenment 2017
The Way to Theme Enlightenment 2017
Amanda Giles
 
So, You Wanna Dev? Join the Team! - WordCamp Raleigh 2017
So, You Wanna Dev? Join the Team! - WordCamp Raleigh 2017 So, You Wanna Dev? Join the Team! - WordCamp Raleigh 2017
So, You Wanna Dev? Join the Team! - WordCamp Raleigh 2017
Evan Mullins
 
WordPress: A Designer's CMS
WordPress: A Designer's CMSWordPress: A Designer's CMS
WordPress: A Designer's CMS
Chelsea Otakan
 
Theming Wordpress with Adobe
Theming Wordpress with AdobeTheming Wordpress with Adobe
Theming Wordpress with Adobe
Grace Solivan
 
A WordPress website case study - Advanced Custom Fields
A WordPress website case study - Advanced Custom FieldsA WordPress website case study - Advanced Custom Fields
A WordPress website case study - Advanced Custom Fields
Peacock Carter Ltd
 
Word Press As A Cms
Word Press As A CmsWord Press As A Cms
Word Press As A Cms
Justin Sisley
 
Advancing Your Custom Fields - WordCamp 2014
Advancing Your Custom Fields - WordCamp 2014Advancing Your Custom Fields - WordCamp 2014
Advancing Your Custom Fields - WordCamp 2014
Carleton Web Services
 

Similar to Advanced Custom Fields Plugin (20)

Introduction to Advanced Custom Fields
Introduction to Advanced Custom FieldsIntroduction to Advanced Custom Fields
Introduction to Advanced Custom Fields
 
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...
 
W pthemes
W pthemesW pthemes
W pthemes
 
Wordcamp Fayetteville Pods Presentation (PDF)
Wordcamp Fayetteville Pods Presentation (PDF)Wordcamp Fayetteville Pods Presentation (PDF)
Wordcamp Fayetteville Pods Presentation (PDF)
 
The Way to Theme Enlightenment
The Way to Theme EnlightenmentThe Way to Theme Enlightenment
The Way to Theme Enlightenment
 
Scaling Complexity in WordPress Enterprise Apps
Scaling Complexity in WordPress Enterprise AppsScaling Complexity in WordPress Enterprise Apps
Scaling Complexity in WordPress Enterprise Apps
 
WordPress A CMS for Beginners, Geeks and Those In-Between
WordPress A CMS for Beginners, Geeks and Those In-BetweenWordPress A CMS for Beginners, Geeks and Those In-Between
WordPress A CMS for Beginners, Geeks and Those In-Between
 
Wp3 refresh pgh
Wp3 refresh pghWp3 refresh pgh
Wp3 refresh pgh
 
Wordcamp Fayetteville Pods Presentation (PPTX)
Wordcamp Fayetteville Pods Presentation (PPTX)Wordcamp Fayetteville Pods Presentation (PPTX)
Wordcamp Fayetteville Pods Presentation (PPTX)
 
An Introduction to Custom Post Types
An Introduction to Custom Post TypesAn Introduction to Custom Post Types
An Introduction to Custom Post Types
 
Spencer Nash - Advanced Custom Fields
Spencer Nash - Advanced Custom FieldsSpencer Nash - Advanced Custom Fields
Spencer Nash - Advanced Custom Fields
 
2015 rubyconf - 百大媒體網站從 Wordpress 到 Rails 的大小事
2015 rubyconf - 百大媒體網站從 Wordpress 到 Rails 的大小事2015 rubyconf - 百大媒體網站從 Wordpress 到 Rails 的大小事
2015 rubyconf - 百大媒體網站從 Wordpress 到 Rails 的大小事
 
Extending & Scaling | Dallas PHP
Extending & Scaling | Dallas PHPExtending & Scaling | Dallas PHP
Extending & Scaling | Dallas PHP
 
The Way to Theme Enlightenment 2017
The Way to Theme Enlightenment 2017The Way to Theme Enlightenment 2017
The Way to Theme Enlightenment 2017
 
So, You Wanna Dev? Join the Team! - WordCamp Raleigh 2017
So, You Wanna Dev? Join the Team! - WordCamp Raleigh 2017 So, You Wanna Dev? Join the Team! - WordCamp Raleigh 2017
So, You Wanna Dev? Join the Team! - WordCamp Raleigh 2017
 
WordPress: A Designer's CMS
WordPress: A Designer's CMSWordPress: A Designer's CMS
WordPress: A Designer's CMS
 
Theming Wordpress with Adobe
Theming Wordpress with AdobeTheming Wordpress with Adobe
Theming Wordpress with Adobe
 
A WordPress website case study - Advanced Custom Fields
A WordPress website case study - Advanced Custom FieldsA WordPress website case study - Advanced Custom Fields
A WordPress website case study - Advanced Custom Fields
 
Word Press As A Cms
Word Press As A CmsWord Press As A Cms
Word Press As A Cms
 
Advancing Your Custom Fields - WordCamp 2014
Advancing Your Custom Fields - WordCamp 2014Advancing Your Custom Fields - WordCamp 2014
Advancing Your Custom Fields - WordCamp 2014
 

Recently uploaded

Introduction of Cybersecurity with OSS at Code Europe 2024
Introduction of Cybersecurity with OSS  at Code Europe 2024Introduction of Cybersecurity with OSS  at Code Europe 2024
Introduction of Cybersecurity with OSS at Code Europe 2024
Hiroshi SHIBATA
 
June Patch Tuesday
June Patch TuesdayJune Patch Tuesday
June Patch Tuesday
Ivanti
 
Operating System Used by Users in day-to-day life.pptx
Operating System Used by Users in day-to-day life.pptxOperating System Used by Users in day-to-day life.pptx
Operating System Used by Users in day-to-day life.pptx
Pravash Chandra Das
 
Trusted Execution Environment for Decentralized Process Mining
Trusted Execution Environment for Decentralized Process MiningTrusted Execution Environment for Decentralized Process Mining
Trusted Execution Environment for Decentralized Process Mining
LucaBarbaro3
 
Skybuffer SAM4U tool for SAP license adoption
Skybuffer SAM4U tool for SAP license adoptionSkybuffer SAM4U tool for SAP license adoption
Skybuffer SAM4U tool for SAP license adoption
Tatiana Kojar
 
Deep Dive: Getting Funded with Jason Jason Lemkin Founder & CEO @ SaaStr
Deep Dive: Getting Funded with Jason Jason Lemkin Founder & CEO @ SaaStrDeep Dive: Getting Funded with Jason Jason Lemkin Founder & CEO @ SaaStr
Deep Dive: Getting Funded with Jason Jason Lemkin Founder & CEO @ SaaStr
saastr
 
System Design Case Study: Building a Scalable E-Commerce Platform - Hiike
System Design Case Study: Building a Scalable E-Commerce Platform - HiikeSystem Design Case Study: Building a Scalable E-Commerce Platform - Hiike
System Design Case Study: Building a Scalable E-Commerce Platform - Hiike
Hiike
 
Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development ProvidersYour One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
akankshawande
 
Best 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERPBest 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERP
Pixlogix Infotech
 
Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...
Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...
Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...
saastr
 
Azure API Management to expose backend services securely
Azure API Management to expose backend services securelyAzure API Management to expose backend services securely
Azure API Management to expose backend services securely
Dinusha Kumarasiri
 
Ocean lotus Threat actors project by John Sitima 2024 (1).pptx
Ocean lotus Threat actors project by John Sitima 2024 (1).pptxOcean lotus Threat actors project by John Sitima 2024 (1).pptx
Ocean lotus Threat actors project by John Sitima 2024 (1).pptx
SitimaJohn
 
Finale of the Year: Apply for Next One!
Finale of the Year: Apply for Next One!Finale of the Year: Apply for Next One!
Finale of the Year: Apply for Next One!
GDSC PJATK
 
Monitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdfMonitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdf
Tosin Akinosho
 
Energy Efficient Video Encoding for Cloud and Edge Computing Instances
Energy Efficient Video Encoding for Cloud and Edge Computing InstancesEnergy Efficient Video Encoding for Cloud and Edge Computing Instances
Energy Efficient Video Encoding for Cloud and Edge Computing Instances
Alpen-Adria-Universität
 
Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...
Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...
Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...
Jeffrey Haguewood
 
WeTestAthens: Postman's AI & Automation Techniques
WeTestAthens: Postman's AI & Automation TechniquesWeTestAthens: Postman's AI & Automation Techniques
WeTestAthens: Postman's AI & Automation Techniques
Postman
 
Recommendation System using RAG Architecture
Recommendation System using RAG ArchitectureRecommendation System using RAG Architecture
Recommendation System using RAG Architecture
fredae14
 
HCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAUHCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAU
panagenda
 
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with SlackLet's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
shyamraj55
 

Recently uploaded (20)

Introduction of Cybersecurity with OSS at Code Europe 2024
Introduction of Cybersecurity with OSS  at Code Europe 2024Introduction of Cybersecurity with OSS  at Code Europe 2024
Introduction of Cybersecurity with OSS at Code Europe 2024
 
June Patch Tuesday
June Patch TuesdayJune Patch Tuesday
June Patch Tuesday
 
Operating System Used by Users in day-to-day life.pptx
Operating System Used by Users in day-to-day life.pptxOperating System Used by Users in day-to-day life.pptx
Operating System Used by Users in day-to-day life.pptx
 
Trusted Execution Environment for Decentralized Process Mining
Trusted Execution Environment for Decentralized Process MiningTrusted Execution Environment for Decentralized Process Mining
Trusted Execution Environment for Decentralized Process Mining
 
Skybuffer SAM4U tool for SAP license adoption
Skybuffer SAM4U tool for SAP license adoptionSkybuffer SAM4U tool for SAP license adoption
Skybuffer SAM4U tool for SAP license adoption
 
Deep Dive: Getting Funded with Jason Jason Lemkin Founder & CEO @ SaaStr
Deep Dive: Getting Funded with Jason Jason Lemkin Founder & CEO @ SaaStrDeep Dive: Getting Funded with Jason Jason Lemkin Founder & CEO @ SaaStr
Deep Dive: Getting Funded with Jason Jason Lemkin Founder & CEO @ SaaStr
 
System Design Case Study: Building a Scalable E-Commerce Platform - Hiike
System Design Case Study: Building a Scalable E-Commerce Platform - HiikeSystem Design Case Study: Building a Scalable E-Commerce Platform - Hiike
System Design Case Study: Building a Scalable E-Commerce Platform - Hiike
 
Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development ProvidersYour One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
 
Best 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERPBest 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERP
 
Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...
Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...
Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...
 
Azure API Management to expose backend services securely
Azure API Management to expose backend services securelyAzure API Management to expose backend services securely
Azure API Management to expose backend services securely
 
Ocean lotus Threat actors project by John Sitima 2024 (1).pptx
Ocean lotus Threat actors project by John Sitima 2024 (1).pptxOcean lotus Threat actors project by John Sitima 2024 (1).pptx
Ocean lotus Threat actors project by John Sitima 2024 (1).pptx
 
Finale of the Year: Apply for Next One!
Finale of the Year: Apply for Next One!Finale of the Year: Apply for Next One!
Finale of the Year: Apply for Next One!
 
Monitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdfMonitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdf
 
Energy Efficient Video Encoding for Cloud and Edge Computing Instances
Energy Efficient Video Encoding for Cloud and Edge Computing InstancesEnergy Efficient Video Encoding for Cloud and Edge Computing Instances
Energy Efficient Video Encoding for Cloud and Edge Computing Instances
 
Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...
Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...
Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...
 
WeTestAthens: Postman's AI & Automation Techniques
WeTestAthens: Postman's AI & Automation TechniquesWeTestAthens: Postman's AI & Automation Techniques
WeTestAthens: Postman's AI & Automation Techniques
 
Recommendation System using RAG Architecture
Recommendation System using RAG ArchitectureRecommendation System using RAG Architecture
Recommendation System using RAG Architecture
 
HCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAUHCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAU
 
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with SlackLet's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
 

Advanced Custom Fields Plugin

  • 1. Advanced Custom Fields for theme tweaking goodness @thewebprincess #wpsyd @thewebprincess
  • 2. Advanced Custom Fields for theme tweaking goodness @thewebprincess #wpsyd @thewebprincess
  • 3. Advanced Custom Fields http://wordpress.org/extend/plugins/advanced-custom-fields/ #wpsyd @thewebprincess
  • 4. Advanced Custom Fields http://wordpress.org/extend/plugins/advanced-custom-fields/ Fully customise WordPress edit screens with powerful fields. - Wysiwyg, text, textarea, image, file, select, checkbox, page link, post object, date & colour picker - Community and Commercial addons for advanced fields. #wpsyd @thewebprincess
  • 5. Advanced Custom Fields http://wordpress.org/extend/plugins/advanced-custom-fields/ Fully customise WordPress edit screens with powerful fields. - Wysiwyg, text, textarea, image, file, select, checkbox, page link, post object, date & colour picker - Community and Commercial addons for advanced fields. Visually Create Fields & assign your fields to multiple edit pages (specific ID's, post types, slugs, template names & even options) #wpsyd @thewebprincess
  • 6. Advanced Custom Fields http://wordpress.org/extend/plugins/advanced-custom-fields/ Fully customise WordPress edit screens with powerful fields. - Wysiwyg, text, textarea, image, file, select, checkbox, page link, post object, date & colour picker - Community and Commercial addons for advanced fields. Visually Create Fields & assign your fields to multiple edit pages (specific ID's, post types, slugs, template names & even options) Repeater & Flexible Content Fields can replace other plugins (Gallery, Slider, FAQ, Related Posts, Podcasting, SEO, Attachments, H1, Sidebar Widgets) #wpsyd @thewebprincess
  • 7. Advanced Custom Fields http://wordpress.org/extend/plugins/advanced-custom-fields/ Fully customise WordPress edit screens with powerful fields. - Wysiwyg, text, textarea, image, file, select, checkbox, page link, post object, date & colour picker - Community and Commercial addons for advanced fields. Visually Create Fields & assign your fields to multiple edit pages (specific ID's, post types, slugs, template names & even options) Repeater & Flexible Content Fields can replace other plugins (Gallery, Slider, FAQ, Related Posts, Podcasting, SEO, Attachments, H1, Sidebar Widgets) Easy to integrate into a custom theme #wpsyd @thewebprincess
  • 8. Advanced Custom Fields http://wordpress.org/extend/plugins/advanced-custom-fields/ Fully customise WordPress edit screens with powerful fields. - Wysiwyg, text, textarea, image, file, select, checkbox, page link, post object, date & colour picker - Community and Commercial addons for advanced fields. Visually Create Fields & assign your fields to multiple edit pages (specific ID's, post types, slugs, template names & even options) Repeater & Flexible Content Fields can replace other plugins (Gallery, Slider, FAQ, Related Posts, Podcasting, SEO, Attachments, H1, Sidebar Widgets) Easy to integrate into a custom theme Ideal for complex page layouts & custom post types #wpsyd @thewebprincess
  • 9. Advanced Custom Fields http://wordpress.org/extend/plugins/advanced-custom-fields/ Fully customise WordPress edit screens with powerful fields. - Wysiwyg, text, textarea, image, file, select, checkbox, page link, post object, date & colour picker - Community and Commercial addons for advanced fields. Visually Create Fields & assign your fields to multiple edit pages (specific ID's, post types, slugs, template names & even options) Repeater & Flexible Content Fields can replace other plugins (Gallery, Slider, FAQ, Related Posts, Podcasting, SEO, Attachments, H1, Sidebar Widgets) Easy to integrate into a custom theme Ideal for complex page layouts & custom post types Free Plugin (with paid add ons) #wpsyd @thewebprincess
  • 10. Powerful Fields #wpsyd @thewebprincess
  • 11. Powerful Fields custom field types #wpsyd @thewebprincess
  • 12. Visually Create Fields #wpsyd @thewebprincess
  • 13. Visually Create Fields custom field types #wpsyd @thewebprincess
  • 14. Assign to virtually any Post Type #wpsyd @thewebprincess
  • 15. Assign to virtually any Post Type custom post types #wpsyd @thewebprincess
  • 16. Assign to virtually any Post Type #wpsyd @thewebprincess
  • 17. Repeater Fields #wpsyd @thewebprincess
  • 18. Repeater Fields #wpsyd @thewebprincess
  • 19. Repeater Fields #wpsyd @thewebprincess
  • 21. Easy Theme integration! Display the field = <?php get_field('field_name'); ?> #wpsyd @thewebprincess
  • 22. Easy Theme integration! Display the field = <?php get_field('field_name'); ?> Use field as Variable = <?php $variable = get_field('field_name'); // do something with $variable ?> #wpsyd @thewebprincess
  • 23. Easy Theme integration! Display the field = <?php get_field('field_name'); ?> Use field as Variable = <?php $variable = get_field('field_name'); // do something with $variable ?> As Conditionals = <?php if(get_field('field_name')) { echo '<p>' . get_field('field_name') . '</p>'; } ?> #wpsyd @thewebprincess
  • 24. Easy Theme integration! Display the field = <?php get_field('field_name'); ?> Use field as Variable = <?php $variable = get_field('field_name'); // do something with $variable ?> As Conditionals = <?php if(get_field('field_name')) { echo '<p>' . get_field('field_name') . '</p>'; } ?> And many more!! http://www.advancedcustomfields.com/docs/code-examples/ #wpsyd @thewebprincess
  • 25. Ideal for complicated post types #wpsyd @thewebprincess
  • 26. Ideal for complicated post types e.g. Classifed Ads for a business website #wpsyd @thewebprincess
  • 27. Ideal for complicated post types e.g. Classifed Ads for a business website Jobs, Events, Classfieds #wpsyd @thewebprincess
  • 28. Ideal for complicated post types e.g. Classifed Ads for a business website Jobs, Events, Classfieds Each has common advertiser content (advertiser details) and each has ad specific content (job/events/ad details). #wpsyd @thewebprincess
  • 29. Ideal for complicated post types e.g. Classifed Ads for a business website Jobs, Events, Classfieds Each has common advertiser content (advertiser details) and each has ad specific content (job/events/ad details). 1. Set up the Field Groups #wpsyd @thewebprincess
  • 30. Ideal for complicated post types e.g. Classifed Ads for a business website Jobs, Events, Classfieds Each has common advertiser content (advertiser details) and each has ad specific content (job/events/ad details). 1. Set up the Field Groups 2. Create the Templates (yes, and style them etc.) #wpsyd @thewebprincess
  • 31. Ideal for complicated post types e.g. Classifed Ads for a business website Jobs, Events, Classfieds Each has common advertiser content (advertiser details) and each has ad specific content (job/events/ad details). 1. Set up the Field Groups 2. Create the Templates (yes, and style them etc.) 3. Add Post Data #wpsyd @thewebprincess
  • 32. Ideal for complicated post types e.g. Classifed Ads for a business website Jobs, Events, Classfieds Each has common advertiser content (advertiser details) and each has ad specific content (job/events/ad details). 1. Set up the Field Groups 2. Create the Templates (yes, and style them etc.) 3. Add Post Data 4. Publish the results #wpsyd @thewebprincess
  • 33. Create the Field Groups/Fields #wpsyd @thewebprincess
  • 34. Create the Field Groups/Fields #wpsyd @thewebprincess
  • 35. Create the Templates #wpsyd @thewebprincess
  • 36. Enter the Data in the Post #wpsyd @thewebprincess
  • 37. Publish and View Results #wpsyd @thewebprincess
  • 38. That’s all folks Go forth and customise! #wpsyd @thewebprincess
  • 39. That’s all folks Go forth and customise! Twitter: @thewebprincess #wpsyd @thewebprincess
  • 40. That’s all folks Go forth and customise! Twitter: @thewebprincess Web: http://thewebprincess.com.au #wpsyd @thewebprincess
  • 41. That’s all folks Go forth and customise! Twitter: @thewebprincess Web: http://thewebprincess.com.au #wpsyd @thewebprincess
  • 42. That’s all folks Go forth and customise! Twitter: @thewebprincess Web: http://thewebprincess.com.au With thanks to Aaron Rutley at Eleven Media for the slideshow on which this one was built. #wpsyd @thewebprincess

Editor's Notes

  1. \n
  2. \n
  3. We&amp;#x2019;re going to do a quick run through of the benefits attached to using Elliot Condon&amp;#x2019;s Advanced Custom Fields plugin.\n
  4. We&amp;#x2019;re going to do a quick run through of the benefits attached to using Elliot Condon&amp;#x2019;s Advanced Custom Fields plugin.\n
  5. We&amp;#x2019;re going to do a quick run through of the benefits attached to using Elliot Condon&amp;#x2019;s Advanced Custom Fields plugin.\n
  6. We&amp;#x2019;re going to do a quick run through of the benefits attached to using Elliot Condon&amp;#x2019;s Advanced Custom Fields plugin.\n
  7. We&amp;#x2019;re going to do a quick run through of the benefits attached to using Elliot Condon&amp;#x2019;s Advanced Custom Fields plugin.\n
  8. We&amp;#x2019;re going to do a quick run through of the benefits attached to using Elliot Condon&amp;#x2019;s Advanced Custom Fields plugin.\n
  9. ACF gives you powerful field options to add almost any kind of custom field to your posts, pages, custom posts and other WordPress post types. \n
  10. ACF gives you powerful field options to add almost any kind of custom field to your posts, pages, custom posts and other WordPress post types. \n
  11. The editor is concise, and easy to follow with AJAX drag and drop functionality\n
  12. The editor is concise, and easy to follow with AJAX drag and drop functionality\n
  13. The editor is concise, and easy to follow with AJAX drag and drop functionality\n
  14. The editor is concise, and easy to follow with AJAX drag and drop functionality\n
  15. The editor is concise, and easy to follow with AJAX drag and drop functionality\n
  16. The editor is concise, and easy to follow with AJAX drag and drop functionality\n
  17. The editor is concise, and easy to follow with AJAX drag and drop functionality\n
  18. The editor is concise, and easy to follow with AJAX drag and drop functionality\n
  19. The editor is concise, and easy to follow with AJAX drag and drop functionality\n
  20. The editor is concise, and easy to follow with AJAX drag and drop functionality\n
  21. The editor is concise, and easy to follow with AJAX drag and drop functionality\n
  22. The editor is concise, and easy to follow with AJAX drag and drop functionality\n
  23. The editor is concise, and easy to follow with AJAX drag and drop functionality\n
  24. \n
  25. \n
  26. \n
  27. \n
  28. \n
  29. \n
  30. \n
  31. \n
  32. \n
  33. \n
  34. \n
  35. \n
  36. And the Stylesheets\n
  37. \n
  38. \n
  39. \n
  40. \n
  41. \n
  42. \n