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

  • SEARCH
  • Home
  • 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 6180335
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T00:49:37+00:00 2026-05-24T00:49:37+00:00

Im looking to create a conditional within an in_array statement. Basically, I would like

  • 0

Im looking to create a conditional within an in_array statement. Basically, I would like to have a value (within div tags) returned for every key within an array which is outputted by WordPress. In essence, WordPress outputs keys from this array based on a checkbox dialog in the admin backend. So, if a key within the array is not found (because the administrator did not click it on in the checkbox within the backend), than it will simply wont display it at all.

Here is the closest code I can ascertain as being what is needed. I decided that for testing purposes, I would temporarily have the words “Nope” returned if a key within the array is not there (rather than “simply not displaying it” as mentioned in the paragraph above).

$my_arr = get_custom_field('product_options');
$opts = array(
'Option 1' => '<div>Option 1 description</div>',
'Option 2' => '<div>Option 2 description</div>',
'Option 3' => '<div>Option 3 description</div>',
);

foreach($opts as $k=>$v) {
if (in_array($my_arr[$k],$opts)!==TRUE)  echo $v; else echo 'nope'; 
}
?>   

The above code has been tested and it does dispaly “Option __ description” for everything. It even displays “Option 2 description” when Option is not actually being outputted within the array (based off of the admin not clicking Option 2 within the backend). This is not correct and I wish to get it to (in this case for ease of testing) the echo within the “else” part of the above statement.

Update 2: Current code is here: http://codepad.org/nxzFUMMn

Update: Current code is here: http://codepad.org/iXVbmLGL

  • 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-05-24T00:49:38+00:00Added an answer on May 24, 2026 at 12:49 am

    The trick here was to switch the arrays around, e.g.

    <?php
    $my_arr = get_custom_field('othermulti');
    
    $opts = array(
        'Man' => '<div>Man description</div>',
        'Bear' => '<div>Bear description</div>',
        'Pig' => '<div>Pig description</div>',
    );
    
    $opts_arr = array_keys($opts);
    
    if ( is_array($my_arr) ) {
        foreach($opts_arr as $opt) {
           if ( in_array($opt, $my_arr) ) {
              print $opts[$opt]; // will print the description for checked items.
           }
           else {
             print $opt . ' was not checked.';
           }
        }
    }
    else {
        print 'No options checked.';
    }
    ?>
    

    get_custom_field() is a custom template function for the plugin where this was used. See the following link for the details:
    http://wordpress.org/support/topic/ifelse-statement-for-custom-checkbox?replies=16

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Im looking to create a control that would look like comic baloon. In WPF
I'm looking for an efficient way to do a conditional insert. Ideally, I'd like
I looking to create a custom calender with Zend Framework, I am hoping that
I'm looking to create favicon.ico files programatically from Python, but PIL only has support
I am looking to create symlinks (soft links) from Java on a Windows Vista/
I'm looking to create an Intellij IDEA language support plugin for Erlang. The first
I am looking to create an expression tree by parsing xml using C#. The
If I were looking to create my own language are there any tools that
I am looking to create a video training program which records videos - via
I am looking to create a very lightweight GUI front end in Windows. It's

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.