Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9181145
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T18:13:02+00:00 2026-06-17T18:13:02+00:00

I am using advanced custom fields Checkbox feature in wordpress. I have created a

  • 0

I am using advanced custom fields Checkbox feature in wordpress.

I have created a <ul> with four <li>

<ul class="post-icons">
  <li class="microphone" title="Alt text"></li>
  <li class="video" title="Alt text"></li>
  <li class="text" title="Alt text"></li>
  <li class="image" title="Alt text"></li>
</ul>

And i have created four Checkboxes in advanced custom fields. If I use this PHP in the class="(here)".

<?php echo implode(' ', get_field('field_name')); ?>

It will print the value of the Checkboxes on to the class”” but it will print all four Checkboxes values that i have created. I only would like to print the right one on the right place.

The best way would to use .active class but advanced custom fields doesn’t allow multiple Checkboxes with the same value. I mean that if you Check a Checkbox on Image and text it would print .active or something wise on

<li class="image" title="Alt text"></li> and 
<li class="text" title="Alt text"></li> 

Like = <li class="image active" title="Alt text"></li> and <li class="text active" title="Alt text"></li>

I have four Checkboxes

  • Video
  • Text
  • Sound
  • Image

And four <li>

 - <li class="video"></li>
 - <li class="text"></li>
 - <li class="microphone"></li>
 - <li class="image"></li>

microphone = Sound

I would like to print .active on the right <li> class"" item. When the corresponding Checkbox is checked

I will link to the Documentation for advanced custom fields Checkbox I didn’t understand a lot of how to create something what I would need for my project.

Documentation

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T18:13:04+00:00Added an answer on June 17, 2026 at 6:13 pm

    It’s not really clear from the Question what Fields exist.

    In the case of a Checkbox field (check PHP ternary operator):

    // If checked, the string is 'active', otherwise empty
    $image = ( get_field( 'image_field' ) ) ? 'active' : '';
    $video = ( get_field( 'video_field' ) ) ? 'active' : ''; 
    
    <li class="image <?php echo $image; ?>" title="Alt text"></li> 
    <li class="video <?php echo $video; ?>" title="Alt text"></li> 
    

    But, better yet is a Select field allowing multiple selections (check PHP in_array):
    acf select multiple

    $get_field = get_field( 'field_name' ); 
    $image = in_array( 'image', $get_field) ? 'active' : '';
    $video = in_array( 'video', $get_field) ? 'active' : '';
    
    <li class="image <?php echo $image; ?>" title="Alt text"></li> 
    <li class="video <?php echo $video; ?>" title="Alt text"></li> 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using the Advanced Custom Fields wordpress plugin and I am outputting the
I am using the Advanced Custom Fields plugin in Wordpress to implement a gallery
I am using wordpress's advanced custom fields, which uses the syntax get_field('custom_field_name'); to pull
I am using advanced custom fields in Wordpress. Without going into the details of
I am using Drupal 7 and have created a custom content type and a
I have created a custom post type for my portfolio page. I have two
I'm using custom plugin for jQuery UI datepicker - Timepicker I have two fields,
I'm using Filemaker Pro 12 Advanced. I have a few tables but have really
Having followed this tutorial, I have successfully created a repeatable type custom field. However,
I'm using django-social-auth & custom User model (django 1.5) with extra fields which are

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.