Skip to content

Instantly share code, notes, and snippets.

@dgoze
Forked from besimhu/ACF Post Meta - Terms.php
Created March 27, 2025 17:14
Show Gist options
  • Save dgoze/b533a6a57d80a96ecc331826c6dd6f2d to your computer and use it in GitHub Desktop.
Save dgoze/b533a6a57d80a96ecc331826c6dd6f2d to your computer and use it in GitHub Desktop.
Get ACF fields from taxonomy without using ACF functions.
<?php
// get taxonomy
$taxonomy = get_term_by( 'slug', get_query_var( 'taxonomy_name' ), 'my_custom_taxonomy' );
$acf_field = get_option( 'my_custom_taxonomy_' . $taxonomy->term_id . '_acf_field_slug' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment