WordCamp Chicago 2018

Using Advanced Custom Fields to Make Your Clients (and you) Happy

Here you’ll find a link to the slides and all of the resources used in my presentation at WordCamp Chicago 2018.

If you were there, thanks for checking it out! And thanks to the WordCamp Chicago organizers for having me this year! I hope to be back next year!

Presentation Info

– Created with Keynote v8.0 on macOS High Sierra v10.13.4.
– Fonts used: Open Sans, SF Mono, Merriweather.
– Colors are from the ACF site: #26E3BC is the main light green; #26B39D is the darker green.
– Theme for the demo site is Plate by studio.bio.

<?php // explode text area to bulleted list
$lines = get_field('text_area');
$lines = explode("\n", $lines);

if ( !empty($lines) ) {

echo '

    ‘;

    foreach ( $lines as $line ) {

    // added to vertically align multi-line li items
    echo ‘

  • ‘. trim( $line ) .’
  • ‘;
    }

    echo ‘

‘;

}
?>

<div class="”>

My Sister’s Super Section