Skip to content

Instantly share code, notes, and snippets.

@aibrean
Forked from fosturgh/Conditional ACF Menu
Last active August 29, 2015 14:22
Show Gist options
  • Save aibrean/bb9ba561b4a3238195cc to your computer and use it in GitHub Desktop.
Save aibrean/bb9ba561b4a3238195cc to your computer and use it in GitHub Desktop.
Conditional Options
<?php if(get_field('some-field', 'option') == 'on') { ?>
<?php } else { ?>
<?php } ?>
<?php if(get_field('header_footer_theme', 'option') == 'stuck') : ?>
<!– Stick Menu –>
<?php elseif(get_field('header_footer_theme', 'option') == 'light') : ?>
<!– Light Menu –>
<?php elseif(get_field('header_footer_theme', 'option') == 'dark') : ?>
<!– Dark Menu –>
<?php elseif(get_field('header_footer_theme', 'option') == 'default') : ?>
<!– Default Menu –>
<?php else : ?>
<!– Do nothing –>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment