SlideShare une entreprise Scribd logo
1  sur  60
Télécharger pour lire hors ligne
April 19, 2015
EastBayWP.com
Our Meetup.com Page
http://www.meetup.com/Eastbay-WordPress-Meetup/
Ongoing Sponsor: Page.ly
http://page.ly/
INTRODUCTIONS
1. Name
2. Company (if appropriate)
3. WordPress background
4. Favorite Premium Plugins
Advanced Custom Fields Pro
Amazing possibilities…
and a few limitations
What Is ACF?
• Intuitive UI for creating and managing
custom fields
• Free & Pro versions
• 20 field types
• Uses the_field(), get_field(),
the_sub_field(), and
get_sub_field() to retrieve field
content
• Shortcode: [acf
field="{$field_name}"]
http://www.advancedcustomfields.com/pro
Fields in Free Version
• Checkbox
• Color Picker
• Date Picker
• Google Map
• Image
• oEmbed
• Page Link
• Post Object
• Relationship
• Select
• Tab
• Taxonomy
• Text
• Textarea
• True/False
• Wysiwig Editor
Additional Fields in ACF Pro
The Repeater Field
The repeater field allows you to create a set of sub fields which can
be repeated again and again.
The Gallery Field
The gallery field provides a simple and intuitive interface for
managing a collection of images.
The Flexible Content Field
The flexible content field is a complete content layout manager.
Options Pages
All data saved on an options page is global and can be displayed on
any page.
How Much Does ACF Pro Cost?
One-time cost: $25 Personal, $100 Developer—Australian Dollars!
Create a Field Group
Select Field Group Location
You can choose to show your field groups
for pages, page templates, post types,
taxonomies, options pages, and widgets.
Set Field Group Options
This is handy if you want to hide the page/post
content editor when you display your fields.
Add Fields to Your Group
Display Your Fields
1. <?php
2. if(get_field('field_name')
) {
3. echo '<p>' .
get_field('field_name') .
'</p>';
4. }
5. ?>
CUSTOM HOME PAGE LAYOUT
Tutorial from Elliot Condon
Fields for this Layout
Entering the Content
Code for the Page Template
To see the code used to create this page
template in the Genesis Sample theme, go
to
http://acfdemo.rhymeswithsketch.com/co
de-for-condon-custom-page/
(There’s no way to show it in PowerPoint.)
CUSTOM HEADER RIGHT
CONTENT FOR PAGES
Tutorial from Sridhar Katakam
Add Field Group
Enter Header Right Content
This box appears below the main content
editor.
REPEATER FIELDS IN ACTION
Demonstrated on WP Fangirl
Create Field Group
Repeater Fields & Sub-Fields
Display Fields in Template
1. if(have_rows('premium_plugins')) {
2. echo '<h3 class="colophon">Premium
Plugins</h3>';
3. echo '<ul class="plugin-list">';
4. while(have_rows('premium_plugins')) {
5. the_row();
6. echo '<li><a
href="'.get_sub_field('premium_plugin_u
rl').'">'.
get_sub_field('premium_plugin_name')
.'</a></li>';
7. }
8. echo '</ul>';
9. }
DISPLAY ACF GALLERY AS SLIDER
Tutorial from Elliot Condon
Create a Gallery Field Group
Add Photos to Gallery
Upload images to the gallery field. These
are from Magdeleine.
Get FlexSlider.js
http://www.woothemes.com/flexslider/
Code Your Template
Updated instructions include proper
enqueuing of flexslider.js
Details at
http://acfdemo.rhymeswithsketch.com/gal
lery-slider-page-template-code/
PAGE WITH MAGNIFIC POPUP
GALLERY
Tutorial from Tribeswell.com
Get Magnific Files
Go to
http://dimsemenov.com/plugins/magnific-
popup/ and click “Build Tool”
Enqueue Magnific
1. function magnific_popup_files() {
2. wp_enqueue_style( 'magnific',
get_stylesheet_directory_uri() .
'/css/magnific-popup-gallery.css' );
3. wp_enqueue_script( 'magnific',
get_stylesheet_directory_uri()
.'/js/magnific-popup-
gallery.min.js', array('jquery'),
false, true );
4. }
5. add_action( 'wp_enqueue_scripts',
'magnific_popup_files' );
Create Page Template
1. <?php
2. /* Template Name: Page with Magnific Gallery */
3. add_action('genesis_entry_content', 'magnific_gallery_loop', 8);
4. function magnific_gallery_loop() {
5. $images = get_field('image_gallery');
6. if($images):
7. echo '<div class="popup-gallery">';
8. foreach( $images as $image ):
9. echo '<a href="'.$image['url'].'" class="lightbox-
link" title="'. $image['caption'].'" data-
description="'.$image['description'].'">';
10. echo '<div class="image-wrap"><img
src="'.$image['url'].'"></div></a>';
11. endforeach;
12. echo '</div>';
13. endif;
14. }
15. genesis();
Create Gallery Field Group
Or add existing gallery field group to new template.
Add Images to Gallery
Add Script to Page
• Put the JavaScript from the tutorial into
the “Script” metabox.
• Be sure to change “$” to “jQuery” for
non-conflict mode
Here’s Your Popup Lightbox
http://acfdemo.rhymeswithsketch.com/page-with-magnific-popup-gallery/
PAGE WITH CONTENT, WIDGET
AREA & FULL-WIDTH SECTIONS
Tutorial from Sridhar Katakam
Create Field Group
This page uses one flexible content field
with multiple layouts.
Add Page Content
HERO / CHECKERBOARD PAGE
Tutorial from Sridhar Katakam
Create Field Group
• Location
• Options
• Flexible Content
– Hero Layout
– Text-Image Layout
– Image-Text Layout
Location & Options
Flexible Content: Hero
Includes image, text , CTA Button Display,
CTA button URL, CTA button text
Text-Image & Image-Text
Entering Content
Layouts Don’t Style Themselves
You need to write CSS for things like
• Making section full-width
• Hero image stretch display
• Overlay for the hero image
• Positioning of hero text over image
• Color of hero text
• Width of Image & Text sections
FRONT-END POSTING & EDITING
Tutorial from The Stiz Media
Create Field Groups
Note Field Group IDs
This field group has an ID of 130, but
yours will be different.
Get Field Keys
Add Field Group IDs to Template
This is where you need to enter your own
field group IDs.
Add Field Keys to Template
Replace the keys shown in the demo
template with your own.
(Full template is too long to show.)
Apply Template to a Page
Content that you
add in the content
editor will appear
above the posting
form.
Fill Out the Posting Form
Voila! A Post
Just a Few Caveats
• ACF does not replace custom post types,
but it works well with them.
• Retrieving field data is harder than
retrieving CPT content.
• Fields created by ACF are stored either
in the post_meta table or the
wp_options table.
• You can’t search on custom fields
About the Presenter
Sallie Goetsch
(rhymes with ‘sketch’)
Got online in 1985. Started
building websites in 1995.
Discovered WordPress in 2005.
Organizer of the East Bay
WordPress Meetup.
@salliegoetsch
salliegoetsch
http://wpfangirl.com
510-969-9947

Contenu connexe

Tendances

Website hosting
Website hostingWebsite hosting
Website hostingehnlive
 
WordPress 101 wcmelb 2013
WordPress 101 wcmelb 2013WordPress 101 wcmelb 2013
WordPress 101 wcmelb 2013Warren Denley
 
Exploring the WordPress Dashboard and How to Pick & Install Plugins
Exploring the WordPress Dashboard and How to Pick & Install PluginsExploring the WordPress Dashboard and How to Pick & Install Plugins
Exploring the WordPress Dashboard and How to Pick & Install PluginsRich Plakas
 
WordPress Theme Structure
WordPress Theme StructureWordPress Theme Structure
WordPress Theme Structurekeithdevon
 
Building a website with WordPress
Building a website with WordPressBuilding a website with WordPress
Building a website with WordPressAnthony Montalbano
 
WordPress Edmonton - Visual Composer
WordPress Edmonton - Visual ComposerWordPress Edmonton - Visual Composer
WordPress Edmonton - Visual ComposerKihya McComb
 
Wordpress as a CMS - WordCampNOLA
Wordpress as a CMS - WordCampNOLAWordpress as a CMS - WordCampNOLA
Wordpress as a CMS - WordCampNOLAMarc Juneau
 
WordPress Theme Development Basics
WordPress Theme Development BasicsWordPress Theme Development Basics
WordPress Theme Development BasicsTech Liminal
 
How to Prepare a WordPress Theme for Public Release
How to Prepare a WordPress Theme for Public ReleaseHow to Prepare a WordPress Theme for Public Release
How to Prepare a WordPress Theme for Public ReleaseDavid Yeiser
 
Getting to Know WordPress May 2015
Getting to Know WordPress May 2015Getting to Know WordPress May 2015
Getting to Know WordPress May 2015Anthony Hortin
 
Create a stunning, mobile friendly business website with the divi theme
Create a stunning, mobile friendly business website with the divi themeCreate a stunning, mobile friendly business website with the divi theme
Create a stunning, mobile friendly business website with the divi themeMichelle Castillo
 
Wordpress theme submission requirement for Themeforest
Wordpress theme submission requirement for ThemeforestWordpress theme submission requirement for Themeforest
Wordpress theme submission requirement for ThemeforestEnayet Rajib
 
Drag-and-drop WordPress Themes, featuring Themify Builder
Drag-and-drop WordPress Themes, featuring Themify BuilderDrag-and-drop WordPress Themes, featuring Themify Builder
Drag-and-drop WordPress Themes, featuring Themify BuilderEast Bay WordPress Meetup
 
Digital Marketing Tools
Digital Marketing ToolsDigital Marketing Tools
Digital Marketing ToolsSal Frosceno
 
Theme Wrangling 101
Theme Wrangling 101Theme Wrangling 101
Theme Wrangling 101mikeyarce
 
Every Artist needs a Great Website: Getting Started with WordPress
Every Artist needs a Great Website: Getting Started with WordPressEvery Artist needs a Great Website: Getting Started with WordPress
Every Artist needs a Great Website: Getting Started with WordPressRuth Maude
 
Adding Content to your WordPress Website
Adding Content to your WordPress WebsiteAdding Content to your WordPress Website
Adding Content to your WordPress WebsiteRiceDesign
 
Grow Beyond Posts & Pages: Introduction to the Pods Framework, a Content Mana...
Grow Beyond Posts & Pages: Introduction to the Pods Framework, a Content Mana...Grow Beyond Posts & Pages: Introduction to the Pods Framework, a Content Mana...
Grow Beyond Posts & Pages: Introduction to the Pods Framework, a Content Mana...podsframework
 
Creating a Website with WordPress.org
Creating a Website with WordPress.orgCreating a Website with WordPress.org
Creating a Website with WordPress.orgEileen Lonergan
 
Setting up a blog with WordPress.com Jan 2014 Class
Setting up a blog with WordPress.com Jan 2014 ClassSetting up a blog with WordPress.com Jan 2014 Class
Setting up a blog with WordPress.com Jan 2014 ClassEileen Lonergan
 

Tendances (20)

Website hosting
Website hostingWebsite hosting
Website hosting
 
WordPress 101 wcmelb 2013
WordPress 101 wcmelb 2013WordPress 101 wcmelb 2013
WordPress 101 wcmelb 2013
 
Exploring the WordPress Dashboard and How to Pick & Install Plugins
Exploring the WordPress Dashboard and How to Pick & Install PluginsExploring the WordPress Dashboard and How to Pick & Install Plugins
Exploring the WordPress Dashboard and How to Pick & Install Plugins
 
WordPress Theme Structure
WordPress Theme StructureWordPress Theme Structure
WordPress Theme Structure
 
Building a website with WordPress
Building a website with WordPressBuilding a website with WordPress
Building a website with WordPress
 
WordPress Edmonton - Visual Composer
WordPress Edmonton - Visual ComposerWordPress Edmonton - Visual Composer
WordPress Edmonton - Visual Composer
 
Wordpress as a CMS - WordCampNOLA
Wordpress as a CMS - WordCampNOLAWordpress as a CMS - WordCampNOLA
Wordpress as a CMS - WordCampNOLA
 
WordPress Theme Development Basics
WordPress Theme Development BasicsWordPress Theme Development Basics
WordPress Theme Development Basics
 
How to Prepare a WordPress Theme for Public Release
How to Prepare a WordPress Theme for Public ReleaseHow to Prepare a WordPress Theme for Public Release
How to Prepare a WordPress Theme for Public Release
 
Getting to Know WordPress May 2015
Getting to Know WordPress May 2015Getting to Know WordPress May 2015
Getting to Know WordPress May 2015
 
Create a stunning, mobile friendly business website with the divi theme
Create a stunning, mobile friendly business website with the divi themeCreate a stunning, mobile friendly business website with the divi theme
Create a stunning, mobile friendly business website with the divi theme
 
Wordpress theme submission requirement for Themeforest
Wordpress theme submission requirement for ThemeforestWordpress theme submission requirement for Themeforest
Wordpress theme submission requirement for Themeforest
 
Drag-and-drop WordPress Themes, featuring Themify Builder
Drag-and-drop WordPress Themes, featuring Themify BuilderDrag-and-drop WordPress Themes, featuring Themify Builder
Drag-and-drop WordPress Themes, featuring Themify Builder
 
Digital Marketing Tools
Digital Marketing ToolsDigital Marketing Tools
Digital Marketing Tools
 
Theme Wrangling 101
Theme Wrangling 101Theme Wrangling 101
Theme Wrangling 101
 
Every Artist needs a Great Website: Getting Started with WordPress
Every Artist needs a Great Website: Getting Started with WordPressEvery Artist needs a Great Website: Getting Started with WordPress
Every Artist needs a Great Website: Getting Started with WordPress
 
Adding Content to your WordPress Website
Adding Content to your WordPress WebsiteAdding Content to your WordPress Website
Adding Content to your WordPress Website
 
Grow Beyond Posts & Pages: Introduction to the Pods Framework, a Content Mana...
Grow Beyond Posts & Pages: Introduction to the Pods Framework, a Content Mana...Grow Beyond Posts & Pages: Introduction to the Pods Framework, a Content Mana...
Grow Beyond Posts & Pages: Introduction to the Pods Framework, a Content Mana...
 
Creating a Website with WordPress.org
Creating a Website with WordPress.orgCreating a Website with WordPress.org
Creating a Website with WordPress.org
 
Setting up a blog with WordPress.com Jan 2014 Class
Setting up a blog with WordPress.com Jan 2014 ClassSetting up a blog with WordPress.com Jan 2014 Class
Setting up a blog with WordPress.com Jan 2014 Class
 

En vedette

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 - #WCTO16Jeseph Meyers
 
A Freelancer's Guide To Handling Difficult Clients
A Freelancer's Guide To Handling Difficult ClientsA Freelancer's Guide To Handling Difficult Clients
A Freelancer's Guide To Handling Difficult ClientsDamon Schopen
 
Hardcore URL Routing for WordPress - WordCamp Atlanta 2014
Hardcore URL Routing for WordPress - WordCamp Atlanta 2014Hardcore URL Routing for WordPress - WordCamp Atlanta 2014
Hardcore URL Routing for WordPress - WordCamp Atlanta 2014Mike Schinkel
 
Goodbye Keyword Optimization, Hello Topical Optimization
Goodbye Keyword Optimization, Hello Topical OptimizationGoodbye Keyword Optimization, Hello Topical Optimization
Goodbye Keyword Optimization, Hello Topical OptimizationStoney deGeyter
 
Dificultad de determinar la partida arancelaria para la exportación de prenda...
Dificultad de determinar la partida arancelaria para la exportación de prenda...Dificultad de determinar la partida arancelaria para la exportación de prenda...
Dificultad de determinar la partida arancelaria para la exportación de prenda...Mitzi Linares Vizcarra
 
Ako zvýšiť návštevnosť na blogu - Fabulous by xKatka
Ako zvýšiť návštevnosť na blogu - Fabulous by xKatkaAko zvýšiť návštevnosť na blogu - Fabulous by xKatka
Ako zvýšiť návštevnosť na blogu - Fabulous by xKatkaKatarina Novotna
 
Beginner's Guide to Creating an Epic Blog
Beginner's Guide to Creating an Epic BlogBeginner's Guide to Creating an Epic Blog
Beginner's Guide to Creating an Epic BlogStoney deGeyter
 
Contact Forms are Boring - 5 Creative Ways to Use Forms in WordPress
Contact Forms are Boring - 5 Creative Ways to Use Forms in WordPressContact Forms are Boring - 5 Creative Ways to Use Forms in WordPress
Contact Forms are Boring - 5 Creative Ways to Use Forms in WordPressAdam W. Warner
 
[Farag fouda] kebenaran_yang_hilang_sisi_kelam_pr(book_fi.org)
[Farag fouda] kebenaran_yang_hilang_sisi_kelam_pr(book_fi.org)[Farag fouda] kebenaran_yang_hilang_sisi_kelam_pr(book_fi.org)
[Farag fouda] kebenaran_yang_hilang_sisi_kelam_pr(book_fi.org)Andang Prasetya
 
How To See Through Your Business’s Blind Spots
How To See Through Your Business’s Blind Spots   How To See Through Your Business’s Blind Spots
How To See Through Your Business’s Blind Spots Rachel Magario, MBA
 
Carlos reyes investigacion-accion_31052016
Carlos reyes investigacion-accion_31052016Carlos reyes investigacion-accion_31052016
Carlos reyes investigacion-accion_31052016Carlos Reyes
 
Shortcut Your Way to Success: Essential WordPress Plugins for Podcasters
Shortcut Your Way to Success: Essential WordPress Plugins for PodcastersShortcut Your Way to Success: Essential WordPress Plugins for Podcasters
Shortcut Your Way to Success: Essential WordPress Plugins for PodcastersDustin Hartzler
 

En vedette (20)

Vane y cata 9 2
Vane y cata 9 2Vane y cata 9 2
Vane y cata 9 2
 
Nationality words
Nationality wordsNationality words
Nationality words
 
Sistemas en WordPress: WPDB, Ajax, custom fields y otras magias
Sistemas en WordPress: WPDB, Ajax, custom fields y otras magiasSistemas en WordPress: WPDB, Ajax, custom fields y otras magias
Sistemas en WordPress: WPDB, Ajax, custom fields y otras magias
 
Jec1
Jec1 Jec1
Jec1
 
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
 
Website Redesign A-Z
Website Redesign A-ZWebsite Redesign A-Z
Website Redesign A-Z
 
Economia
EconomiaEconomia
Economia
 
A Freelancer's Guide To Handling Difficult Clients
A Freelancer's Guide To Handling Difficult ClientsA Freelancer's Guide To Handling Difficult Clients
A Freelancer's Guide To Handling Difficult Clients
 
Akeda bagus
Akeda bagusAkeda bagus
Akeda bagus
 
Hardcore URL Routing for WordPress - WordCamp Atlanta 2014
Hardcore URL Routing for WordPress - WordCamp Atlanta 2014Hardcore URL Routing for WordPress - WordCamp Atlanta 2014
Hardcore URL Routing for WordPress - WordCamp Atlanta 2014
 
My christmas
My christmasMy christmas
My christmas
 
Goodbye Keyword Optimization, Hello Topical Optimization
Goodbye Keyword Optimization, Hello Topical OptimizationGoodbye Keyword Optimization, Hello Topical Optimization
Goodbye Keyword Optimization, Hello Topical Optimization
 
Dificultad de determinar la partida arancelaria para la exportación de prenda...
Dificultad de determinar la partida arancelaria para la exportación de prenda...Dificultad de determinar la partida arancelaria para la exportación de prenda...
Dificultad de determinar la partida arancelaria para la exportación de prenda...
 
Ako zvýšiť návštevnosť na blogu - Fabulous by xKatka
Ako zvýšiť návštevnosť na blogu - Fabulous by xKatkaAko zvýšiť návštevnosť na blogu - Fabulous by xKatka
Ako zvýšiť návštevnosť na blogu - Fabulous by xKatka
 
Beginner's Guide to Creating an Epic Blog
Beginner's Guide to Creating an Epic BlogBeginner's Guide to Creating an Epic Blog
Beginner's Guide to Creating an Epic Blog
 
Contact Forms are Boring - 5 Creative Ways to Use Forms in WordPress
Contact Forms are Boring - 5 Creative Ways to Use Forms in WordPressContact Forms are Boring - 5 Creative Ways to Use Forms in WordPress
Contact Forms are Boring - 5 Creative Ways to Use Forms in WordPress
 
[Farag fouda] kebenaran_yang_hilang_sisi_kelam_pr(book_fi.org)
[Farag fouda] kebenaran_yang_hilang_sisi_kelam_pr(book_fi.org)[Farag fouda] kebenaran_yang_hilang_sisi_kelam_pr(book_fi.org)
[Farag fouda] kebenaran_yang_hilang_sisi_kelam_pr(book_fi.org)
 
How To See Through Your Business’s Blind Spots
How To See Through Your Business’s Blind Spots   How To See Through Your Business’s Blind Spots
How To See Through Your Business’s Blind Spots
 
Carlos reyes investigacion-accion_31052016
Carlos reyes investigacion-accion_31052016Carlos reyes investigacion-accion_31052016
Carlos reyes investigacion-accion_31052016
 
Shortcut Your Way to Success: Essential WordPress Plugins for Podcasters
Shortcut Your Way to Success: Essential WordPress Plugins for PodcastersShortcut Your Way to Success: Essential WordPress Plugins for Podcasters
Shortcut Your Way to Success: Essential WordPress Plugins for Podcasters
 

Similaire à Advanced Custom Fields: Amazing Possibilities and Irritating Limitations

Advanced Custom Fields - Flexible Content
Advanced Custom Fields - Flexible ContentAdvanced Custom Fields - Flexible Content
Advanced Custom Fields - Flexible ContentNorm Euker
 
Introduction to Advanced Custom Fields
Introduction to Advanced Custom FieldsIntroduction to Advanced Custom Fields
Introduction to Advanced Custom FieldsAnthony Hortin
 
Ultimate Guide to Advanced Custom Fields
Ultimate Guide to Advanced Custom FieldsUltimate Guide to Advanced Custom Fields
Ultimate Guide to Advanced Custom FieldsAndrew Marks
 
Custom Fields in Joomla - JoomlaDay UK 2016 - Marco Dings
Custom Fields in Joomla - JoomlaDay UK 2016 - Marco DingsCustom Fields in Joomla - JoomlaDay UK 2016 - Marco Dings
Custom Fields in Joomla - JoomlaDay UK 2016 - Marco DingsRuth Cheesley
 
WCUK2013 - ACF Flexible Content and other cool stuff
WCUK2013 - ACF Flexible Content and other cool stuffWCUK2013 - ACF Flexible Content and other cool stuff
WCUK2013 - ACF Flexible Content and other cool stuffKirsty Burgoine
 
Building Potent WordPress Websites
Building Potent WordPress WebsitesBuilding Potent WordPress Websites
Building Potent WordPress WebsitesKyle Cearley
 
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 FieldsJamie Schmid
 
Wordpress beyond blogging
Wordpress beyond bloggingWordpress beyond blogging
Wordpress beyond bloggingJulien Minguely
 
WordCamp ABQ 2013: Making the leap from Designer to Designer/Developer
WordCamp ABQ 2013: Making the leap from Designer to Designer/DeveloperWordCamp ABQ 2013: Making the leap from Designer to Designer/Developer
WordCamp ABQ 2013: Making the leap from Designer to Designer/Developermy easel
 
Introduction to Advanced Custom Fields
Introduction to Advanced Custom FieldsIntroduction to Advanced Custom Fields
Introduction to Advanced Custom FieldsZero Point Development
 
Wordpress workflow for an agency world
Wordpress workflow for an agency worldWordpress workflow for an agency world
Wordpress workflow for an agency worldChris Lowe
 
Advanced Custom Fields - WordPress North East
Advanced Custom Fields - WordPress North EastAdvanced Custom Fields - WordPress North East
Advanced Custom Fields - WordPress North EastPeacock Carter Ltd
 
Spencer Nash - Advanced Custom Fields
Spencer Nash - Advanced Custom FieldsSpencer Nash - Advanced Custom Fields
Spencer Nash - Advanced Custom Fieldsdominicj
 
Brand Your Community Using Less and Gulp
Brand Your Community Using Less and GulpBrand Your Community Using Less and Gulp
Brand Your Community Using Less and Gulpshujiui
 
Content Architecture
Content ArchitectureContent Architecture
Content ArchitectureDara Pressley
 
Accomplish It With Core: Sliders, Galleries and More
Accomplish It With Core: Sliders, Galleries and MoreAccomplish It With Core: Sliders, Galleries and More
Accomplish It With Core: Sliders, Galleries and MoreAndy Stratton
 
Newbies guide to customizing word press themes 25
Newbies guide to customizing word press themes 25Newbies guide to customizing word press themes 25
Newbies guide to customizing word press themes 25New Tricks
 

Similaire à Advanced Custom Fields: Amazing Possibilities and Irritating Limitations (20)

Advanced Custom Fields - Flexible Content
Advanced Custom Fields - Flexible ContentAdvanced Custom Fields - Flexible Content
Advanced Custom Fields - Flexible Content
 
Introduction to Advanced Custom Fields
Introduction to Advanced Custom FieldsIntroduction to Advanced Custom Fields
Introduction to Advanced Custom Fields
 
Ultimate Guide to Advanced Custom Fields
Ultimate Guide to Advanced Custom FieldsUltimate Guide to Advanced Custom Fields
Ultimate Guide to Advanced Custom Fields
 
Custom Fields in Joomla - JoomlaDay UK 2016 - Marco Dings
Custom Fields in Joomla - JoomlaDay UK 2016 - Marco DingsCustom Fields in Joomla - JoomlaDay UK 2016 - Marco Dings
Custom Fields in Joomla - JoomlaDay UK 2016 - Marco Dings
 
WCUK2013 - ACF Flexible Content and other cool stuff
WCUK2013 - ACF Flexible Content and other cool stuffWCUK2013 - ACF Flexible Content and other cool stuff
WCUK2013 - ACF Flexible Content and other cool stuff
 
Building Potent WordPress Websites
Building Potent WordPress WebsitesBuilding Potent WordPress Websites
Building Potent WordPress Websites
 
Custom Fields & Custom Metaboxes Overview
Custom Fields & Custom Metaboxes OverviewCustom Fields & Custom Metaboxes Overview
Custom Fields & Custom Metaboxes Overview
 
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
 
Wordpress beyond blogging
Wordpress beyond bloggingWordpress beyond blogging
Wordpress beyond blogging
 
WordCamp ABQ 2013: Making the leap from Designer to Designer/Developer
WordCamp ABQ 2013: Making the leap from Designer to Designer/DeveloperWordCamp ABQ 2013: Making the leap from Designer to Designer/Developer
WordCamp ABQ 2013: Making the leap from Designer to Designer/Developer
 
Introduction to Advanced Custom Fields
Introduction to Advanced Custom FieldsIntroduction to Advanced Custom Fields
Introduction to Advanced Custom Fields
 
Wordpress workflow for an agency world
Wordpress workflow for an agency worldWordpress workflow for an agency world
Wordpress workflow for an agency world
 
Advanced Custom Fields - WordPress North East
Advanced Custom Fields - WordPress North EastAdvanced Custom Fields - WordPress North East
Advanced Custom Fields - WordPress North East
 
Getting a Quick Start with Visualforce
Getting a Quick Start with Visualforce Getting a Quick Start with Visualforce
Getting a Quick Start with Visualforce
 
Spencer Nash - Advanced Custom Fields
Spencer Nash - Advanced Custom FieldsSpencer Nash - Advanced Custom Fields
Spencer Nash - Advanced Custom Fields
 
Brand Your Community Using Less and Gulp
Brand Your Community Using Less and GulpBrand Your Community Using Less and Gulp
Brand Your Community Using Less and Gulp
 
Content Architecture
Content ArchitectureContent Architecture
Content Architecture
 
Accomplish It With Core: Sliders, Galleries and More
Accomplish It With Core: Sliders, Galleries and MoreAccomplish It With Core: Sliders, Galleries and More
Accomplish It With Core: Sliders, Galleries and More
 
Newbies guide to customizing word press themes 25
Newbies guide to customizing word press themes 25Newbies guide to customizing word press themes 25
Newbies guide to customizing word press themes 25
 
TopicHero Descriptions Tutorial
TopicHero Descriptions TutorialTopicHero Descriptions Tutorial
TopicHero Descriptions Tutorial
 

Plus de East Bay WordPress Meetup

How to Develop a Color Palette for Your Website with Amanada McCoy
How to Develop a Color Palette for Your Website with Amanada McCoyHow to Develop a Color Palette for Your Website with Amanada McCoy
How to Develop a Color Palette for Your Website with Amanada McCoyEast Bay WordPress Meetup
 
Beyond Gravity Forms: Form Plugins for WordPress
Beyond Gravity Forms: Form Plugins for WordPressBeyond Gravity Forms: Form Plugins for WordPress
Beyond Gravity Forms: Form Plugins for WordPressEast Bay WordPress Meetup
 
Git Version Control for the Complete N00b by Adam LaBarge
Git Version Control for the Complete N00b by Adam LaBargeGit Version Control for the Complete N00b by Adam LaBarge
Git Version Control for the Complete N00b by Adam LaBargeEast Bay WordPress Meetup
 
Rob La Gatta; Making the Events Calendar Sit Up and Beg
Rob La Gatta; Making the Events Calendar Sit Up and BegRob La Gatta; Making the Events Calendar Sit Up and Beg
Rob La Gatta; Making the Events Calendar Sit Up and BegEast Bay WordPress Meetup
 
Introduction to Google Analytics by Katherine Mancuso
Introduction to Google Analytics by Katherine MancusoIntroduction to Google Analytics by Katherine Mancuso
Introduction to Google Analytics by Katherine MancusoEast Bay WordPress Meetup
 
iThemes Exchange: the New Kid on the WordPress E-Commerce Block
iThemes Exchange: the New Kid on the WordPress E-Commerce BlockiThemes Exchange: the New Kid on the WordPress E-Commerce Block
iThemes Exchange: the New Kid on the WordPress E-Commerce BlockEast Bay WordPress Meetup
 
What Developers Need Designers to Know about WordPress
What Developers Need Designers to Know about WordPressWhat Developers Need Designers to Know about WordPress
What Developers Need Designers to Know about WordPressEast Bay WordPress Meetup
 

Plus de East Bay WordPress Meetup (20)

How to Conduct an SEO Audit
How to Conduct an SEO AuditHow to Conduct an SEO Audit
How to Conduct an SEO Audit
 
WordPress Membership Plugins: WP-Members
WordPress Membership Plugins: WP-MembersWordPress Membership Plugins: WP-Members
WordPress Membership Plugins: WP-Members
 
WordPress Membership Plugins: MemberPress
WordPress Membership Plugins: MemberPress WordPress Membership Plugins: MemberPress
WordPress Membership Plugins: MemberPress
 
How to Develop a Color Palette for Your Website with Amanada McCoy
How to Develop a Color Palette for Your Website with Amanada McCoyHow to Develop a Color Palette for Your Website with Amanada McCoy
How to Develop a Color Palette for Your Website with Amanada McCoy
 
Event Management Plugins for WordPress
Event Management Plugins for WordPressEvent Management Plugins for WordPress
Event Management Plugins for WordPress
 
Beyond Gravity Forms: Form Plugins for WordPress
Beyond Gravity Forms: Form Plugins for WordPressBeyond Gravity Forms: Form Plugins for WordPress
Beyond Gravity Forms: Form Plugins for WordPress
 
Is Your (Client's) Website Ready for 2017?
Is Your (Client's) Website Ready for 2017?Is Your (Client's) Website Ready for 2017?
Is Your (Client's) Website Ready for 2017?
 
Git Version Control for the Complete N00b by Adam LaBarge
Git Version Control for the Complete N00b by Adam LaBargeGit Version Control for the Complete N00b by Adam LaBarge
Git Version Control for the Complete N00b by Adam LaBarge
 
Making WordPress Easier to Use
Making WordPress Easier to UseMaking WordPress Easier to Use
Making WordPress Easier to Use
 
WordPress Comments (November Meetup)
WordPress Comments (November Meetup)WordPress Comments (November Meetup)
WordPress Comments (November Meetup)
 
Rob La Gatta; Making the Events Calendar Sit Up and Beg
Rob La Gatta; Making the Events Calendar Sit Up and BegRob La Gatta; Making the Events Calendar Sit Up and Beg
Rob La Gatta; Making the Events Calendar Sit Up and Beg
 
Google Webmaster Tools for WordPress
Google Webmaster Tools for WordPressGoogle Webmaster Tools for WordPress
Google Webmaster Tools for WordPress
 
Introduction to Google Analytics by Katherine Mancuso
Introduction to Google Analytics by Katherine MancusoIntroduction to Google Analytics by Katherine Mancuso
Introduction to Google Analytics by Katherine Mancuso
 
iThemes Exchange: the New Kid on the WordPress E-Commerce Block
iThemes Exchange: the New Kid on the WordPress E-Commerce BlockiThemes Exchange: the New Kid on the WordPress E-Commerce Block
iThemes Exchange: the New Kid on the WordPress E-Commerce Block
 
Running a WordPress Business--Some Numbers
Running a WordPress Business--Some NumbersRunning a WordPress Business--Some Numbers
Running a WordPress Business--Some Numbers
 
What Developers Need Designers to Know about WordPress
What Developers Need Designers to Know about WordPressWhat Developers Need Designers to Know about WordPress
What Developers Need Designers to Know about WordPress
 
Making WordPress Fly
Making WordPress FlyMaking WordPress Fly
Making WordPress Fly
 
Drag and-Drop WordPress Themes
Drag and-Drop WordPress ThemesDrag and-Drop WordPress Themes
Drag and-Drop WordPress Themes
 
Fun with WooCommerce
Fun with WooCommerceFun with WooCommerce
Fun with WooCommerce
 
Managed WordPress Hosting
Managed WordPress HostingManaged WordPress Hosting
Managed WordPress Hosting
 

Dernier

Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...Sheetaleventcompany
 
Real Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirtReal Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirtrahman018755
 
VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...
VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...
VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...SUHANI PANDEY
 
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...SUHANI PANDEY
 
(+971568250507 ))# Young Call Girls in Ajman By Pakistani Call Girls in ...
(+971568250507  ))#  Young Call Girls  in Ajman  By Pakistani Call Girls  in ...(+971568250507  ))#  Young Call Girls  in Ajman  By Pakistani Call Girls  in ...
(+971568250507 ))# Young Call Girls in Ajman By Pakistani Call Girls in ...Escorts Call Girls
 
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark WebGDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark WebJames Anderson
 
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...
𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...
𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...Neha Pandey
 
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...SUHANI PANDEY
 
Call Now ☎ 8264348440 !! Call Girls in Rani Bagh Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Rani Bagh Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Rani Bagh Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Rani Bagh Escort Service Delhi N.C.R.soniya singh
 
Russian Call girl in Ajman +971563133746 Ajman Call girl Service
Russian Call girl in Ajman +971563133746 Ajman Call girl ServiceRussian Call girl in Ajman +971563133746 Ajman Call girl Service
Russian Call girl in Ajman +971563133746 Ajman Call girl Servicegwenoracqe6
 
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...APNIC
 
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...Delhi Call girls
 
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls DubaiDubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubaikojalkojal131
 
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024APNIC
 

Dernier (20)

Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
 
Real Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirtReal Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirt
 
VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...
VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...
VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...
 
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
 
(+971568250507 ))# Young Call Girls in Ajman By Pakistani Call Girls in ...
(+971568250507  ))#  Young Call Girls  in Ajman  By Pakistani Call Girls  in ...(+971568250507  ))#  Young Call Girls  in Ajman  By Pakistani Call Girls  in ...
(+971568250507 ))# Young Call Girls in Ajman By Pakistani Call Girls in ...
 
Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...
Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...
Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...
 
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
 
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark WebGDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
 
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
 
Russian Call Girls in %(+971524965298 )# Call Girls in Dubai
Russian Call Girls in %(+971524965298  )#  Call Girls in DubaiRussian Call Girls in %(+971524965298  )#  Call Girls in Dubai
Russian Call Girls in %(+971524965298 )# Call Girls in Dubai
 
𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...
𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...
𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...
 
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
 
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
 
Call Now ☎ 8264348440 !! Call Girls in Rani Bagh Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Rani Bagh Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Rani Bagh Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Rani Bagh Escort Service Delhi N.C.R.
 
Russian Call girl in Ajman +971563133746 Ajman Call girl Service
Russian Call girl in Ajman +971563133746 Ajman Call girl ServiceRussian Call girl in Ajman +971563133746 Ajman Call girl Service
Russian Call girl in Ajman +971563133746 Ajman Call girl Service
 
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
 
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
 
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls DubaiDubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
 
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
 
valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
 

Advanced Custom Fields: Amazing Possibilities and Irritating Limitations

  • 5. INTRODUCTIONS 1. Name 2. Company (if appropriate) 3. WordPress background 4. Favorite Premium Plugins
  • 6. Advanced Custom Fields Pro Amazing possibilities… and a few limitations
  • 7. What Is ACF? • Intuitive UI for creating and managing custom fields • Free & Pro versions • 20 field types • Uses the_field(), get_field(), the_sub_field(), and get_sub_field() to retrieve field content • Shortcode: [acf field="{$field_name}"] http://www.advancedcustomfields.com/pro
  • 8. Fields in Free Version • Checkbox • Color Picker • Date Picker • Google Map • Image • oEmbed • Page Link • Post Object • Relationship • Select • Tab • Taxonomy • Text • Textarea • True/False • Wysiwig Editor
  • 9. Additional Fields in ACF Pro The Repeater Field The repeater field allows you to create a set of sub fields which can be repeated again and again. The Gallery Field The gallery field provides a simple and intuitive interface for managing a collection of images. The Flexible Content Field The flexible content field is a complete content layout manager. Options Pages All data saved on an options page is global and can be displayed on any page.
  • 10. How Much Does ACF Pro Cost? One-time cost: $25 Personal, $100 Developer—Australian Dollars!
  • 11. Create a Field Group
  • 12. Select Field Group Location You can choose to show your field groups for pages, page templates, post types, taxonomies, options pages, and widgets.
  • 13. Set Field Group Options This is handy if you want to hide the page/post content editor when you display your fields.
  • 14. Add Fields to Your Group
  • 15. Display Your Fields 1. <?php 2. if(get_field('field_name') ) { 3. echo '<p>' . get_field('field_name') . '</p>'; 4. } 5. ?>
  • 16. CUSTOM HOME PAGE LAYOUT Tutorial from Elliot Condon
  • 17. Fields for this Layout
  • 19. Code for the Page Template To see the code used to create this page template in the Genesis Sample theme, go to http://acfdemo.rhymeswithsketch.com/co de-for-condon-custom-page/ (There’s no way to show it in PowerPoint.)
  • 20. CUSTOM HEADER RIGHT CONTENT FOR PAGES Tutorial from Sridhar Katakam
  • 22. Enter Header Right Content This box appears below the main content editor.
  • 23. REPEATER FIELDS IN ACTION Demonstrated on WP Fangirl
  • 25. Repeater Fields & Sub-Fields
  • 26. Display Fields in Template 1. if(have_rows('premium_plugins')) { 2. echo '<h3 class="colophon">Premium Plugins</h3>'; 3. echo '<ul class="plugin-list">'; 4. while(have_rows('premium_plugins')) { 5. the_row(); 6. echo '<li><a href="'.get_sub_field('premium_plugin_u rl').'">'. get_sub_field('premium_plugin_name') .'</a></li>'; 7. } 8. echo '</ul>'; 9. }
  • 27. DISPLAY ACF GALLERY AS SLIDER Tutorial from Elliot Condon
  • 28. Create a Gallery Field Group
  • 29. Add Photos to Gallery Upload images to the gallery field. These are from Magdeleine.
  • 31. Code Your Template Updated instructions include proper enqueuing of flexslider.js Details at http://acfdemo.rhymeswithsketch.com/gal lery-slider-page-template-code/
  • 32. PAGE WITH MAGNIFIC POPUP GALLERY Tutorial from Tribeswell.com
  • 33. Get Magnific Files Go to http://dimsemenov.com/plugins/magnific- popup/ and click “Build Tool”
  • 34. Enqueue Magnific 1. function magnific_popup_files() { 2. wp_enqueue_style( 'magnific', get_stylesheet_directory_uri() . '/css/magnific-popup-gallery.css' ); 3. wp_enqueue_script( 'magnific', get_stylesheet_directory_uri() .'/js/magnific-popup- gallery.min.js', array('jquery'), false, true ); 4. } 5. add_action( 'wp_enqueue_scripts', 'magnific_popup_files' );
  • 35. Create Page Template 1. <?php 2. /* Template Name: Page with Magnific Gallery */ 3. add_action('genesis_entry_content', 'magnific_gallery_loop', 8); 4. function magnific_gallery_loop() { 5. $images = get_field('image_gallery'); 6. if($images): 7. echo '<div class="popup-gallery">'; 8. foreach( $images as $image ): 9. echo '<a href="'.$image['url'].'" class="lightbox- link" title="'. $image['caption'].'" data- description="'.$image['description'].'">'; 10. echo '<div class="image-wrap"><img src="'.$image['url'].'"></div></a>'; 11. endforeach; 12. echo '</div>'; 13. endif; 14. } 15. genesis();
  • 36. Create Gallery Field Group Or add existing gallery field group to new template.
  • 37. Add Images to Gallery
  • 38. Add Script to Page • Put the JavaScript from the tutorial into the “Script” metabox. • Be sure to change “$” to “jQuery” for non-conflict mode
  • 39. Here’s Your Popup Lightbox http://acfdemo.rhymeswithsketch.com/page-with-magnific-popup-gallery/
  • 40. PAGE WITH CONTENT, WIDGET AREA & FULL-WIDTH SECTIONS Tutorial from Sridhar Katakam
  • 41. Create Field Group This page uses one flexible content field with multiple layouts.
  • 43. HERO / CHECKERBOARD PAGE Tutorial from Sridhar Katakam
  • 44. Create Field Group • Location • Options • Flexible Content – Hero Layout – Text-Image Layout – Image-Text Layout
  • 46. Flexible Content: Hero Includes image, text , CTA Button Display, CTA button URL, CTA button text
  • 49. Layouts Don’t Style Themselves You need to write CSS for things like • Making section full-width • Hero image stretch display • Overlay for the hero image • Positioning of hero text over image • Color of hero text • Width of Image & Text sections
  • 50. FRONT-END POSTING & EDITING Tutorial from The Stiz Media
  • 52. Note Field Group IDs This field group has an ID of 130, but yours will be different.
  • 54. Add Field Group IDs to Template This is where you need to enter your own field group IDs.
  • 55. Add Field Keys to Template Replace the keys shown in the demo template with your own. (Full template is too long to show.)
  • 56. Apply Template to a Page Content that you add in the content editor will appear above the posting form.
  • 57. Fill Out the Posting Form
  • 59. Just a Few Caveats • ACF does not replace custom post types, but it works well with them. • Retrieving field data is harder than retrieving CPT content. • Fields created by ACF are stored either in the post_meta table or the wp_options table. • You can’t search on custom fields
  • 60. About the Presenter Sallie Goetsch (rhymes with ‘sketch’) Got online in 1985. Started building websites in 1995. Discovered WordPress in 2005. Organizer of the East Bay WordPress Meetup. @salliegoetsch salliegoetsch http://wpfangirl.com 510-969-9947