Home › Forums › Front-end Issues › Add Css Class fields for fronted › Reply To: Add Css Class fields for fronted
With “frontend” you mean the public facing website? Or the admin area? Because all the text field does in the templates is output the text, so, if you need a class you need to wrap the output with an element:
<div class="example"><?php the_sub_field('episode_explanation'); ?></div>
And if you need a unique identifier you can use get_row_index() and add it as ID or class:
<div class="example" id="ex<?= get_row_index() ?>"><?php the_sub_field('episode_explanation'); ?></div>
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.