Support

Account

Home Forums Feature Requests Display Field Name while Developing Reply To: Display Field Name while Developing

  • Hi @jrobsd,

    Maybe you can add this code on your functions.php file?

    function action_function_name( $field ) {
    	echo $field['_name'];
    }
    add_action( 'acf/render_field', 'action_function_name', 10, 1 );

    I hope this helps.