Skip to content

Instantly share code, notes, and snippets.

@dgoze
Forked from mattradford/acf_archive.php
Created April 30, 2016 04:57
Show Gist options
  • Save dgoze/1a12da1a9d2bd4fd31f416b4ea261e3a to your computer and use it in GitHub Desktop.
Save dgoze/1a12da1a9d2bd4fd31f416b4ea261e3a to your computer and use it in GitHub Desktop.
Retrieve ACF custom fields on an archive page
// http://www.advancedcustomfields.com/resources/how-to-get-values-from-a-taxonomy-term/
<?php
// vars
$queried_object = get_queried_object();
$taxonomy = $queried_object->taxonomy;
$term_id = $queried_object->term_id;
?>
<?php the_field('show_usp_strip', $queried_object); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment