Last active
August 29, 2015 14:20
-
-
Save omurphy27/ba14d26c7e0315eacb31 to your computer and use it in GitHub Desktop.
Access Advanced Custom Fields on Wordpress Category Archive Pages.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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