Home › Forums › General Issues › Add Field Values to WordPress post_class › Reply To: Add Field Values to WordPress post_class
No problem Michael 😉
I think your white space is optional here.
<?php $customclasses = $bgcolor . get_field('justering'); ?>
It will output: class1 class2
But if you don’t add space in your concatenation operator:
<?php $customclasses = $bgcolor.get_field('justering'); ?>
It will output: class1class2
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.