Skip to content

Instantly share code, notes, and snippets.

@jcallery
Created March 1, 2016 17:34
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jcallery/31af5747e5ead8894bd9 to your computer and use it in GitHub Desktop.
Save jcallery/31af5747e5ead8894bd9 to your computer and use it in GitHub Desktop.
Display ACF field names
/**
* Display ACF field names for development
*/
function action_function_name( $field ) {
echo $field['_name'];
}
add_action( 'acf/render_field', 'action_function_name', 10, 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment