Skip to content

Instantly share code, notes, and snippets.

@jbd91
Created February 5, 2018 15:52
Show Gist options
  • Select an option

  • Save jbd91/ab184498e875013cb36343beb0213b1f to your computer and use it in GitHub Desktop.

Select an option

Save jbd91/ab184498e875013cb36343beb0213b1f to your computer and use it in GitHub Desktop.
ACF Get Tax Term Page Field Data
// GET TAXONOMY TERM DATA (NATIVE AND ACF)
$queried_object = get_queried_object();
$taxonomy = $queried_object->taxonomy;
$term_id = $queried_object->term_id;
$term_slug = $queried_object->slug;
$content = get_field('content', $taxonomy . '_' . $term_id);
$featured_image = get_field('featured_image', $taxonomy . '_' . $term_id);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment