Skip to content

Instantly share code, notes, and snippets.

@aayushdrolia
Created October 12, 2017 06:42
Show Gist options
  • Save aayushdrolia/8a756d594b1d70c75f5a8edd79f3b751 to your computer and use it in GitHub Desktop.
Save aayushdrolia/8a756d594b1d70c75f5a8edd79f3b751 to your computer and use it in GitHub Desktop.
Fetch custom field value from category page in wordpress
global $wp_query; // get the query object
$cat_obj = $wp_query->get_queried_object();
$value = get_field('field_name',$cat_obj->taxonomy.'_'.$cat_obj->term_id);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment