Support

Account

Home Forums Front-end Issues How to display the ID of a custom field? Reply To: How to display the ID of a custom field?

  • For example, if I have a basic text field, “field_test”, displayed via:

    <?php the_field('field_test'); ?>
    Displays the content entered via WP admin for that field.

    How can I also display, separately, a unique identifier/class from that field on the front-end?

    <?php the_field('field_test','id'); ?>
    Displays the field ID for that field regardless of content entered.

    or something to that effect?