Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joe-dempsey/0f152099a318bb48f3233a0d5ddc2d67 to your computer and use it in GitHub Desktop.
Save joe-dempsey/0f152099a318bb48f3233a0d5ddc2d67 to your computer and use it in GitHub Desktop.
acf radio example
<!-- here there's a simple example wwith a radio with field id features_website - 2 options -->
<?php $var = get_field('features_website'); ?>
<?php if( $var == 'web' ){ ?>
<p>It's a website...</p>
<?php } else if( $var == 'ecommerce' ){ ?>
<p>It's an ecommerce website...</p>
<?php } ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment