SlideShare une entreprise Scribd logo
1  sur  113
Télécharger pour lire hors ligne
Take full control of your edit screens
Cleaner & more predictable front-end
Charge more for your work!
Nutshell
IN A
<div class="row callout-wrap">
<div class="thirdcol first co-1">
<div class="callout-title">
Upcoming Events
</div>
<div class="callout-img">
<img src="images/callout-horse-white.png">
</div>
<div class="callout-tagline-wrap">
<p>Spend a day at the</p>
<p class="emph">races</p>
<a class="callout-button">Race Schedule >></a>
</div>
</div>
<div class="thirdcol co-2">
<div class="callout-title">
Farmer's Market
</div>
<div class="callout-img">
<img src="images/callout-wheat.png">
</div>
<div class="callout-tagline-wrap">
<p>Now with longer</p>
<p class="emph">hours</p>
<a class="callout-button">Market Info >></a>
</div>
</div>
<div class="thirdcol last co-3">
<div class="callout-title">
Available Services
</div>
<div class="callout-img">
<img src="images/callout-campfire.png">
</div>
<div class="callout-tagline-wrap">
<p>We have so much</p>
<p class="emph">more</p>
<a class="callout-button">What we offer >></a>
</div>
</div>
</div>
Callouts
Callouts
3
1
2
ACCESS TO YOUR THEME’S PHP
BASIC THEMING PRACTICES
BASIC-ER PHP SYNTAX
FIELD 1: BACKGROUND IMAGE
FIELD 2:
HEADLINE
FIELD 3:
TEXT
FIELD 4:
CALL TO ACTION
BUTTON TEXT
FIELD 5:
BUTTON LINK
<div class=“inner-container”
style=“background: url(/images/
flamesbg.jpg) no-repeat center
center; background-size: cover;”>
</div>
<img src=“/images/flames-logo.png”
alt=“Flames logo”>
<h1>The Calgary Flames have made
the playoffs!</h1>
<p>Tickets will be made available to
non-season ticket holders via a lottery
system. Sign up today!</p>
<a class=“button” href=“http://
www.calgaryflames.com/tickets”>
I WANT TO BE PART OF THE C OF RED
</a>
FIELD 1: BACKGROUND IMAGE
FIELD 2:
HEADLINE
FIELD 3:
TEXT
FIELD 4:
CALL TO ACTION
BUTTON TEXT
FIELD 5:
BUTTON LINK
Flames Background
flames_background
Flames Background
flames_background
Flames Headline
flames_headline
Flames Text
flames_text
Flames Button Text
flames_button_text
Flames Link
flames_link
<?php /*Template Name: Home*/ ?>
<?php get_header(); ?>
<div class="row">
<div class="page-content">
<h2> <?php the_title(); ?> </h2>
<?php the_content(); ?>
</div>
</div>
<?php get_footer(); ?>
<?php /*Template Name: Home*/ ?>
<?php get_header(); ?>
<?php get_footer(); ?>
<div class="inner-container" style="background: url(/images/flames-bg.jpg)” no-
repeat center center; background-size: cover;">
<img src="/images/flames-logo.png" alt="Flames logo">
<h1>
The Calgary Flames have made the playoffs!
</h1>
<p>
Tickets will be made available to non-season ticket holders via a lottery
system. Sign up today!
</p>
<a class="button" href="http://www.calgaryflames.com/tickets">
I WANT TO BE PART OF THE C OF RED
</a>
</div>
<?php the_field('field_name'); ?>
<?php the_title(); ?>
<?php the_content(); ?>
WORDPRESS TEMPLATE TAGS
ACF FIELD TAGS
<?php get_header(); ?>
<?php /*Template Name: Home*/ ?>
<?php get_footer(); ?>
<div class="inner-container" style="background: url(/images/flames-bg.jpg)”
no-repeat center center; background-size: cover;">
<img src="/images/flames-logo.png" alt="Flames logo">
<h1>
The Calgary Flames have made the playoffs!
</h1>
<p>
Tickets will be made available to non-season ticket holders via a lottery system. Sign up today!
</p>
<a class="button" href="http://buildstudio.ca/acftalk/order-tickets">
I WANT TO BE PART OF THE C OF RED
</a>
</div>
<?php get_header(); ?>
<?php /*Template Name: Home*/ ?>
<?php get_footer(); ?>
<div class="inner-container" style="background: url(<?php the_field('flames_background'); ?>)”
no-repeat center center; background-size: cover;">
<img src="/images/flames-logo.png" alt="Flames logo">
<h1>
<?php the_field('flames_headline'); ?>
</h1>
<p>
<?php the_field('flames_text'); ?>
</p>
<a class="button" href="<?php the_field('flames_link'); ?>">
<?php the_field(‘flames_button_text'); ?>
</a>
</div>
Beat the Canucks! Make them cry!
Woohoo!!!!!!!
We made the playoffs, baby!
Beat the Canucks! Make them cry!
Woohoo!!!!!!!
We made the playoffs, baby!
BRING ON THE DUCKS
Holy Crap We Did It
The Flames Have Advanced to the Second Round!
Holy Crap We Did It
The Flames Have Advanced to the Second Round
BRING ON THE DUCKS
FIELD 1:
PLAYER
PHOTO
FIELD 2:
PLAYER
NAME
FIELD 3:
PLAYER
POSITION
Players
Players
Flames Players
flames_players
Flames Players
flames_players
Flames Players
flames_players
Flames Players
flames_players
Player Photo
player_photo
Flames Players
Player Name
player_name
Flames Players
Player Position
player_position
Players
Flames Players
flames_players
Flames Players
flames_players
Add Player
Add Player
<div class="inner-container">
<img src="/images/flames-logo.png"
alt="Flames logo">
<h1>Flames Players</h1>
<div class="bio">
<img src="images/glencross.jpg">
<div class="bio-text">
<h2>Curtis Glencross</h2>
<p>Left Wing</p>
</div>
</div>
<div class="bio">
<img src="images/hiller.jpg">
<div class="bio-text">
<h2>Jonas Hiller</h2>
<p>Goaltender</p>
</div>
</div>
<div class="bio">
<img src="images/monahan.jpg">
<div class="bio-text">
<h2>Sean Monahan</h2>
<p>Center</p>
</div>
</div>
</div>
if(get_field('repeater_field_name')):
while(has_sub_field('repeater_field_name')): ?>
<?php
<!--subfield 1 content--> <?php the_sub_field('sub_field_1'); ?>
<!--subfield 2 content--> <?php the_sub_field('sub_field_2'); ?>
<?php endwhile; ?>
<?php endif; ?>
if(have_posts())
while(have_posts()): the_post(); ?>
<?php
<?php the_title(); ?>
<?php the_content(); ?>
<?php endwhile; ?>
<?php endif; ?>
ONE EXAMPLE OF THE WORDPRESS LOOP
THE ACF REPEATER LOOP
Players
Flames Players
flames_players
if(get_field('repeater_field_name')):
while(has_sub_field('repeater_field_name')): ?>
<?php
<!--subfield 1 content--> <?php the_sub_field('sub_field_1'); ?>
<!--subfield 2 content--> <?php the_sub_field('sub_field_2'); ?>
<?php endwhile; ?>
<?php endif; ?>
if(get_field(‘flames_players')):
while(has_sub_field('flames_players')): ?>
<?php
<!--subfield 1 content--> <?php the_sub_field('sub_field_1'); ?>
<!--subfield 2 content--> <?php the_sub_field('sub_field_2'); ?>
<?php endwhile; ?>
<?php endif; ?>
<div class="bio">
<img src="images/glencross.jpg">
<div class="bio-text">
<h2>Curtis Glencross</h2>
<p>Left Wing</p>
</div>
</div>
if(get_field('flames_players')):
while(has_sub_field('flames_players')): ?>
<?php
<?php endwhile; ?>
<?php endif; ?>
<div class="bio">
<img src="<?php the_sub_field(‘player_photo'); ?>">
<div class="bio-text">
<h2><?php the_sub_field(‘player_name'); ?></h2>
<p><?php the_sub_field(‘player_position’); ?></p>
</div>
</div>
if(get_field('flames_players')):
while(has_sub_field('flames_players')): ?>
<?php
<?php endwhile; ?>
<?php endif; ?>
if(get_field('flames_players')):
while(has_sub_field('flames_players')): ?>
<?php endwhile; ?>
<?php endif; ?>
<div class="bio">
<img src="<?php echo get_sub_field(‘player_photo'); ?>">
<div class="bio-text">
<h2><?php echo get_sub_field(‘player_name'); ?></h2>
<p><?php echo get_sub_field(‘player_position'); ?></p>
</div>
</div>
<div class="inner-container">
<img src="/images/flames-logo.png"
alt="Flames logo">
<h1>Flames Players</h1>
<?php get_header(); ?>
<?php get_footer(); ?>
<?php /*Template Name: Players*/ ?>
Players
Players
Players
Players
Curtis Glencross Left Wing
Players
Jonas Hiller Goaltender
Players
Sean Monahan Centre
Players
Players
Players
Players
Sam Bennett Centre
Global fields in a custom options area
Global fields in a custom options area
Calls to Action
Calls to Action
Money
MAKE MORE
Edits are made when you
want them, not when I
can do them
Money
MAKE MORE
I can now be hit by a bus
Money
MAKE MORE
One less thing to train staff
Money
MAKE MORE
Hiring requirements just
became a little more
relaxed
Money
MAKE MORE
Say goodbye to the
minimum charge
Money
MAKE MORE
Make More Money With Advanced Custom Fields - WordCampYYC 2015
Make More Money With Advanced Custom Fields - WordCampYYC 2015

Contenu connexe

Tendances

zynga-online.facebook.html
zynga-online.facebook.htmlzynga-online.facebook.html
zynga-online.facebook.html
admin999
 
Is HTML5 Ready? (workshop)
Is HTML5 Ready? (workshop)Is HTML5 Ready? (workshop)
Is HTML5 Ready? (workshop)
Remy Sharp
 
The project gutenberg e book, fairy tales from brazil, by elsie spicer
The project gutenberg e book, fairy tales from brazil, by elsie spicerThe project gutenberg e book, fairy tales from brazil, by elsie spicer
The project gutenberg e book, fairy tales from brazil, by elsie spicer
Andrei Hortúa
 
Private slideshow
Private slideshowPrivate slideshow
Private slideshow
sblackman
 
Yearning jQuery
Yearning jQueryYearning jQuery
Yearning jQuery
Remy Sharp
 
Desenvolvimento web com Ruby on Rails (parte 2)
Desenvolvimento web com Ruby on Rails (parte 2)Desenvolvimento web com Ruby on Rails (parte 2)
Desenvolvimento web com Ruby on Rails (parte 2)
Joao Lucas Santana
 
Zf2 how arrays will save your project
Zf2   how arrays will save your projectZf2   how arrays will save your project
Zf2 how arrays will save your project
Michelangelo van Dam
 
Best Practice Testing with Lime 2
Best Practice Testing with Lime 2Best Practice Testing with Lime 2
Best Practice Testing with Lime 2
Bernhard Schussek
 

Tendances (19)

Symfony 1, mi viejo amigo
Symfony 1, mi viejo amigoSymfony 1, mi viejo amigo
Symfony 1, mi viejo amigo
 
1cst
1cst1cst
1cst
 
zynga-online.facebook.html
zynga-online.facebook.htmlzynga-online.facebook.html
zynga-online.facebook.html
 
Is HTML5 Ready? (workshop)
Is HTML5 Ready? (workshop)Is HTML5 Ready? (workshop)
Is HTML5 Ready? (workshop)
 
Odoo - CMS performances optimization
Odoo - CMS performances optimizationOdoo - CMS performances optimization
Odoo - CMS performances optimization
 
The project gutenberg e book, fairy tales from brazil, by elsie spicer
The project gutenberg e book, fairy tales from brazil, by elsie spicerThe project gutenberg e book, fairy tales from brazil, by elsie spicer
The project gutenberg e book, fairy tales from brazil, by elsie spicer
 
Articulo java web
Articulo java webArticulo java web
Articulo java web
 
Java script programms
Java script programmsJava script programms
Java script programms
 
Images and PWA in magento
Images and PWA in magentoImages and PWA in magento
Images and PWA in magento
 
Private slideshow
Private slideshowPrivate slideshow
Private slideshow
 
Gae
GaeGae
Gae
 
Yearning jQuery
Yearning jQueryYearning jQuery
Yearning jQuery
 
Desenvolvimento web com Ruby on Rails (parte 2)
Desenvolvimento web com Ruby on Rails (parte 2)Desenvolvimento web com Ruby on Rails (parte 2)
Desenvolvimento web com Ruby on Rails (parte 2)
 
Using of TDD practices for Magento
Using of TDD practices for MagentoUsing of TDD practices for Magento
Using of TDD practices for Magento
 
hellowired_instructions
hellowired_instructionshellowired_instructions
hellowired_instructions
 
Zf2 how arrays will save your project
Zf2   how arrays will save your projectZf2   how arrays will save your project
Zf2 how arrays will save your project
 
Best Practice Testing with Lime 2
Best Practice Testing with Lime 2Best Practice Testing with Lime 2
Best Practice Testing with Lime 2
 
Dev004奚江華
Dev004奚江華Dev004奚江華
Dev004奚江華
 
HTML5 - Pedro Rosa
HTML5 - Pedro RosaHTML5 - Pedro Rosa
HTML5 - Pedro Rosa
 

En vedette (6)

Cover letter
Cover letterCover letter
Cover letter
 
Unit name: Feelings.
Unit name: Feelings.Unit name: Feelings.
Unit name: Feelings.
 
กิจกรรมที่ 2 ประเภทของโครงงานคอมพิวเตอร์
กิจกรรมที่ 2 ประเภทของโครงงานคอมพิวเตอร์กิจกรรมที่ 2 ประเภทของโครงงานคอมพิวเตอร์
กิจกรรมที่ 2 ประเภทของโครงงานคอมพิวเตอร์
 
Ensayo sobre los Diseñadores Graficos Venezolanos e internacionales.
Ensayo sobre los Diseñadores Graficos Venezolanos e internacionales.Ensayo sobre los Diseñadores Graficos Venezolanos e internacionales.
Ensayo sobre los Diseñadores Graficos Venezolanos e internacionales.
 
Asbestos In Your Home Infographic
Asbestos In Your Home InfographicAsbestos In Your Home Infographic
Asbestos In Your Home Infographic
 
Bewitched and bothered
Bewitched and botheredBewitched and bothered
Bewitched and bothered
 

Similaire à Make More Money With Advanced Custom Fields - WordCampYYC 2015

Kohana bootstrap - modal form
Kohana   bootstrap - modal formKohana   bootstrap - modal form
Kohana bootstrap - modal form
Julio Pari
 
Kohana bootstrap - modal form
Kohana   bootstrap - modal formKohana   bootstrap - modal form
Kohana bootstrap - modal form
Julio Pari
 
Copy of-a-walk-around-westfall-plaza
Copy of-a-walk-around-westfall-plazaCopy of-a-walk-around-westfall-plaza
Copy of-a-walk-around-westfall-plaza
helgawerth
 
Featured posts
Featured postsFeatured posts
Featured posts
aidee58
 
TURN YOUR CELL PHONE FROM A LIABILITY INTO AN ASSET!
TURN YOUR CELL PHONE FROM A LIABILITY INTO AN ASSET!TURN YOUR CELL PHONE FROM A LIABILITY INTO AN ASSET!
TURN YOUR CELL PHONE FROM A LIABILITY INTO AN ASSET!
Coulawrence
 
Index of jquery template 2 Minuteman Summer Web Dev.
Index of jquery template 2 Minuteman Summer Web Dev.Index of jquery template 2 Minuteman Summer Web Dev.
Index of jquery template 2 Minuteman Summer Web Dev.
Daniel Downs
 

Similaire à Make More Money With Advanced Custom Fields - WordCampYYC 2015 (20)

Front end ++: seo e flexbox
Front end ++: seo e flexboxFront end ++: seo e flexbox
Front end ++: seo e flexbox
 
20110820 header new style
20110820 header new style20110820 header new style
20110820 header new style
 
Kohana bootstrap - modal form
Kohana   bootstrap - modal formKohana   bootstrap - modal form
Kohana bootstrap - modal form
 
Kohana bootstrap - modal form
Kohana   bootstrap - modal formKohana   bootstrap - modal form
Kohana bootstrap - modal form
 
Grok Drupal (7) Theming
Grok Drupal (7) ThemingGrok Drupal (7) Theming
Grok Drupal (7) Theming
 
Vue.js - zastosowanie i budowa komponentów
Vue.js - zastosowanie i budowa komponentówVue.js - zastosowanie i budowa komponentów
Vue.js - zastosowanie i budowa komponentów
 
Copy of-a-walk-around-westfall-plaza
Copy of-a-walk-around-westfall-plazaCopy of-a-walk-around-westfall-plaza
Copy of-a-walk-around-westfall-plaza
 
laboratorio
laboratoriolaboratorio
laboratorio
 
Upload[1]
Upload[1]Upload[1]
Upload[1]
 
Templates81 special document
Templates81 special documentTemplates81 special document
Templates81 special document
 
Templates81 special document
Templates81 special documentTemplates81 special document
Templates81 special document
 
Admin footer
Admin footerAdmin footer
Admin footer
 
Featured posts
Featured postsFeatured posts
Featured posts
 
TURN YOUR CELL PHONE FROM A LIABILITY INTO AN ASSET!
TURN YOUR CELL PHONE FROM A LIABILITY INTO AN ASSET!TURN YOUR CELL PHONE FROM A LIABILITY INTO AN ASSET!
TURN YOUR CELL PHONE FROM A LIABILITY INTO AN ASSET!
 
Zen
ZenZen
Zen
 
Zen based theming
Zen based themingZen based theming
Zen based theming
 
Index of jquery template 2 Minuteman Summer Web Dev.
Index of jquery template 2 Minuteman Summer Web Dev.Index of jquery template 2 Minuteman Summer Web Dev.
Index of jquery template 2 Minuteman Summer Web Dev.
 
Implement rich snippets in your webshop
Implement rich snippets in your webshopImplement rich snippets in your webshop
Implement rich snippets in your webshop
 
Web Design Course - Lecture 21 - Bootstrap Jumbotron, Thumbnails, Alerts, Pro...
Web Design Course - Lecture 21 - Bootstrap Jumbotron, Thumbnails, Alerts, Pro...Web Design Course - Lecture 21 - Bootstrap Jumbotron, Thumbnails, Alerts, Pro...
Web Design Course - Lecture 21 - Bootstrap Jumbotron, Thumbnails, Alerts, Pro...
 
Stole16
Stole16Stole16
Stole16
 

Dernier

Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
vu2urc
 

Dernier (20)

Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 

Make More Money With Advanced Custom Fields - WordCampYYC 2015