Skip to content

Instantly share code, notes, and snippets.

@omurphy27
Last active August 29, 2015 14:20
Show Gist options
  • Save omurphy27/ba14d26c7e0315eacb31 to your computer and use it in GitHub Desktop.
Save omurphy27/ba14d26c7e0315eacb31 to your computer and use it in GitHub Desktop.
Access Advanced Custom Fields on Wordpress Category Archive Pages.php
<?php
$term = get_queried_object();
// gets the term object for the current Wordpress category
// more info http://www.advancedcustomfields.com/resources/get-values-from-a-taxonomy-term/
$acf_term = $term->taxonomy . "_" . $term->term_id;
?>
<h1><?php the_field('heading', $acf_term); ?></h1>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment